summaryrefslogtreecommitdiff
path: root/otk/renderstyle.hh
diff options
context:
space:
mode:
Diffstat (limited to 'otk/renderstyle.hh')
-rw-r--r--otk/renderstyle.hh7
1 files changed, 4 insertions, 3 deletions
diff --git a/otk/renderstyle.hh b/otk/renderstyle.hh
index 69c26a7f..0f512148 100644
--- a/otk/renderstyle.hh
+++ b/otk/renderstyle.hh
@@ -8,6 +8,7 @@
#include "ustring.hh"
#include <list>
+#include <string>
namespace otk {
@@ -49,7 +50,7 @@ private:
int _screen;
ustring _file;
- RenderColor *_root_color;
+ std::string _root_args;
RenderColor *_text_color_focus;
RenderColor *_text_color_unfocus;
@@ -97,7 +98,7 @@ public:
inline int screen() const { return _screen; }
- inline RenderColor *rootColor() const { return _root_color; }
+ inline const std::string& rootArgs() const { return _root_args; }
inline RenderColor *textFocusColor() const { return _text_color_focus; }
inline RenderColor *textUnfocusColor() const { return _text_color_unfocus; }
@@ -153,4 +154,4 @@ public:
}
-#endif // __rendertexture_hh
+#endif // __renderstyle_hh