diff options
author | Yoann Laissus <yoann.laissus@gmail.com> | 2012-01-06 21:41:28 +0100 |
---|---|---|
committer | Yoann Laissus <yoann.laissus@gmail.com> | 2012-01-06 21:41:28 +0100 |
commit | 32be794fba23d9045116cfc6ae0a69c308201fdc (patch) | |
tree | 3c34de3b6fd56a02d72b033f865e59245b0efdf4 /src/urlbar/bookmarkwidget.h | |
parent | CMakeLists.txt fix. (diff) | |
download | rekonq-32be794fba23d9045116cfc6ae0a69c308201fdc.tar.xz |
Add a folder combo box in the BookmarkWidget
Patch from Yusuf Amir Tezcan, many thanks for !
REVIEW: 103450
Diffstat (limited to 'src/urlbar/bookmarkwidget.h')
-rw-r--r-- | src/urlbar/bookmarkwidget.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/urlbar/bookmarkwidget.h b/src/urlbar/bookmarkwidget.h index e294bf1b..025077c7 100644 --- a/src/urlbar/bookmarkwidget.h +++ b/src/urlbar/bookmarkwidget.h @@ -33,6 +33,7 @@ // Forward Declarations class KBookmark; class KLineEdit; +class KComboBox; class BookmarkWidget : public QMenu @@ -55,6 +56,9 @@ private Q_SLOTS: private: KBookmark *m_bookmark; KLineEdit *m_name; + KComboBox *m_folder; + + void setupFolderComboBox(); }; #endif // BOOKMARKWIDGET_H |