summaryrefslogtreecommitdiffstats
path: root/src/configpagebase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/configpagebase.cpp')
-rwxr-xr-xsrc/configpagebase.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/configpagebase.cpp b/src/configpagebase.cpp
new file mode 100755
index 0000000..1aedea5
--- /dev/null
+++ b/src/configpagebase.cpp
@@ -0,0 +1,20 @@
+
+#include "configpagebase.h"
+
+ConfigPageBase::ConfigPageBase( QWidget *parent, const char *name )
+ : QWidget( parent, name )
+{}
+
+ConfigPageBase::~ConfigPageBase()
+{}
+
+void ConfigPageBase::resetDefaults()
+{}
+
+void ConfigPageBase::saveSettings()
+{}
+
+void ConfigPageBase::cfgChanged()
+{
+ emit configChanged();
+}