diff options
-rw-r--r-- | src/FbTk/Texture.cc | 2 | ||||
-rw-r--r-- | src/FbTk/Texture.hh | 2 | ||||
-rw-r--r-- | src/FbTk/ThemeItems.cc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/FbTk/Texture.cc b/src/FbTk/Texture.cc index caada06..51ca2db 100644 --- a/src/FbTk/Texture.cc +++ b/src/FbTk/Texture.cc | |||
@@ -87,7 +87,7 @@ void Texture::setFromString(const char * const texture_str) { | |||
87 | else if (strstr(ts, "flat")) | 87 | else if (strstr(ts, "flat")) |
88 | addType(Texture::FLAT); | 88 | addType(Texture::FLAT); |
89 | else | 89 | else |
90 | addType(Texture::DEFAULT_BEVEL); | 90 | addType(Texture::DEFAULT_LEVEL); |
91 | 91 | ||
92 | if (! (type() & Texture::FLAT)) { | 92 | if (! (type() & Texture::FLAT)) { |
93 | if (strstr(ts, "bevel2")) | 93 | if (strstr(ts, "bevel2")) |
diff --git a/src/FbTk/Texture.hh b/src/FbTk/Texture.hh index 96953fd..91bf833 100644 --- a/src/FbTk/Texture.hh +++ b/src/FbTk/Texture.hh | |||
@@ -41,7 +41,7 @@ public: | |||
41 | FLAT = 0x00002, | 41 | FLAT = 0x00002, |
42 | SUNKEN = 0x00004, | 42 | SUNKEN = 0x00004, |
43 | RAISED = 0x00008, | 43 | RAISED = 0x00008, |
44 | DEFAULT_BEVEL = FLAT | 44 | DEFAULT_LEVEL = FLAT |
45 | }; | 45 | }; |
46 | 46 | ||
47 | enum Textures { | 47 | enum Textures { |
diff --git a/src/FbTk/ThemeItems.cc b/src/FbTk/ThemeItems.cc index 56efb1b..e88ab55 100644 --- a/src/FbTk/ThemeItems.cc +++ b/src/FbTk/ThemeItems.cc | |||
@@ -242,7 +242,7 @@ void ThemeItem<Texture>::load(const string *o_name, const string *o_altname) { | |||
242 | 242 | ||
243 | template <> | 243 | template <> |
244 | void ThemeItem<Texture>::setDefaultValue() { | 244 | void ThemeItem<Texture>::setDefaultValue() { |
245 | m_value.setType(Texture::DEFAULT_BEVEL | Texture::DEFAULT_TEXTURE); | 245 | m_value.setType(Texture::DEFAULT_LEVEL | Texture::DEFAULT_TEXTURE); |
246 | load(); // one might forget to add line something: so we try to load something.*: too | 246 | load(); // one might forget to add line something: so we try to load something.*: too |
247 | } | 247 | } |
248 | 248 | ||