From: mishas Date: Thu, 12 Apr 2007 10:44:07 +0000 (+0000) Subject: removed implicit default values for GConf*Option X-Git-Url: http://vcs.maemo.org/git/?p=simple-launcher;a=commitdiff_plain;h=3f43bcf738a5c84a2e8594deb477300fbec3007d removed implicit default values for GConf*Option git-svn-id: file:///svnroot/simple-launcher/trunk@173 3ba93dab-e023-0410-b42a-de7732cf370a --- diff --git a/gconf-wrapper.h b/gconf-wrapper.h index 2457157..82c62be 100644 --- a/gconf-wrapper.h +++ b/gconf-wrapper.h @@ -68,7 +68,7 @@ protected: class GConfStringOption : public GConfOption { public: - GConfStringOption(const GConfKey&, const std::string&, const std::string& = ""); + GConfStringOption(const GConfKey&, const std::string&, const std::string&); const std::string& value() const; const std::string& setValue(const std::string& newValue); @@ -80,7 +80,7 @@ private: class GConfBooleanOption : public GConfOption { public: - GConfBooleanOption(const GConfKey&, const std::string&, bool = false); + GConfBooleanOption(const GConfKey&, const std::string&, bool); bool value() const; bool setValue(bool newValue); @@ -92,7 +92,7 @@ private: class GConfIntegerOption : public GConfOption { public: - GConfIntegerOption(const GConfKey&, const std::string&, int = false); + GConfIntegerOption(const GConfKey&, const std::string&, int); int value() const; int setValue(int newValue);