diff options
author | mathias <mathias> | 2006-03-02 07:49:13 (GMT) |
---|---|---|
committer | mathias <mathias> | 2006-03-02 07:49:13 (GMT) |
commit | a21d42da3709f5dc5b5510297be134507153ef2c (patch) | |
tree | b40b05154c33f8a05191c9b46ece0ed6737e6506 /src/IconbarTool.cc | |
parent | e742a830adaef45950a12c901ce245d67cc3fdcb (diff) | |
download | fluxbox_pavel-a21d42da3709f5dc5b5510297be134507153ef2c.zip fluxbox_pavel-a21d42da3709f5dc5b5510297be134507153ef2c.tar.bz2 |
fixed gcc4.1 problems, patch from Andreas Bierfert <andreas dot bierfert at lowlatency dot de>
Diffstat (limited to 'src/IconbarTool.cc')
-rw-r--r-- | src/IconbarTool.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/IconbarTool.cc b/src/IconbarTool.cc index e860ce2..cbd42c4 100644 --- a/src/IconbarTool.cc +++ b/src/IconbarTool.cc | |||
@@ -51,6 +51,8 @@ | |||
51 | #include <iterator> | 51 | #include <iterator> |
52 | using namespace std; | 52 | using namespace std; |
53 | 53 | ||
54 | namespace FbTk { | ||
55 | |||
54 | template<> | 56 | template<> |
55 | void FbTk::Resource<IconbarTool::Mode>::setFromString(const char *strval) { | 57 | void FbTk::Resource<IconbarTool::Mode>::setFromString(const char *strval) { |
56 | if (strcasecmp(strval, "None") == 0) | 58 | if (strcasecmp(strval, "None") == 0) |
@@ -192,6 +194,7 @@ string FbTk::Resource<IconbarTool::Mode>::getString() const { | |||
192 | // default string | 194 | // default string |
193 | return string("Icons"); | 195 | return string("Icons"); |
194 | } | 196 | } |
197 | } // end namespace FbTk | ||
195 | 198 | ||
196 | namespace { | 199 | namespace { |
197 | 200 | ||