From atlantik-devel Mon Jul 29 19:09:51 2002 From: kde () office ! kde ! org Date: Mon, 29 Jul 2002 19:09:51 +0000 To: atlantik-devel Subject: [atlantik-cvs] CVS: kdegames/atlantik/client atlantik.cpp,1.115,1.116 main.h,1.21,1.22 X-MARC-Message: https://marc.info/?l=atlantik-devel&m=102796992527515 Update of /home/kde/kdegames/atlantik/client In directory office:/tmp/cvs-serv10468/client Modified Files: atlantik.cpp main.h Log Message: trade crash fix Index: atlantik.cpp =================================================================== RCS file: /home/kde/kdegames/atlantik/client/atlantik.cpp,v retrieving revision 1.115 retrieving revision 1.116 diff -u -d -r1.115 -r1.116 --- atlantik.cpp 2002/07/29 03:42:28 1.115 +++ atlantik.cpp 2002/07/29 19:09:49 1.116 @@ -108,6 +108,7 @@ // Text view for chat and status messages from server. m_serverMsgs = new QTextEdit(m_mainWidget, "serverMsgs"); + m_serverMsgs->setTextFormat(QTextEdit::PlainText); m_serverMsgs->setReadOnly(true); m_serverMsgs->setHScrollBarMode(QScrollView::AlwaysOff); m_serverMsgs->setFixedWidth(225); @@ -446,7 +447,7 @@ void Atlantik::slotMsgChat(QString player, QString msg) { - serverMsgsAppend("" + player + ": " + msg); + serverMsgsAppend(player + ": " + msg); } void Atlantik::serverMsgsAppend(QString msg) Index: main.h =================================================================== RCS file: /home/kde/kdegames/atlantik/client/main.h,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- main.h 2002/07/29 03:43:01 1.21 +++ main.h 2002/07/29 19:09:49 1.22 @@ -17,11 +17,11 @@ #ifndef ATLANTIK_MAIN_H #define ATLANTIK_MAIN_H -#define ATLANTIK_VERSION 040 -#define ATLANTIK_VERSION_STRING "0.4.0" +#define ATLANTIK_VERSION 041 +#define ATLANTIK_VERSION_STRING "0.4.1 (CVS >= 20020729)" #define ATLANTIK_VERSION_MAJOR 0 #define ATLANTIK_VERSION_MINOR 4 -#define ATLANTIK_VERSION_RELEASE 0 +#define ATLANTIK_VERSION_RELEASE 1 int main(int, char *[]); _______________________________________________ atlantik-cvs mailing list atlantik-cvs@mail.kde.org http://mail.kde.org/mailman/listinfo/atlantik-cvs