aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/background_color.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/menu/background_color.hpp (renamed from src/menu/frame_background_color.hpp)12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/menu/frame_background_color.hpp b/src/menu/background_color.hpp
index 2e850d2c..d91edcdf 100644
--- a/src/menu/frame_background_color.hpp
+++ b/src/menu/background_color.hpp
@@ -24,15 +24,15 @@
* $Id$
*/
-#ifndef FRAME_BACKGROUND_COLOR_HPP
-#define FRAME_BACKGROUND_COLOR_HPP
+#ifndef BACKGROUND_COLOR_HPP
+#define BACKGROUND_COLOR_HPP
-#include "frame_background.hpp"
+#include "background.hpp"
#include "utils/rgb_color.hpp"
namespace usdx
{
- class FrameBackgroundColor : public FrameBackground
+ class BackgroundColor : public Background
{
private:
RgbColor color;
@@ -41,8 +41,8 @@ namespace usdx
void draw(void);
public:
- FrameBackgroundColor(void);
- FrameBackgroundColor(RgbColor &color);
+ BackgroundColor(void);
+ BackgroundColor(RgbColor &color);
};
};