[Libreoffice-commits] core.git: include/vcl
Stephan Bergmann
sbergman at redhat.com
Mon Oct 26 12:24:41 PDT 2015
include/vcl/implimagetree.hxx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit 5ec304d3f24b50290c4f456d329a4c017f45d2d5
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Mon Oct 26 20:24:16 2015 +0100
ImplImageTree ctor/dtor can be private now
Change-Id: Idf43ef98ea41345595ffcfae8c74a50120107978
diff --git a/include/vcl/implimagetree.hxx b/include/vcl/implimagetree.hxx
index ffab4a8..f0e1b57 100644
--- a/include/vcl/implimagetree.hxx
+++ b/include/vcl/implimagetree.hxx
@@ -40,10 +40,6 @@ class ImplImageTree {
public:
VCL_DLLPUBLIC static ImplImageTree & get();
- ImplImageTree();
-
- ~ImplImageTree();
-
VCL_DLLPUBLIC OUString getImageUrl(
OUString const & name, OUString const & style, OUString const & lang);
@@ -63,6 +59,10 @@ public:
css::uno::Reference< css::container::XNameAccess > getNameAccess();
private:
+ ImplImageTree();
+
+ ~ImplImageTree();
+
ImplImageTree(const ImplImageTree&) = delete;
ImplImageTree& operator=(const ImplImageTree&) = delete;
More information about the Libreoffice-commits
mailing list