┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/statusbar/dolphinstatusbar.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2009-08-01 20:30:23 +0000
committerPeter Penz <[email protected]>2009-08-01 20:30:23 +0000
commit52478842e320536ce77eb1a13c235b2d5f98927f (patch)
tree7f8a50a68b94ec5952c26d61a7fc2b2dc1213073 /src/statusbar/dolphinstatusbar.h
parent99eacd9f56acf4ad21994508ee824b1ce1594be1 (diff)
Assure that non-default messages don't get hidden after a very short time by default messages.
svn path=/trunk/KDE/kdebase/apps/; revision=1005712
Diffstat (limited to 'src/statusbar/dolphinstatusbar.h')
-rw-r--r--src/statusbar/dolphinstatusbar.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/statusbar/dolphinstatusbar.h b/src/statusbar/dolphinstatusbar.h
index a536ea178..a07313bab 100644
--- a/src/statusbar/dolphinstatusbar.h
+++ b/src/statusbar/dolphinstatusbar.h
@@ -22,6 +22,7 @@
#define DOLPHINSTATUSBAR_H
#include <khbox.h>
+#include <QTime>
class DolphinView;
class KUrl;
@@ -179,6 +180,11 @@ private:
QLabel* m_progressText;
QProgressBar* m_progressBar;
int m_progress;
+
+ // Timestamp when the last message has been set that has not the type
+ // 'Default'. The timestamp is used to prevent that default messages
+ // hide more important messages after a very short delay.
+ QTime m_messageTimeStamp;
};
#endif