diff options
Diffstat (limited to 'kpoker/optionsdlg.cpp')
-rw-r--r-- | kpoker/optionsdlg.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kpoker/optionsdlg.cpp b/kpoker/optionsdlg.cpp index e009c3d2..5fdfbfcf 100644 --- a/kpoker/optionsdlg.cpp +++ b/kpoker/optionsdlg.cpp @@ -16,8 +16,8 @@ // QT includes -#include <qlabel.h> -#include <qlayout.h> +#include <tqlabel.h> +#include <tqlayout.h> // KDE includes #include <klocale.h> @@ -28,11 +28,11 @@ #include "defines.h" -OptionsDlg::OptionsDlg(QWidget* parent, const char* name, int _players) +OptionsDlg::OptionsDlg(TQWidget* parent, const char* name, int _players) : KDialogBase(Plain, i18n("Options")/*?*/, Ok|Cancel, Ok, parent, name, true, true) { - QVBoxLayout* topLayout = new QVBoxLayout(plainPage(), spacingHint()); + TQVBoxLayout* topLayout = new TQVBoxLayout(plainPage(), spacingHint()); maxBet = 0; minBet = 0; @@ -41,7 +41,7 @@ OptionsDlg::OptionsDlg(QWidget* parent, const char* name, int _players) else players = _players; - topLayout->addWidget(new QLabel(i18n("All changes will be activated in the next round."), plainPage())); + topLayout->addWidget(new TQLabel(i18n("All changes will be activated in the next round."), plainPage())); drawDelay = new KIntNumInput(0, plainPage()); drawDelay->setLabel(i18n("Draw delay:")); |