You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/ksirtet/ksirtet/settings.cpp

18 lines
368 B

#include "settings.h"
#include "settings.moc"
#include <tqlayout.h>
#include <tqcheckbox.h>
#include <tdelocale.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);
}