diff options
Diffstat (limited to 'kpoker/betbox.cpp')
-rw-r--r-- | kpoker/betbox.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kpoker/betbox.cpp b/kpoker/betbox.cpp index cbdcad12..52bb39cb 100644 --- a/kpoker/betbox.cpp +++ b/kpoker/betbox.cpp @@ -16,7 +16,7 @@ #include <tqpushbutton.h> -#include <tqlayout.h> +#include <layout.h> #include <kglobal.h> #include <klocale.h> @@ -46,10 +46,10 @@ BetBox::BetBox(TQWidget* parent, const char* name) foldButton = new TQPushButton(this); l->addWidget(foldButton, 0); - bet5Up->setText(TQString("+%1").tqarg(KGlobal::locale()->formatMoney(5))); - bet10Up->setText(TQString("+%1").tqarg(KGlobal::locale()->formatMoney(10))); - bet5Down->setText(TQString("-%1").tqarg(KGlobal::locale()->formatMoney(5))); - bet10Down->setText(TQString("-%1").tqarg(KGlobal::locale()->formatMoney(10))); + bet5Up->setText(TQString("+%1").arg(KGlobal::locale()->formatMoney(5))); + bet10Up->setText(TQString("+%1").arg(KGlobal::locale()->formatMoney(10))); + bet5Down->setText(TQString("-%1").arg(KGlobal::locale()->formatMoney(5))); + bet10Down->setText(TQString("-%1").arg(KGlobal::locale()->formatMoney(10))); adjustBet->setText(i18n("Adjust Bet")); foldButton->setText(i18n("Fold")); |