summaryrefslogtreecommitdiffstats
path: root/src/configpagebase.cpp
blob: f904de304a8f9018e2e43724b55e28f5408b50cb (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 *tqparent, const char *name )
    : TQWidget( tqparent, name )
{}

ConfigPageBase::~ConfigPageBase()
{}

void ConfigPageBase::resetDefaults()
{}

void ConfigPageBase::saveSettings()
{}

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