summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2004-07-10 03:24:45 (UTC)
committer llornkcor <llornkcor>2004-07-10 03:24:45 (UTC)
commitc2b6d8dfff0aa3eab76b823e5be76cebb23097cf (patch) (unidiff)
treee10f6d83894b03edb727bde1e05e0061cb7aa69b
parentaa85f7f987521c9f01acf3d8b737c5a60175de46 (diff)
downloadopie-c2b6d8dfff0aa3eab76b823e5be76cebb23097cf.zip
opie-c2b6d8dfff0aa3eab76b823e5be76cebb23097cf.tar.gz
opie-c2b6d8dfff0aa3eab76b823e5be76cebb23097cf.tar.bz2
fix compile
Diffstat (more/less context) (show whitespace changes)
-rwxr-xr-xnoncore/apps/zsafe/qsettings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/apps/zsafe/qsettings.h b/noncore/apps/zsafe/qsettings.h
index b11b533..95e87b5 100755
--- a/noncore/apps/zsafe/qsettings.h
+++ b/noncore/apps/zsafe/qsettings.h
@@ -23,17 +23,17 @@ public:
23 Windows, 23 Windows,
24 Mac 24 Mac
25 }; 25 };
26 enum Scope { 26 enum Scope {
27 User, 27 User,
28 Global 28 Global
29 }; 29 };
30 30
31 QSettings(const QString &); 31 QSettings(const QString &file=0);
32 ~QSettings(); 32 ~QSettings();
33 33
34 void insertSearchPath (System, const QString &); 34 void insertSearchPath (System, const QString &);
35 35
36 QString readEntry (const QString &, const QString &def = QString::null); 36 QString readEntry (const QString &, const QString &def = QString::null);
37 int readNumEntry (const QString &, int def = 0); 37 int readNumEntry (const QString &, int def = 0);
38 bool readBoolEntry (const QString &, bool def = 0); 38 bool readBoolEntry (const QString &, bool def = 0);
39 39