linuxdcpp-team team mailing list archive
-
linuxdcpp-team team
-
Mailing list archive
-
Message #05085
[Branch ~dcplusplus-team/dcplusplus/trunk] Rev 2768: don't output /conn to the status bar
------------------------------------------------------------
revno: 2768
committer: poy <poy@xxxxxxxxxx>
branch nick: trunk
timestamp: Wed 2011-12-28 23:05:28 +0100
message:
don't output /conn to the status bar
modified:
win32/HubFrame.cpp
win32/UserMatchPage.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/HubFrame.cpp'
--- win32/HubFrame.cpp 2011-12-22 22:14:45 +0000
+++ win32/HubFrame.cpp 2011-12-28 22:05:28 +0000
@@ -430,7 +430,7 @@
showUsers->setChecked(!showUsers->getChecked());
handleShowUsersClicked();
} else if(Util::stricmp(cmd.c_str(), _T("conn")) == 0 || Util::stricmp(cmd.c_str(), _T("connection")) == 0) {
- addStatus(Text::toT(ConnectivityManager::getInstance()->getInformation()));
+ addChat(Text::toT(ConnectivityManager::getInstance()->getInformation()));
} else if((Util::stricmp(cmd.c_str(), _T("favorite")) == 0) || (Util::stricmp(cmd.c_str(), _T("fav")) == 0)) {
addAsFavorite();
} else if((Util::stricmp(cmd.c_str(), _T("removefavorite")) == 0) || (Util::stricmp(cmd.c_str(), _T("removefav")) == 0)) {
=== modified file 'win32/UserMatchPage.cpp'
--- win32/UserMatchPage.cpp 2011-12-18 17:04:43 +0000
+++ win32/UserMatchPage.cpp 2011-12-28 22:05:28 +0000
@@ -188,7 +188,7 @@
};
if(matcher.isSet(UserMatch::FAVS))
- addLine(T_("Match favorites"));
+ addLine(T_("Match favorite users"));
if(matcher.isSet(UserMatch::OPS))
addLine(T_("Match operators"));
if(matcher.isSet(UserMatch::BOTS))