← Back to team overview

linuxdcpp-team team mailing list archive

[Branch ~dcplusplus-team/dcplusplus/trunk] Rev 2860: fix double-logs

 

------------------------------------------------------------
revno: 2860
committer: poy <poy@xxxxxxxxxx>
branch nick: trunk
timestamp: Tue 2012-02-07 20:25:58 +0100
message:
  fix double-logs
modified:
  win32/PrivateFrame.cpp


--
lp:dcplusplus
https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk

Your team Dcplusplus-team is subscribed to branch lp:dcplusplus.
To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk/+edit-subscription
=== modified file 'win32/PrivateFrame.cpp'
--- win32/PrivateFrame.cpp	2012-02-07 19:10:02 +0000
+++ win32/PrivateFrame.cpp	2012-02-07 19:25:58 +0000
@@ -214,7 +214,7 @@
 	status->setText(STATUS_STATUS, message);
 
 	if(BOOLSETTING(STATUS_IN_CHAT)) {
-		addChat(_T("*** ") + message);
+		addChatRaw(_T("*** ") + message);
 		addedChat(text); // addedChat expects a message with no timestamp
 	}
 }