aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/background_image.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/menu/background_image.hpp (renamed from src/menu/frame_background_image.hpp)12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/menu/frame_background_image.hpp b/src/menu/background_image.hpp
index 5aaa58b6..7c0549bf 100644
--- a/src/menu/frame_background_image.hpp
+++ b/src/menu/background_image.hpp
@@ -24,18 +24,18 @@
* $Id$
*/
-#ifndef FRAME_BACKGROUND_IMAGE_HPP
-#define FRAME_BACKGROUND_IMAGE_HPP
+#ifndef BACKGROUND_IMAGE_HPP
+#define BACKGROUND_IMAGE_HPP
#include <boost/filesystem.hpp>
#include <GL/gl.h>
-#include "frame_background.hpp"
+#include "background.hpp"
#include "texture.hpp"
namespace usdx
{
- class FrameBackgroundImage : public FrameBackground
+ class BackgroundImage : public Background
{
private:
Texture* texture;
@@ -48,8 +48,8 @@ namespace usdx
void draw(void);
public:
- FrameBackgroundImage(boost::filesystem::wpath filename);
- virtual ~FrameBackgroundImage();
+ BackgroundImage(boost::filesystem::wpath filename);
+ virtual ~BackgroundImage();
};
};