diff options
author | anfanite396 <dipamt1729@gmail.com> | 2023-03-17 21:00:19 +0530 |
---|---|---|
committer | Hossein <hossein@libreoffice.org> | 2023-05-11 10:35:53 +0200 |
commit | 35845a056e332c1d78d536b613aeb3183af09a91 (patch) | |
tree | bbf153ef7e5e085f9dc62494c1c182d4c2c424d2 /include/vcl/salnativewidgets.hxx | |
parent | 37232295b8800e6a5a82b5e8965dbb00e0c1417d (diff) |
tdf#97228 Move MenubarValue class to separate include file
Change-Id: I5da4bb1765f91d1f9d78e27221d243d5c2ef92e9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149076
Tested-by: Jenkins
Reviewed-by: Hossein <hossein@libreoffice.org>
Diffstat (limited to 'include/vcl/salnativewidgets.hxx')
-rw-r--r-- | include/vcl/salnativewidgets.hxx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/include/vcl/salnativewidgets.hxx b/include/vcl/salnativewidgets.hxx index 21c852b6acbd..907c3b618f88 100644 --- a/include/vcl/salnativewidgets.hxx +++ b/include/vcl/salnativewidgets.hxx @@ -446,24 +446,6 @@ class SAL_DLLPUBLIC_RTTI SpinbuttonValue final : public ImplControlValue SpinbuttonValue & operator =(SpinbuttonValue &&) = delete; // due to ImplControlValue }; -/* MenubarValue: - * - * Value container for menubars specifying height of adjacent docking area - */ -class MenubarValue final : public ImplControlValue -{ -public: - MenubarValue() : ImplControlValue( ControlType::Menubar, 0 ) - { maTopDockingAreaHeight=0; } - virtual ~MenubarValue() override; - virtual MenubarValue* clone() const override; - MenubarValue(MenubarValue const &) = default; - MenubarValue(MenubarValue &&) = default; - MenubarValue & operator =(MenubarValue const &) = delete; // due to ImplControlValue - MenubarValue & operator =(MenubarValue &&) = delete; // due to ImplControlValue - int maTopDockingAreaHeight; -}; - /* MenupopupValue: * * Value container for menu items; specifies the rectangle for the whole item which |