diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-28 14:09:59 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-29 10:41:40 +0200 |
commit | 5d96ccd0ab9d315aea85b4630f85feb29d2aa14a (patch) | |
tree | 34e124d8ba35b503e4091d646e672223b44a773a /include/svx/svxdlg.hxx | |
parent | 468446b7fd4c547ee3f090366e886c212657bcd1 (diff) |
convert ZOOMBTN constants to scoped enum
Change-Id: Ia7641f736fa4f84dce0b5ea8bf68339c1309e74b
Diffstat (limited to 'include/svx/svxdlg.hxx')
-rw-r--r-- | include/svx/svxdlg.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/svx/svxdlg.hxx b/include/svx/svxdlg.hxx index 87ada7aa6c11..1854f0248988 100644 --- a/include/svx/svxdlg.hxx +++ b/include/svx/svxdlg.hxx @@ -20,6 +20,7 @@ #define INCLUDED_SVX_SVXDLG_HXX #include <sfx2/sfxdlg.hxx> +#include <svx/zoom_def.hxx> #include <editeng/edtdlg.hxx> class SdrModel; @@ -76,7 +77,7 @@ class AbstractSvxZoomDialog : public VclAbstractDialog { public: virtual void SetLimits( sal_uInt16 nMin, sal_uInt16 nMax ) = 0; - virtual void HideButton( sal_uInt16 nBtnId )= 0; + virtual void HideButton( ZoomButtonId nBtnId )= 0; virtual const SfxItemSet* GetOutputItemSet() const = 0 ; }; |