diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/FbTk/ResTraits.hh | 4 | ||||
-rw-r--r-- | src/Window.cc | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/FbTk/ResTraits.hh b/src/FbTk/ResTraits.hh index 3ee4464..3284801 100644 --- a/src/FbTk/ResTraits.hh +++ b/src/FbTk/ResTraits.hh | |||
@@ -160,7 +160,7 @@ struct EnumTraits { | |||
160 | } | 160 | } |
161 | }; | 161 | }; |
162 | 162 | ||
163 | template<typename Traits> | 163 | template<typename Traits, const char *delim> |
164 | struct VectorTraits { | 164 | struct VectorTraits { |
165 | typedef std::vector<typename Traits::Type> Type; | 165 | typedef std::vector<typename Traits::Type> Type; |
166 | static std::string toString(const Type &x) { | 166 | static std::string toString(const Type &x) { |
@@ -186,7 +186,7 @@ struct VectorTraits { | |||
186 | 186 | ||
187 | static Type fromString(const std::string &x) { | 187 | static Type fromString(const std::string &x) { |
188 | std::vector<std::string> val; | 188 | std::vector<std::string> val; |
189 | StringUtil::stringtok(val, x); | 189 | StringUtil::stringtok(val, x, delim); |
190 | Type retval; | 190 | Type retval; |
191 | 191 | ||
192 | for(size_t i = 0; i < val.size(); i++) { | 192 | for(size_t i = 0; i < val.size(); i++) { |
diff --git a/src/Window.cc b/src/Window.cc index ad68e6d..b2f532a 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -251,9 +251,10 @@ private: | |||
251 | int m_mode; | 251 | int m_mode; |
252 | }; | 252 | }; |
253 | 253 | ||
254 | extern const char win_buttons_delim[] = " \t\n"; | ||
254 | typedef FbTk::Resource< | 255 | typedef FbTk::Resource< |
255 | vector<WinButton::Type>, | 256 | vector<WinButton::Type>, |
256 | FbTk::VectorTraits<FbTk::EnumTraits<WinButton::Type> > | 257 | FbTk::VectorTraits<FbTk::EnumTraits<WinButton::Type>, win_buttons_delim> |
257 | > WinButtonsResource; | 258 | > WinButtonsResource; |
258 | 259 | ||
259 | } | 260 | } |