summaryrefslogtreecommitdiffstats
path: root/kpoker/optionsdlg.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:42:31 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:42:31 +0000
commit576eb4299a00bc053db35414406f46372a0f70f2 (patch)
tree4c030922d533821db464af566188e7d40cc8848c /kpoker/optionsdlg.cpp
parent0718336b6017d1a4fc1d626544180a5a2a29ddec (diff)
downloadtdegames-576eb4299a00bc053db35414406f46372a0f70f2.tar.gz
tdegames-576eb4299a00bc053db35414406f46372a0f70f2.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1157643 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpoker/optionsdlg.cpp')
-rw-r--r--kpoker/optionsdlg.cpp10
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:"));