diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-22 15:54:06 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-29 10:41:38 +0200 |
commit | 445b34fb9a882bd04fb53eb629ea246ce02b21aa (patch) | |
tree | bc0f8b469fcb64ac3eaeb8781a369d081af5798b /svx/source/gallery2/galobj.cxx | |
parent | ab1b535fb049f4b6354561e60eb027b4cc691a6c (diff) |
convert SGX_IMPORT constants to scoped enum
Change-Id: I5c80b8b762682bc666761710039b3b57bb3d579d
Diffstat (limited to 'svx/source/gallery2/galobj.cxx')
-rw-r--r-- | svx/source/gallery2/galobj.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/gallery2/galobj.cxx b/svx/source/gallery2/galobj.cxx index 873bbdab54c8..9e300ec629ab 100644 --- a/svx/source/gallery2/galobj.cxx +++ b/svx/source/gallery2/galobj.cxx @@ -278,7 +278,7 @@ SgaObjectBmp::SgaObjectBmp( const INetURLObject& rURL ) Graphic aGraphic; OUString aFilter; - if ( SGA_IMPORT_NONE != GalleryGraphicImport( rURL, aGraphic, aFilter ) ) + if ( GalleryGraphicImportRet::NONE != GalleryGraphicImport( rURL, aGraphic, aFilter ) ) Init( aGraphic, rURL ); } |