summaryrefslogtreecommitdiffstats
path: root/src/configpagebase.cpp
blob: f2bb3c6efc5c66640fb04f3be52003c0ea78bf25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

#include "configpagebase.h"

ConfigPageBase::ConfigPageBase( TQWidget *parent, const char *name )
    : TQWidget( parent, name )
{}

ConfigPageBase::~ConfigPageBase()
{}

void ConfigPageBase::resetDefaults()
{}

void ConfigPageBase::saveSettings()
{}

void ConfigPageBase::cfgChanged()
{
    emit configChanged();
}