diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-14 09:51:34 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-14 14:22:24 +0200 |
commit | a42554c36cd1ede28960ee04e83f4697c297f51c (patch) | |
tree | 6af6be8fec8984b270972dda25729950e0af54b7 | |
parent | 712b5e0b69aa9ab94c3ace93fc65435150f1dafa (diff) |
remove unused Video from SgaObjKind enum
Change-Id: I10c712f7be1247055f7bd28b25fdd6950da9d50b
-rw-r--r-- | include/svx/galmisc.hxx | 1 | ||||
-rw-r--r-- | svx/source/unogallery/unogalitem.cxx | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/include/svx/galmisc.hxx b/include/svx/galmisc.hxx index 6d86a86b0323..98e908bab515 100644 --- a/include/svx/galmisc.hxx +++ b/include/svx/galmisc.hxx @@ -55,7 +55,6 @@ enum class SgaObjKind NONE = 0, // abstract object Bitmap = 1, // bitmap object Sound = 2, // sound object - Video = 3, // video object Animation = 4, // animation object SvDraw = 5, // Svdraw object Inet = 6 // graphics from the internet diff --git a/svx/source/unogallery/unogalitem.cxx b/svx/source/unogallery/unogalitem.cxx index aebe96aaabb4..a696df7eb5b2 100644 --- a/svx/source/unogallery/unogalitem.cxx +++ b/svx/source/unogallery/unogalitem.cxx @@ -161,7 +161,6 @@ sal_Int8 SAL_CALL GalleryItem::getType() switch( implGetObject()->eObjKind ) { case SgaObjKind::Sound: - case SgaObjKind::Video: nRet = gallery::GalleryItemType::MEDIA; break; |