aboutsummaryrefslogtreecommitdiff
path: root/common/ini-file.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/ini-file.h')
-rw-r--r--common/ini-file.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/ini-file.h b/common/ini-file.h
index f27a8b9425..98be1e08bb 100644
--- a/common/ini-file.h
+++ b/common/ini-file.h
@@ -77,8 +77,8 @@ public:
typedef List<Section> SectionList;
public:
- INIFile();
- ~INIFile();
+ INIFile() {}
+ ~INIFile() {}
// TODO: Maybe add a copy constructor etc.?
@@ -88,7 +88,7 @@ public:
* underscores. In particular, white space and "#", "=", "[", "]"
* are not valid!
*/
- static bool isValidName(const String &name);
+ bool isValidName(const String &name) const;
/** Reset everything stored in this ini file. */
void clear();