aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/notifier
diff options
context:
space:
mode:
authorGravatar Szymon Tomasz Stefanek2008-03-13 03:05:44 +0000
committerGravatar Szymon Tomasz Stefanek2008-03-13 03:05:44 +0000
commitfd4869b626a2462db9c609ebf411776aed6daa8d (patch)
treef8e203bcf729a231083692e8311245225e657b3c /src/modules/notifier
parentFix for ticket #37 (diff)
downloadKVIrc-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')
-rw-r--r--src/modules/notifier/notifierwindow.cpp5
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();