aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Szymon Tomasz Stefanek2007-06-29 03:20:07 +0000
committerGravatar Szymon Tomasz Stefanek2007-06-29 03:20:07 +0000
commite6e2d5ada74486a269cea8daedf433105c38b5bf (patch)
treeeedab167ce0db5aa645deb6b2c6978e36bc9c9b7
parentA quick fix for fast scrolling irc-view which may cause SIGSEGV at startup (diff)
downloadKVIrc-e6e2d5ada74486a269cea8daedf433105c38b5bf.tar.gz
KVIrc-e6e2d5ada74486a269cea8daedf433105c38b5bf.tar.bz2
KVIrc-e6e2d5ada74486a269cea8daedf433105c38b5bf.zip
Removed some debug messages: stable programs do not fill the terminal with garbage :)
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@639 17fca916-40b9-46aa-a4ea-0a15b648b75c
-rw-r--r--src/kvirc/ui/kvi_window.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/kvirc/ui/kvi_window.cpp b/src/kvirc/ui/kvi_window.cpp
index c6d864767..b8d3a6348 100644
--- a/src/kvirc/ui/kvi_window.cpp
+++ b/src/kvirc/ui/kvi_window.cpp
@@ -981,7 +981,6 @@ void KviWindow::youAreUndocked()
void KviWindow::activateSelf()
{
- debug("ACTIVATING SELF");
if(mdiParent())
mdiParent()->activate(false);
@@ -1000,7 +999,6 @@ void KviWindow::setFocus()
void KviWindow::focusInEvent(QFocusEvent *)
{
- debug("FOCUS IN EVENT TO KviWindow");
if(m_pLastFocusedChild)
{
if(m_pLastFocusedChild->hasFocus() && m_pLastFocusedChild->isVisible())
@@ -1060,7 +1058,7 @@ void KviWindow::focusInEvent(QFocusEvent *)
// we should be already the active window at this point.
// If we're not, then run activateSelf() to fix this.
if(g_pActiveWindow != this)activateSelf();
- else debug("ACTIVE WINDOW IS ALREADY THIS");
+ //else debug("ACTIVE WINDOW IS ALREADY THIS");
updateCaption();
}