diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2016-12-18 14:31:14 +0100 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2016-12-19 07:26:24 +0000 |
commit | bf5f6df9e47bd31dc052c6411f6f88ec2d4e3cea (patch) | |
tree | f573562af0d55e5cdb0bfe405db2967efd72d2e8 /vcl/source/gdi/bitmapex.cxx | |
parent | f9a97a5d5aca8473845bca2e17c5826b772b8f3c (diff) |
vcl: separate ImplImageTree - ImageTree singleton and public iface
ImplImageTree was used outside of VCL which is not consistent with
the name and the header also contains a lot of implementation
detail. This separates the implementation to ImplImageTree and
the public interface and singleton to ImageTree only.
Change-Id: I3a26444f0f6971a6b1d83472e9cef19c93192d3e
Reviewed-on: https://gerrit.libreoffice.org/32134
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'vcl/source/gdi/bitmapex.cxx')
-rw-r--r-- | vcl/source/gdi/bitmapex.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/gdi/bitmapex.cxx b/vcl/source/gdi/bitmapex.cxx index efd1ad5ca6f1..1743aa75ee27 100644 --- a/vcl/source/gdi/bitmapex.cxx +++ b/vcl/source/gdi/bitmapex.cxx @@ -25,7 +25,7 @@ #include <tools/stream.hxx> #include <tools/debug.hxx> #include <tools/rc.h> -#include <vcl/implimagetree.hxx> +#include <vcl/ImageTree.hxx> #include <vcl/salbtype.hxx> #include <vcl/outdev.hxx> #include <vcl/alpha.hxx> @@ -110,7 +110,7 @@ void BitmapEx::loadFromIconTheme( const OUString& rIconName ) { OUString aIconTheme = Application::GetSettings().GetStyleSettings().DetermineIconTheme(); - if( !ImplImageTree::get().loadImage( rIconName, aIconTheme, *this, true ) ) + if (!ImageTree::get().loadImage(rIconName, aIconTheme, *this, true)) { #ifdef DBG_UTIL OStringBuffer aErrorStr( |