summaryrefslogtreecommitdiffstats
path: root/ksirtet/ksirtet/settings.cpp
blob: b35891b8695dabb05ca8f09a2c37188c648e891b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "settings.h"
#include "settings.moc"

#include <tqlayout.h>
#include <tqcheckbox.h>

#include <klocale.h>


KSGameConfig::KSGameConfig()
{
    int row = _grid->numRows();
    int col = _grid->numCols();

    TQCheckBox *cb = new TQCheckBox(i18n("Old rotation style"), this, "kcfg_OldRotationStyle");
    _grid->addMultiCellWidget(cb, row, row, 0, col-1);
}