From 47c4daf0d777771185823ac9367f2108e950d12e Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 24 Aug 2016 09:59:39 +0200 Subject: convert SgaObjKind to scoped enum Change-Id: I1bc1244646db661f181d4224d81f12d613976362 --- svx/source/unogallery/unogalitem.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'svx/source/unogallery/unogalitem.cxx') diff --git a/svx/source/unogallery/unogalitem.cxx b/svx/source/unogallery/unogalitem.cxx index af4a2507ad7d..1c4fcf4b91f1 100644 --- a/svx/source/unogallery/unogalitem.cxx +++ b/svx/source/unogallery/unogalitem.cxx @@ -182,12 +182,12 @@ sal_Int8 SAL_CALL GalleryItem::getType() { switch( implGetObject()->eObjKind ) { - case SGA_OBJ_SOUND: - case SGA_OBJ_VIDEO: + case SgaObjKind::Sound: + case SgaObjKind::Video: nRet = gallery::GalleryItemType::MEDIA; break; - case SGA_OBJ_SVDRAW: + case SgaObjKind::SvDraw: nRet = gallery::GalleryItemType::DRAWING; break; -- cgit