summaryrefslogtreecommitdiff
path: root/src/FbTk/ThemeItems.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/ThemeItems.cc')
-rw-r--r--src/FbTk/ThemeItems.cc2
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
121template <> 121template <>
122void ThemeItem<unsigned int>::setFromString(const char *str) { 122void ThemeItem<unsigned int>::setFromString(const char *str) {
123 sscanf(str, "%d", &m_value); 123 sscanf(str, "%u", &m_value);
124} 124}
125 125
126template <> 126template <>