fix an overload
This commit is contained in:
@@ -86,7 +86,7 @@ public:
|
||||
bool SetValueU(const CString &key, const CString &valuename, unsigned value, bool create = 1);
|
||||
bool SetValueF(const CString &key, const CString &valuename, float value, bool create = 1);
|
||||
bool SetValueB(const CString &key, const CString &valuename, bool value, bool create = 1);
|
||||
bool SetValue(const CString &key, const CString &valuename, int value, bool create = 1) { return SetValue(key, valuename, value, create); }
|
||||
bool SetValue(const CString &key, const CString &valuename, int value, bool create = 1) { return SetValueI(key, valuename, value, create); }
|
||||
|
||||
//deletes specified value
|
||||
//returns true if value existed and deleted, false otherwise
|
||||
|
||||
Reference in New Issue
Block a user