summaryrefslogtreecommitdiff
path: root/editeng/source/editeng/fieldupdater.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-01-08 15:33:56 -0500
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-01-08 21:03:51 -0500
commit4da3a0108468a3e7fd4aae32129b9c0fbe4635a4 (patch)
tree5ca80448d1228875c0a3c71d0d6fe39153e7792e /editeng/source/editeng/fieldupdater.cxx
parent678de8255795e7f3b654bf2022da26a4fdb48775 (diff)
Turn EditTextObjectImpl into a real impl class.
Change-Id: I0f0bba62da60a3397b733253dbc0891c69bd5b9c
Diffstat (limited to 'editeng/source/editeng/fieldupdater.cxx')
-rw-r--r--editeng/source/editeng/fieldupdater.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/editeng/fieldupdater.cxx b/editeng/source/editeng/fieldupdater.cxx
index 2a383f818e8f..95dfc8d0dc18 100644
--- a/editeng/source/editeng/fieldupdater.cxx
+++ b/editeng/source/editeng/fieldupdater.cxx
@@ -40,7 +40,7 @@ class FieldUpdaterImpl
{
EditTextObjectImpl& mrObj;
public:
- FieldUpdaterImpl(EditTextObject& rObj) : mrObj(static_cast<EditTextObjectImpl&>(rObj)) {}
+ FieldUpdaterImpl(EditTextObject& rObj) : mrObj(*rObj.mpImpl) {}
FieldUpdaterImpl(const FieldUpdaterImpl& r) : mrObj(r.mrObj) {}
void updateTableFields(int nTab)