diff options
author | David Tardon <dtardon@redhat.com> | 2013-03-02 07:00:16 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-03-03 09:28:25 +0100 |
commit | 09e2d7345addbcaad15e9ab5f8e5bca795bc8a67 (patch) | |
tree | d7ab439467d4620948a03f3458d6c9914a9cfd40 | |
parent | d221ae0092568e096f3850344a59ec27b4ea8efa (diff) |
don't want to include svl/solar.hrc in vcl
Change-Id: I811292ef0071e343b12fac4afb79156830272f82
-rw-r--r-- | vcl/source/filter/graphicfilter.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/source/filter/graphicfilter.cxx b/vcl/source/filter/graphicfilter.cxx index d51046294809..4ba099b7bb72 100644 --- a/vcl/source/filter/graphicfilter.cxx +++ b/vcl/source/filter/graphicfilter.cxx @@ -37,7 +37,6 @@ #include "jpeg/jpeg.hxx" #include "ixbm/xbmread.hxx" #include "ixpm/xpmread.hxx" -#include <svl/solar.hrc> #include "sgffilt.hxx" #include "osl/module.hxx" #include <com/sun/star/uno/Reference.h> @@ -2007,7 +2006,7 @@ sal_uInt16 GraphicFilter::ExportGraphic( const Graphic& rGraphic, const String& if( !aBmp.Convert( (BmpConversion) nColorRes ) ) aBmp = aGraphic.GetBitmap(); } - ResMgr* pResMgr = CREATERESMGR( svt ); + ResMgr* pResMgr = ResMgr::CreateResMgr( "svt" ); sal_Bool bRleCoding = aConfigItem.ReadBool( "RLE_Coding", sal_True ); // save RLE encoded? aBmp.Write( rOStm, bRleCoding ); |