┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-10-15 16:23:51 +0000
committerPeter Penz <[email protected]>2007-10-15 16:23:51 +0000
commit2ddc27b423f37ebf42b28a34a78fe41a5b35a460 (patch)
tree0eba6364abecb41045798344d78f950046693394 /src
parentd059b705a9b50572537cb938b3f593de0d305f9a (diff)
minor cleanups
svn path=/trunk/KDE/kdebase/apps/; revision=725523
Diffstat (limited to 'src')
-rw-r--r--src/dolphinstatusbar.cpp1
-rw-r--r--src/statusbarmessagelabel.h51
2 files changed, 31 insertions, 21 deletions
diff --git a/src/dolphinstatusbar.cpp b/src/dolphinstatusbar.cpp
index a6bc03224..9a2ccb040 100644
--- a/src/dolphinstatusbar.cpp
+++ b/src/dolphinstatusbar.cpp
@@ -180,7 +180,6 @@ void DolphinStatusBar::showSpaceInfo()
// The space information is shown currently. Hide it
// if the progress bar is visible or if the status bar
// text does not fit into the available width.
- const QSize size(m_progressBar->sizeHint());
if (isProgressBarVisible || (widthGap > 0)) {
m_spaceInfo->hide();
}
diff --git a/src/statusbarmessagelabel.h b/src/statusbarmessagelabel.h
index 25610d4b6..0eacad971 100644
--- a/src/statusbarmessagelabel.h
+++ b/src/statusbarmessagelabel.h
@@ -51,30 +51,16 @@ public:
void setMessage(const QString& text, DolphinStatusBar::Type type);
- DolphinStatusBar::Type type() const
- {
- return m_type;
- }
- const QString& text() const
- {
- return m_text;
- }
+ DolphinStatusBar::Type type() const;
- void setDefaultText(const QString& text)
- {
- m_defaultText = text;
- }
- const QString& defaultText() const
- {
- return m_defaultText;
- }
+ const QString& text() const;
+
+ void setDefaultText(const QString& text);
+ const QString& defaultText() const;
// TODO: maybe a better approach is possible with the size hint
void setMinimumTextHeight(int min);
- int minimumTextHeight() const
- {
- return m_minTextHeight;
- }
+ int minimumTextHeight() const;
/**
* Returns the gap of the width of the current set text to the
@@ -161,4 +147,29 @@ private:
}
};
+inline DolphinStatusBar::Type StatusBarMessageLabel::type() const
+{
+ return m_type;
+}
+
+inline const QString& StatusBarMessageLabel::text() const
+{
+ return m_text;
+}
+
+inline void StatusBarMessageLabel::setDefaultText(const QString& text)
+{
+ m_defaultText = text;
+}
+
+inline const QString& StatusBarMessageLabel::defaultText() const
+{
+ return m_defaultText;
+}
+
+inline int StatusBarMessageLabel::minimumTextHeight() const
+{
+ return m_minTextHeight;
+}
+
#endif