diff options
author | Pavel Kysilka <goldenfish@linuxsoft.cz> | 2012-06-25 20:45:19 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2012-07-02 09:55:28 +0200 |
commit | f1b510f2dd55e8e0b1b6be0e9a0d6e215e123498 (patch) | |
tree | 5770bb0f65cceef0a2a63002cbf2b5a88078f73e | |
parent | cb34f044ce09d6b03620941d5882c3625a36b69c (diff) |
implement RTF_DPELLIPSE
Change-Id: Icb531e05f84c8ce7e79a15113102113be3609f45
-rw-r--r-- | writerfilter/source/rtftok/rtfdocumentimpl.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx b/writerfilter/source/rtftok/rtfdocumentimpl.cxx index afd7350576d9..6b171ae2d0eb 100644 --- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx +++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx @@ -2080,6 +2080,7 @@ int RTFDocumentImpl::dispatchFlag(RTFKeyword nKeyword) case RTF_DPLINE: case RTF_DPRECT: + case RTF_DPELLIPSE: { sal_Int32 nType = 0; switch (nKeyword) @@ -2090,6 +2091,9 @@ int RTFDocumentImpl::dispatchFlag(RTFKeyword nKeyword) case RTF_DPRECT: nType = ESCHER_ShpInst_Rectangle; break; + case RTF_DPELLIPSE: + nType = ESCHER_ShpInst_Ellipse; + break; default: break; } |