diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2009-09-30 19:05:02 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2009-09-30 19:05:02 (GMT) |
commit | f8c61a1ba2cc5fc08690b89440cb2f0380f068df (patch) | |
tree | 73b5de8ae1d866f324ccfb867a88fbe68587cf40 /src/FbTk/ThemeItems.cc | |
parent | e8c2690bfc92274b96d1620829977bf4c1db908b (diff) | |
download | fluxbox_paul-f8c61a1ba2cc5fc08690b89440cb2f0380f068df.zip fluxbox_paul-f8c61a1ba2cc5fc08690b89440cb2f0380f068df.tar.bz2 |
compile fix: use the correct format string to parse the number
Diffstat (limited to 'src/FbTk/ThemeItems.cc')
-rw-r--r-- | src/FbTk/ThemeItems.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FbTk/ThemeItems.cc b/src/FbTk/ThemeItems.cc index b4e7096..56efb1b 100644 --- a/src/FbTk/ThemeItems.cc +++ b/src/FbTk/ThemeItems.cc | |||
@@ -120,7 +120,7 @@ void ThemeItem<unsigned int>::setDefaultValue() { | |||
120 | 120 | ||
121 | template <> | 121 | template <> |
122 | void ThemeItem<unsigned int>::setFromString(const char *str) { | 122 | void ThemeItem<unsigned int>::setFromString(const char *str) { |
123 | sscanf(str, "%d", &m_value); | 123 | sscanf(str, "%u", &m_value); |
124 | } | 124 | } |
125 | 125 | ||
126 | template <> | 126 | template <> |