summaryrefslogtreecommitdiffstats
path: root/atlantik/client/atlantik.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'atlantik/client/atlantik.cpp')
-rw-r--r--atlantik/client/atlantik.cpp12
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());
}