From a538162b8b9c437ccd0f47bdb042317914118c6d Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Sun, 18 Dec 2016 14:31:14 +0100 Subject: vcl: separate ImplImageTree - ImageTree singleton and public iface MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Tested-by: Tomaž Vajngerl (cherry picked from commit bf5f6df9e47bd31dc052c6411f6f88ec2d4e3cea) Reviewed-on: https://gerrit.libreoffice.org/32165 --- ucb/source/ucp/image/ucpimage.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ucb') diff --git a/ucb/source/ucp/image/ucpimage.cxx b/ucb/source/ucp/image/ucpimage.cxx index fb3acff4e4ae..723e7a22aaf0 100644 --- a/ucb/source/ucp/image/ucpimage.cxx +++ b/ucb/source/ucp/image/ucpimage.cxx @@ -20,13 +20,13 @@ #include #include #include -#include +#include #include #include // A LO-private ("implementation detail") UCP used to access images from help // content, with theme fallback and localization support as provided by VCL's -// ImplImageTree. +// ImageTree. // // The URL scheme is // @@ -133,7 +133,7 @@ private: OUString newUrl; { SolarMutexGuard g; - newUrl = ImplImageTree::get().getImageUrl(decPath, auth, lang); + newUrl = ImageTree::get().getImageUrl(decPath, auth, lang); } ucbhelper::Content content; return -- cgit