diff options
author | Panagiotis Papadopoulos <pano_90@gmx.net> | 2010-12-08 17:27:44 +0100 |
---|---|---|
committer | Panagiotis Papadopoulos <pano_90@gmx.net> | 2010-12-08 17:27:44 +0100 |
commit | 55344f49d92409105d1339536de3172fe6c2b0c6 (patch) | |
tree | 83d6fa7992403a301208dddfeeb3e0cff57fe47e /src/zoombar.h | |
parent | SVN_SILENT made messages (.desktop file) (diff) | |
download | rekonq-55344f49d92409105d1339536de3172fe6c2b0c6.tar.xz |
merge first Google Code-In submission:
add the percentage of the website’s zoom to the zoombar
http://www.google-melange.com/gci/task/show/google/gci2010/kde/t129157984557
slightly changed the attached patch, (e.g. percentage -> m_percentage) as noted on the mailinglist
Diffstat (limited to 'src/zoombar.h')
-rw-r--r-- | src/zoombar.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/zoombar.h b/src/zoombar.h index d45aab19..533946f8 100644 --- a/src/zoombar.h +++ b/src/zoombar.h @@ -34,6 +34,7 @@ // Qt Includes #include <QtGui/QWidget> +#include <QLabel> // Forward Declarations class MainWindow; @@ -70,6 +71,7 @@ private: QToolButton *m_zoomOut; QToolButton *m_zoomNormal; QSlider *m_zoomSlider; + QLabel *m_percentage; }; #endif |