aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/notifier/notifierwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/notifier/notifierwindow.cpp')
-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();