summaryrefslogtreecommitdiff
path: root/sfx2/source/notebookbar/DropdownBox.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/notebookbar/DropdownBox.hxx')
-rw-r--r--sfx2/source/notebookbar/DropdownBox.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/notebookbar/DropdownBox.hxx b/sfx2/source/notebookbar/DropdownBox.hxx
index 6a34ae6d7705..6cb62d4e2f93 100644
--- a/sfx2/source/notebookbar/DropdownBox.hxx
+++ b/sfx2/source/notebookbar/DropdownBox.hxx
@@ -28,8 +28,7 @@
#include <vcl/floatwin.hxx>
#include <vcl/toolbox.hxx>
#include <sfx2/tbxctrl.hxx>
-
-class Popup;
+#include "NotebookbarPopup.hxx"
class SFX2_DLLPUBLIC DropdownBox : public VclHBox,
public vcl::IPrioritable
@@ -37,7 +36,7 @@ class SFX2_DLLPUBLIC DropdownBox : public VclHBox,
private:
bool m_bInFullView;
VclPtr<PushButton> m_pButton;
- VclPtr<Popup> m_pPopup;
+ VclPtr<NotebookbarPopup> m_pPopup;
public:
explicit DropdownBox(vcl::Window *pParent);
@@ -46,6 +45,7 @@ public:
void HideContent() override;
void ShowContent() override;
+ bool IsHidden() override;
private:
DECL_LINK(PBClickHdl, Button*, void);