diff options
| author | 2008-03-13 03:05:44 +0000 | |
|---|---|---|
| committer | 2008-03-13 03:05:44 +0000 | |
| commit | fd4869b626a2462db9c609ebf411776aed6daa8d (patch) | |
| tree | f8e203bcf729a231083692e8311245225e657b3c /src/modules/notifier/notifierwindow.cpp | |
| parent | Fix for ticket #37 (diff) | |
| download | KVIrc-fd4869b626a2462db9c609ebf411776aed6daa8d.tar.gz KVIrc-fd4869b626a2462db9c609ebf411776aed6daa8d.tar.bz2 KVIrc-fd4869b626a2462db9c609ebf411776aed6daa8d.zip | |
Fixes for other tickets
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@1214 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/notifier/notifierwindow.cpp')
| -rw-r--r-- | src/modules/notifier/notifierwindow.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/modules/notifier/notifierwindow.cpp b/src/modules/notifier/notifierwindow.cpp index 9169a110a..0c05e23e0 100644 --- a/src/modules/notifier/notifierwindow.cpp +++ b/src/modules/notifier/notifierwindow.cpp @@ -263,7 +263,6 @@ int KviNotifierWindow::textWidth() { void KviNotifierWindow::stopShowHideTimer() { if(!m_pShowHideTimer)return; - debug ("Deleting show/hide timer"); delete m_pShowHideTimer; m_pShowHideTimer = 0; } @@ -452,7 +451,7 @@ void KviNotifierWindow::heartbeat() targetOpacity/=100; bIncreasing = targetOpacity>m_dOpacity; m_dOpacity += bIncreasing ? OPACITY_STEP : -(OPACITY_STEP); - debug("%f %f %i %i",m_dOpacity,targetOpacity,bIncreasing,(m_dOpacity >= targetOpacity)); + //debug("%f %f %i %i",m_dOpacity,targetOpacity,bIncreasing,(m_dOpacity >= targetOpacity)); if( (bIncreasing && (m_dOpacity >= targetOpacity) ) || (!bIncreasing && (m_dOpacity <= targetOpacity) ) ) @@ -951,7 +950,7 @@ void KviNotifierWindow::mouseReleaseEvent(QMouseEvent * e) if(m_pWndBorder->captionRect().contains(e->pos())) { if(m_pWndBorder->closeRect().contains(e->pos())) { - debug ("hide now from release event"); + //debug ("hide now from release event"); hideNow(); } else { update(); |
