[atlantik-cvs] CVS: kdegames/atlantik/client atlantik.cpp,1.122,1.123 selectgame_widget.cpp,1.23,1.24
[email protected] Thu, 28 Nov 2002 12:59:26 +0100 (CET)
Newsgroups
gmane.comp.kde.devel.atlantik
Message-ID
<[email protected] >
Update of /home/kde/kdegames/atlantik/client
In directory office:/tmp/cvs-serv16570/client
Modified Files:
atlantik.cpp selectgame_widget.cpp
Log Message:
remove display msgs from text
Index: atlantik.cpp
===================================================================
RCS file: /home/kde/kdegames/atlantik/client/atlantik.cpp,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -d -r1.122 -r1.123
--- atlantik.cpp 2002/11/27 21:08:55 1.122
+++ atlantik.cpp 2002/11/28 11:59:24 1.123
@@ -301,7 +301,6 @@
m_board->setViewProperties(m_config.indicateUnowned, m_config.highliteUnowned, m_config.darkenMortgaged, m_config.quartzEffects, m_config.animateTokens);
connect(m_atlantikNetwork, SIGNAL(displayDetails(QString, Estate *)), m_board, SLOT(insertDetails(QString, Estate *)));
- connect(m_atlantikNetwork, SIGNAL(displayDefault()), m_board, SLOT(displayDefault()));
connect(m_atlantikNetwork, SIGNAL(addCommandButton(QString, QString, bool)), m_board, SLOT(displayButton(QString, QString, bool)));
connect(m_atlantikNetwork, SIGNAL(addCloseButton()), m_board, SLOT(addCloseButton()));
connect(m_board, SIGNAL(tokenConfirmation(Estate *)), m_atlantikNetwork, SLOT(tokenConfirmation(Estate *)));
@@ -455,7 +454,7 @@
void Atlantik::slotSendMsg()
{
m_atlantikNetwork->cmdChat(m_input->text());
- m_input->setText("");
+ m_input->setText(QString::null);
}
void Atlantik::slotMsgInfo(QString msg)
Index: selectgame_widget.cpp
===================================================================
RCS file: /home/kde/kdegames/atlantik/client/selectgame_widget.cpp,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- selectgame_widget.cpp 2002/09/11 03:46:37 1.23
+++ selectgame_widget.cpp 2002/11/28 11:59:24 1.24
@@ -85,7 +85,7 @@
{
if (gameId == "-1")
{
- QListViewItem *item = new QListViewItem(m_gameList, i18n("Create new %1 Game").arg(name), description, "", "", gameType);
+ QListViewItem *item = new QListViewItem(m_gameList, i18n("Create new %1 Game").arg(name), description, QString::null, QString::null, gameType);
item->setPixmap(0, QPixmap(SmallIcon("filenew")));
}
else