aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/FbTk/Resource.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FbTk/Resource.hh b/src/FbTk/Resource.hh
index 29ab939..bfcb4d0 100644
--- a/src/FbTk/Resource.hh
+++ b/src/FbTk/Resource.hh
@@ -183,7 +183,7 @@ public:
183 void setDefaultValue() { m_value = m_defaultval; } 183 void setDefaultValue() { m_value = m_defaultval; }
184 /// sets resource from string, specialized, must be implemented 184 /// sets resource from string, specialized, must be implemented
185 void setFromString(const char *strval); 185 void setFromString(const char *strval);
186 Resource<T>& operator = (const T& newvalue) { m_value = newvalue; return *this;} 186 Accessor<T> &operator =(const T& newvalue) { m_value = newvalue; return *this;}
187 /// specialized, must be implemented 187 /// specialized, must be implemented
188 /// @return string value of resource 188 /// @return string value of resource
189 std::string getString() const; 189 std::string getString() const;