summaryrefslogtreecommitdiff
path: root/svx/source/unogallery/unogalitem.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-24 09:59:39 +0200
committerNoel Grandin <noel@peralex.com>2016-08-25 08:40:00 +0200
commit47c4daf0d777771185823ac9367f2108e950d12e (patch)
treec4843f87fa5b604475916d3797e7e2c7c905082f /svx/source/unogallery/unogalitem.cxx
parentbd4526b557fe787b3826ddf46bf8009fb45e05e6 (diff)
convert SgaObjKind to scoped enum
Change-Id: I1bc1244646db661f181d4224d81f12d613976362
Diffstat (limited to 'svx/source/unogallery/unogalitem.cxx')
-rw-r--r--svx/source/unogallery/unogalitem.cxx6
1 files changed, 3 insertions, 3 deletions
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;