aboutsummaryrefslogtreecommitdiff
path: root/common/config-file.h
diff options
context:
space:
mode:
authorEugene Sandulenko2005-07-30 21:11:48 +0000
committerEugene Sandulenko2005-07-30 21:11:48 +0000
commit6b4484472b79dc7ea7d1ce545a28fba7d3b7696f (patch)
treec44c4e61f18ddd537f7082cb48869cf33d422fbd /common/config-file.h
parent86ab70b149e5cd00cf54f2e41896e2c4e16795e4 (diff)
downloadscummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.gz
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.bz2
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.zip
Remove trailing whitespaces.
svn-id: r18604
Diffstat (limited to 'common/config-file.h')
-rw-r--r--common/config-file.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/config-file.h b/common/config-file.h
index 000e8ea437..3101628b55 100644
--- a/common/config-file.h
+++ b/common/config-file.h
@@ -79,9 +79,9 @@ public:
public:
ConfigFile();
~ConfigFile();
-
+
// TODO: Maybe add a copy constructor etc.?
-
+
/**
* Check whether the given string is a valid section or key name.
* For that, it must only consist of letters, numbers, dashes and
@@ -97,7 +97,7 @@ public:
bool loadFromStream(SeekableReadStream &stream);
bool saveToFile(const String &filename);
bool saveToStream(WriteStream &stream);
-
+
bool hasSection(const String &section) const;
void removeSection(const String &section);
void renameSection(const String &oldName, const String &newName);
@@ -113,7 +113,7 @@ public:
private:
List<Section> _sections;
-
+
Section *getSection(const String &section);
const Section *getSection(const String &section) const;
};