removed unnecessary (now) destructors for defined GConfOptions
authormishas <mikhail.sobolev@gmail.com>
Thu, 12 Apr 2007 07:16:53 +0000 (07:16 +0000)
committermishas <mikhail.sobolev@gmail.com>
Thu, 12 Apr 2007 07:16:53 +0000 (07:16 +0000)
git-svn-id: file:///svnroot/simple-launcher/trunk@170 3ba93dab-e023-0410-b42a-de7732cf370a

gconf-wrapper.h

index 9fbf284..a3e4518 100644 (file)
@@ -66,7 +66,6 @@ protected:
 class GConfStringValue : public GConfOption {
 public:
   GConfStringValue(const GConfKey&, const std::string&, const std::string& = "");
- ~GConfStringValue();
 
   const std::string& value() const;
   const std::string& setValue(const std::string& newValue);
@@ -79,7 +78,6 @@ private:
 class GConfBooleanValue : public GConfOption {
 public:
   GConfBooleanValue(const GConfKey&, const std::string&, bool = false);
- ~GConfBooleanValue();
 
   bool value() const;
   bool setValue(bool newValue);
@@ -92,7 +90,6 @@ private:
 class GConfIntegerValue : public GConfOption {
 public:
   GConfIntegerValue(const GConfKey&, const std::string&, int = false);
- ~GConfIntegerValue();
 
   int value() const;
   int setValue(int newValue);