diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2015-03-05 05:07:40 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-03-05 05:07:40 +0100 |
commit | 895b21c103b99df631506fe0d846119d5b28a8e3 (patch) | |
tree | 25fc1eb010230b260d9ef9e2641eea70e8f75d39 /atlantik/client/atlantik.cpp | |
parent | d18ea9131cddcba5c168dcac1111990123238eb9 (diff) | |
download | tdegames-895b21c103b99df631506fe0d846119d5b28a8e3.tar.gz tdegames-895b21c103b99df631506fe0d846119d5b28a8e3.zip |
Fix incorrectly renamed strings
Diffstat (limited to 'atlantik/client/atlantik.cpp')
-rw-r--r-- | atlantik/client/atlantik.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/atlantik/client/atlantik.cpp b/atlantik/client/atlantik.cpp index efbf2a0d..fbbe24ec 100644 --- a/atlantik/client/atlantik.cpp +++ b/atlantik/client/atlantik.cpp @@ -158,7 +158,7 @@ Atlantik::Atlantik () m_mainLayout = new TQGridLayout(m_mainWidget, 3, 2); setCentralWidget(m_mainWidget); - //Qt::Vertical view area for portfolios. + // Vertical view area for portfolios. m_portfolioScroll = new TQScrollView(m_mainWidget, "pfScroll"); m_mainLayout->addWidget( m_portfolioScroll, 0, 0 ); m_portfolioScroll->setHScrollBarMode( TQScrollView::AlwaysOff ); @@ -201,8 +201,8 @@ Atlantik::Atlantik () // Check command-line args to see if we need to connect or show Monopigator window TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); - TQCString host = args->getOption("host"); - TQCString port = args->getOption("port"); + TQCString host = args->getOption("host"); + TQCString port = args->getOption("port"); if (!host.isNull() && !port.isNull()) m_atlantikNetwork->serverConnect(host, port.toInt()); else @@ -446,7 +446,7 @@ void Atlantik::slotNetworkConnected() void Atlantik::slotNetworkError(int errnum) { TQString errMsg(i18n("Error connecting: ")); - + switch (m_atlantikNetwork->status()) { case IO_ConnectError: @@ -490,7 +490,7 @@ void Atlantik::slotConfigure() if (m_configDialog == 0) m_configDialog = new ConfigDialog(this); m_configDialog->show(); - + connect(m_configDialog, TQT_SIGNAL(okClicked()), TQT_TQOBJECT(this), TQT_SLOT(slotUpdateConfig())); } @@ -789,7 +789,7 @@ void Atlantik::sendHandshake() // Check command-line args to see if we need to auto-join TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); - TQCString game = args->getOption("game"); + TQCString game = args->getOption("game"); if (!game.isNull()) m_atlantikNetwork->joinGame(game.toInt()); } |