diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-10-31 13:36:29 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-10-31 16:00:34 -0400 |
commit | b4599944f2743b9f82c9ef09e28a84b4004ab3c8 (patch) | |
tree | f33d66d6ab8c4fe9d3a9335649ee281774f55b60 /svtools | |
parent | 388ec32d79616bbb9a69f67dea0bad1751d46f48 (diff) |
Make SvTreeList non-copyable.
Change-Id: I9bb589e8a349a1404f9c09a60a82e824918744fa
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/inc/svtools/treelist.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/svtools/inc/svtools/treelist.hxx b/svtools/inc/svtools/treelist.hxx index 9b96506774d0..1473dffe446f 100644 --- a/svtools/inc/svtools/treelist.hxx +++ b/svtools/inc/svtools/treelist.hxx @@ -191,6 +191,9 @@ class SVT_DLLPUBLIC SvTreeList SVT_DLLPRIVATE void ResortChildren( SvTreeListEntry* pParent ); + SvTreeList(const SvTreeList&); // disabled + SvTreeList& operator= (const SvTreeList&); // disabled + protected: SvTreeListEntry* pRootItem; |