Remove Debug Output In Many Different Places (#1607)
* Application.cpp: Remove whisper debug output * TwitchAccount.cpp: Remove AutoMod debug output * BaseWindow.cpp: Remove mouse tracking debug output * RunGui.cpp: Remove debug output for cleared cache items * Notebook.cpp: Remove debug output for selected widgets * LimitedQueue.hpp: Remove commented debug output * IrcMessageHandler.cpp: Remove debug output when receiving whispers * UserInfoPopup.cpp: Remove user name debug output * ChannelView.cpp: Remove debug output when clicking a message * Image.cpp: Remove commented debug output * AttachedWindow.cpp: Remove commented debug output * SplitOverlay.cpp: Remove commented debug output * TwitchMessageBuilder.cpp: Remove debug output for highlights * TwitchMessageBuilder.cpp: Remove debug output for blocked messages * PubsubClient.cpp: Remove debug output on PubSub::listen * PubsubClient.cpp: Remove debug output on PubSub::tryListen * IncognitoBrowser.cpp: Remove debug output of browser command * NativeMessaging.cpp: Remove debug output of message
This commit is contained in:
@@ -384,7 +384,6 @@ void BaseWindow::mousePressEvent(QMouseEvent *event)
|
||||
|
||||
if (!recursiveCheckMouseTracking(widget))
|
||||
{
|
||||
qDebug() << "Start moving";
|
||||
this->moving = true;
|
||||
}
|
||||
}
|
||||
@@ -401,7 +400,6 @@ void BaseWindow::mouseReleaseEvent(QMouseEvent *event)
|
||||
{
|
||||
if (this->moving)
|
||||
{
|
||||
qDebug() << "Stop moving";
|
||||
this->moving = false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user