Kaydet (Commit) 5ec304d3 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

ImplImageTree ctor/dtor can be private now

Change-Id: Idf43ef98ea41345595ffcfae8c74a50120107978
üst 7bac2a21
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment