summaryrefslogtreecommitdiffstats
path: root/src/configpagebase.cpp
blob: 1aedea51aada3f68acaa82a70a2be93e32b781ed (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( QWidget *parent, const char *name )
    : QWidget( parent, name )
{}

ConfigPageBase::~ConfigPageBase()
{}

void ConfigPageBase::resetDefaults()
{}

void ConfigPageBase::saveSettings()
{}

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