From f0543a055fbcea269eeba19b459b4d9614b907b5 Mon Sep 17 00:00:00 2001 From: mishas Date: Thu, 12 Apr 2007 20:17:09 +0000 Subject: [PATCH] added [empty] dialog-entry.cc; stubbed dialog-entry.h git-svn-id: file:///svnroot/simple-launcher/trunk@180 3ba93dab-e023-0410-b42a-de7732cf370a --- Makefile | 2 +- dialog-entry.cc | 20 ++++++++++++++++++++ dialog-entry.h | 6 +++--- 3 files changed, 24 insertions(+), 4 deletions(-) create mode 100644 dialog-entry.cc diff --git a/Makefile b/Makefile index ca7b6e0..86f7048 100644 --- 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 index 0000000..eadc878 --- /dev/null +++ b/dialog-entry.cc @@ -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" + + diff --git a/dialog-entry.h b/dialog-entry.h index a178451..6a70aed 100644 --- a/dialog-entry.h +++ b/dialog-entry.h @@ -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 -- 1.7.9.5