summaryrefslogtreecommitdiffstats
path: root/ksirtet/ksirtet/settings.cpp
blob: 96669e7828d876fe16d1b24ebd0d6e421621f3dc (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 <qlayout.h>
#include <qcheckbox.h>

#include <klocale.h>


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

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