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

#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();
}

#include "configpagebase.moc"