summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-02-17 18:34:57 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-02-17 18:34:57 (GMT)
commita985d3044faa52e91f334ad7f1b27eb04e50208b (patch)
tree01c21ca4a5d9a9cee3c381549996aa47f07bcc89
parentde6cb039589e8dc06bf7a5ded562cbc8ce8fff8a (diff)
downloadswift-a985d3044faa52e91f334ad7f1b27eb04e50208b.zip
swift-a985d3044faa52e91f334ad7f1b27eb04e50208b.tar.bz2
Remove debugging printfs
-rw-r--r--Swift/QtUI/QtChatWindow.cpp1
-rw-r--r--Swiften/Chat/ChatStateTracker.cpp1
2 files changed, 0 insertions, 2 deletions
diff --git a/Swift/QtUI/QtChatWindow.cpp b/Swift/QtUI/QtChatWindow.cpp
index 915e941..fe97573 100644
--- a/Swift/QtUI/QtChatWindow.cpp
+++ b/Swift/QtUI/QtChatWindow.cpp
@@ -140,7 +140,6 @@ void QtChatWindow::setUnreadMessageCount(int count) {
void QtChatWindow::setContactChatState(ChatState::ChatStateType state) {
contactIsTyping_ = (state == ChatState::Composing);
- printf("Hay, composing %d, %d!\n", state, contactIsTyping_);
emit titleUpdated();
}
diff --git a/Swiften/Chat/ChatStateTracker.cpp b/Swiften/Chat/ChatStateTracker.cpp
index 94e01eb..3076845 100644
--- a/Swiften/Chat/ChatStateTracker.cpp
+++ b/Swiften/Chat/ChatStateTracker.cpp
@@ -19,7 +19,6 @@ void ChatStateTracker::handlePresenceChange(boost::shared_ptr<Presence> newPrese
}
void ChatStateTracker::changeState(ChatState::ChatStateType state) {
- printf("Comparing state %d to old state %d\n", state, currentState_);
if (state != currentState_) {
currentState_ = state;
onChatStateChange(state);