diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-08-14 10:28:36 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-08-14 11:17:26 -0400 |
commit | af246f94554e646880ffcdfc83f6163fdff1fef5 (patch) | |
tree | ab1ac66d09861e298d551d81e1b6497d2b6a6334 /include/editeng | |
parent | e12d21fee9471ca1c4546b23df475aa39c953e13 (diff) |
Apply a simple pimpl idiom and rename the old Impl to make it non-Impl.
The old Impl instance is ref-counted, which I'd like to convert to using
boost::intrusive_ptr. But to make it happen, we need to really hide this
from public header...
Change-Id: I1f1e9e500f2112eea04e3e6d661a7dfa74655c62
Diffstat (limited to 'include/editeng')
-rw-r--r-- | include/editeng/outlobj.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/editeng/outlobj.hxx b/include/editeng/outlobj.hxx index 4464bf3fe29b..c57397e8cc02 100644 --- a/include/editeng/outlobj.hxx +++ b/include/editeng/outlobj.hxx @@ -26,12 +26,11 @@ #include <rsc/rscsfx.hxx> class EditTextObject; -class ImplOutlinerParaObject; class EDITENG_DLLPUBLIC OutlinerParaObject { -private: - ImplOutlinerParaObject* mpImplOutlinerParaObject; + struct Impl; + Impl* mpImpl; void ImplMakeUnique(); |