diff options
| author | 2007-04-21 12:48:28 +0000 | |
|---|---|---|
| committer | 2007-04-21 12:48:28 +0000 | |
| commit | 40d6f4bd826a1aa10ded1168b2c6f3163b2a13ba (patch) | |
| tree | ccfdcec5cfa4ba9c44a2da9fda9d6be4e0789fa1 /src/modules/notifier | |
| parent | Compilation fixes (diff) | |
| download | KVIrc-40d6f4bd826a1aa10ded1168b2c6f3163b2a13ba.tar.gz KVIrc-40d6f4bd826a1aa10ded1168b2c6f3163b2a13ba.tar.bz2 KVIrc-40d6f4bd826a1aa10ded1168b2c6f3163b2a13ba.zip | |
evil crash fixes
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@521 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/notifier')
| -rw-r--r-- | src/modules/notifier/notifier_QT4_vc05.vcproj | 8 | ||||
| -rw-r--r-- | src/modules/notifier/notifierwindow.cpp | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/modules/notifier/notifier_QT4_vc05.vcproj b/src/modules/notifier/notifier_QT4_vc05.vcproj index 21430b259..dcb520b27 100644 --- a/src/modules/notifier/notifier_QT4_vc05.vcproj +++ b/src/modules/notifier/notifier_QT4_vc05.vcproj @@ -231,6 +231,10 @@ >
</File>
<File
+ RelativePath=".\notifierwindowprogressbar.cpp"
+ >
+ </File>
+ <File
RelativePath=".\notifierwindowtabs.cpp"
>
</File>
@@ -279,6 +283,10 @@ >
</File>
<File
+ RelativePath=".\notifierwindowprogressbar.h"
+ >
+ </File>
+ <File
RelativePath=".\notifierwindowtabs.h"
>
<FileConfiguration
diff --git a/src/modules/notifier/notifierwindow.cpp b/src/modules/notifier/notifierwindow.cpp index 73b7bd2e9..94ced105e 100644 --- a/src/modules/notifier/notifierwindow.cpp +++ b/src/modules/notifier/notifierwindow.cpp @@ -473,13 +473,13 @@ void KviNotifierWindow::doHide(bool bDoAnimate) if((!bDoAnimate) || (x() != m_pWndBorder->x()) || (y() != m_pWndBorder->y())) { - debug ("just hide quickly with notifier x() %d and notifier y() % - WBorderx() %d and WBordery() %d and bDoanimate %d",x(),y(),m_pWndBorder->x(),m_pWndBorder->y(),bDoAnimate); + //debug ("just hide quickly with notifier x() %d and notifier y() % - WBorderx() %d and WBordery() %d and bDoanimate %d",x(),y(),m_pWndBorder->x(),m_pWndBorder->y(),bDoAnimate); // the user asked to not animate or // the window has been moved and the animation would suck anyway // just hide quickly hideNow(); } else { - debug ("starting hide animation notifier x() %d and notifier y() % - WBorderx() %d and WBordery() %d and bDoanimate %d",x(),y(),m_pWndBorder->x(),m_pWndBorder->y(),bDoAnimate); + //debug ("starting hide animation notifier x() %d and notifier y() % - WBorderx() %d and WBordery() %d and bDoanimate %d",x(),y(),m_pWndBorder->x(),m_pWndBorder->y(),bDoAnimate); m_pShowHideTimer = new QTimer(); connect(m_pShowHideTimer,SIGNAL(timeout()),this,SLOT(heartbeat())); m_dOpacity = 1.0 - OPACITY_STEP; |
