You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
366 B
C++
18 lines
366 B
C++
#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);
|
|
}
|