From 728fedb493048509e3d83c3e0b20464a872bd960 Mon Sep 17 00:00:00 2001 From: mishas Date: Thu, 12 Apr 2007 07:16:53 +0000 Subject: [PATCH] removed unnecessary (now) destructors for defined GConfOptions git-svn-id: file:///svnroot/simple-launcher/trunk@170 3ba93dab-e023-0410-b42a-de7732cf370a --- gconf-wrapper.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/gconf-wrapper.h b/gconf-wrapper.h index 9fbf284..a3e4518 100644 --- a/gconf-wrapper.h +++ b/gconf-wrapper.h @@ -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); -- 1.7.9.5