diff options
author | simonb <simonb> | 2006-04-25 02:19:04 (GMT) |
---|---|---|
committer | simonb <simonb> | 2006-04-25 02:19:04 (GMT) |
commit | 3707b74c40256c09465171d39e2c4d95aeaefb0e (patch) | |
tree | dcb835e0ee929b65b53d0c9d0538167f1840245b /src/FbTk/ThemeItems.cc | |
parent | fae88b329c63c16755f2c9b7a5a655a1414ab10f (diff) | |
download | fluxbox_paul-3707b74c40256c09465171d39e2c4d95aeaefb0e.zip fluxbox_paul-3707b74c40256c09465171d39e2c4d95aeaefb0e.tar.bz2 |
fix a bunch of comments, make default textures obvious
Thanks Jonas Koelker
Diffstat (limited to 'src/FbTk/ThemeItems.cc')
-rw-r--r-- | src/FbTk/ThemeItems.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FbTk/ThemeItems.cc b/src/FbTk/ThemeItems.cc index 41d05e8..2f58b2a 100644 --- a/src/FbTk/ThemeItems.cc +++ b/src/FbTk/ThemeItems.cc | |||
@@ -21,7 +21,7 @@ | |||
21 | 21 | ||
22 | // $Id$ | 22 | // $Id$ |
23 | 23 | ||
24 | /// @file implements common theme items | 24 | /// @file ThemeItems.cc implements common theme items |
25 | 25 | ||
26 | #ifndef THEMEITEMS_HH | 26 | #ifndef THEMEITEMS_HH |
27 | #define THEMEITEMS_HH | 27 | #define THEMEITEMS_HH |
@@ -71,7 +71,7 @@ void ThemeItem<string>::setFromString(const char *str) { | |||
71 | } | 71 | } |
72 | 72 | ||
73 | template <> | 73 | template <> |
74 | void ThemeItem<int>::load(const string *name, const string *altname) { } | 74 | void ThemeItem<int>::load(const std::string *name, const std::string *altname) { } |
75 | 75 | ||
76 | template<> | 76 | template<> |
77 | void ThemeItem<int>::setDefaultValue() { | 77 | void ThemeItem<int>::setDefaultValue() { |
@@ -233,7 +233,7 @@ void ThemeItem<Texture>::load(const string *o_name, const string *o_altname) { | |||
233 | 233 | ||
234 | template <> | 234 | template <> |
235 | void ThemeItem<Texture>::setDefaultValue() { | 235 | void ThemeItem<Texture>::setDefaultValue() { |
236 | m_value.setType(Texture::FLAT | Texture::SOLID); | 236 | m_value.setType(Texture::DEFAULT_BEVEL | Texture::DEFAULT_TEXTURE); |
237 | load(); // one might forget to add line something: so we try to load something.*: too | 237 | load(); // one might forget to add line something: so we try to load something.*: too |
238 | } | 238 | } |
239 | 239 | ||