diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-02-17 18:34:57 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-02-17 18:34:57 (GMT) |
commit | a985d3044faa52e91f334ad7f1b27eb04e50208b (patch) | |
tree | 01c21ca4a5d9a9cee3c381549996aa47f07bcc89 /Swiften | |
parent | de6cb039589e8dc06bf7a5ded562cbc8ce8fff8a (diff) | |
download | swift-a985d3044faa52e91f334ad7f1b27eb04e50208b.zip swift-a985d3044faa52e91f334ad7f1b27eb04e50208b.tar.bz2 |
Remove debugging printfs
Diffstat (limited to 'Swiften')
-rw-r--r-- | Swiften/Chat/ChatStateTracker.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
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); |