summaryrefslogtreecommitdiffstats
path: root/vcl/inc/impimagetree.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-02-15 20:54:22 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-02-16 12:54:45 +0000
commit01a8bda416d1598f5486f95b6a57d61ff09873ed (patch)
treec37934d13308426d22599f63bf8666305a6b1f80 /vcl/inc/impimagetree.hxx
parentboost::foo_ptr->std::foo_ptr (diff)
downloadcore-01a8bda416d1598f5486f95b6a57d61ff09873ed.tar.gz
core-01a8bda416d1598f5486f95b6a57d61ff09873ed.zip
boost::noncopyable->'= delete'
Change-Id: If0f898a1e912fcd2095d8ba88b2b8046596e16ea
Diffstat (limited to 'vcl/inc/impimagetree.hxx')
-rw-r--r--vcl/inc/impimagetree.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/vcl/inc/impimagetree.hxx b/vcl/inc/impimagetree.hxx
index 4a5e3a6be5e7..807c69c0b63c 100644
--- a/vcl/inc/impimagetree.hxx
+++ b/vcl/inc/impimagetree.hxx
@@ -35,7 +35,7 @@ namespace com { namespace sun { namespace star { namespace container {
} } } }
class BitmapEx;
-class ImplImageTree: private boost::noncopyable {
+class ImplImageTree {
public:
ImplImageTree();
@@ -57,6 +57,9 @@ public:
css::uno::Reference< css::container::XNameAccess > getNameAccess();
private:
+ ImplImageTree(const ImplImageTree&) SAL_DELETED_FUNCTION;
+ ImplImageTree& operator=(const ImplImageTree&) SAL_DELETED_FUNCTION;
+
typedef std::unordered_map<OUString, std::pair<bool, BitmapEx>, OUStringHash> IconCache;
typedef std::unordered_map<OUString, OUString, OUStringHash> IconLinkHash;