diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2017-03-09 13:08:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-13 08:38:33 +0000 |
commit | 7c0e3d0b37131b12262d0f610505b3384923c4a1 (patch) | |
tree | 572046e375af0e25864ff2e155a0fa0226bd4ca7 /include/svx | |
parent | 25ea809f5b4548ff887aa4bb10bbf7b2fe86aedb (diff) |
convert GraphicDrawMode to scoped enum
Change-Id: I18eec89c4e1ebb86d64297e7cef4b36bf12df59f
Reviewed-on: https://gerrit.libreoffice.org/35004
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/sdgmoitm.hxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/svx/sdgmoitm.hxx b/include/svx/sdgmoitm.hxx index 3d38fb107a17..2ff3c6e0fcc9 100644 --- a/include/svx/sdgmoitm.hxx +++ b/include/svx/sdgmoitm.hxx @@ -26,13 +26,10 @@ #include <svx/svxdllapi.h> -// SdrGrafModeItem - - - class SVX_DLLPUBLIC SdrGrafModeItem : public SfxEnumItem<GraphicDrawMode> { public: - SdrGrafModeItem( GraphicDrawMode eMode = GRAPHICDRAWMODE_STANDARD ) : SfxEnumItem( SDRATTR_GRAFMODE, eMode ) {} + SdrGrafModeItem( GraphicDrawMode eMode = GraphicDrawMode::Standard ) : SfxEnumItem( SDRATTR_GRAFMODE, eMode ) {} SdrGrafModeItem( SvStream& rIn ) : SfxEnumItem( SDRATTR_GRAFMODE, rIn ) {} virtual SfxPoolItem* Clone( SfxItemPool* pPool = nullptr ) const override; |