added [empty] dialog-entry.cc; stubbed dialog-entry.h
authormishas <mikhail.sobolev@gmail.com>
Thu, 12 Apr 2007 20:17:09 +0000 (20:17 +0000)
committermishas <mikhail.sobolev@gmail.com>
Thu, 12 Apr 2007 20:17:09 +0000 (20:17 +0000)
git-svn-id: file:///svnroot/simple-launcher/trunk@180 3ba93dab-e023-0410-b42a-de7732cf370a

Makefile
dialog-entry.cc [new file with mode: 0644]
dialog-entry.h

index ca7b6e0..86f7048 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,7 @@ all: test2 $(TARGET)
 
 tests: test test1 test2
 
-$(TARGET): simple-launcher.o launchable-item.o launcher-item.o sla-list.o utils.o settings-dialog.o gconf-wrapper.o
+$(TARGET): simple-launcher.o launchable-item.o launcher-item.o sla-list.o utils.o settings-dialog.o gconf-wrapper.o dialog-entry.o
        $(LD) $(LDFLAGS) -o $@ $^ $(LIBS)
 
 test: test.o launcher-item.o
diff --git a/dialog-entry.cc b/dialog-entry.cc
new file mode 100644 (file)
index 0000000..eadc878
--- /dev/null
@@ -0,0 +1,20 @@
+// This file is a part of Simple Launcher
+//
+// Copyright (C) 2006, 2007, Mikhail Sobolev
+//
+// Simple Launcher is free software; you can redistribute it and/or modify it
+// under the terms of the GNU General Public License version 2 as published by
+// the Free Software Foundation.
+//
+// This program is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+// more details.
+//
+// You should have received a copy of the GNU General Public License along with
+// this program; if not, write to the Free Software Foundation, Inc., 51
+// Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+
+#include "dialog-entry.h"
+
+
index a178451..6a70aed 100644 (file)
@@ -25,7 +25,7 @@ public:
        virtual ~SettingsDialogEntry() {}
 
 protected:
-       SettingsDialogEntry(GConfOption& option, const std::string& name);
+       SettingsDialogEntry(GConfOption& option, const std::string& name): myOption(option), myName(name) {}
 
   const std::string& name() const { return myName; }
 
@@ -47,14 +47,14 @@ class SettingsDialogBooleanEntry : public SettingsDialogEntry {
 public:
   SettingsDialogBooleanEntry(GConfBooleanOption& option, const std::string& name): SettingsDialogEntry(option, name) {}
 
-  void updateValue();
+  void updateValue() {}
 };
 
 class SettingsDialogIntegerEntry : public SettingsDialogEntry {
 public:
   SettingsDialogIntegerEntry(GConfIntegerOption& option, const std::string& name): SettingsDialogEntry(option, name) {}
 
-  void updateValue();
+  void updateValue() {}
 };
 
 #endif