diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2013-11-23 15:31:00 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2013-11-23 15:31:15 +0100 |
commit | 0cd9d7feae1b32272a959f07099cc2ada8e3b391 (patch) | |
tree | 2eb0994967e55bc004753b814a5acf5937f78e01 /sw | |
parent | 86d3eb29a6ee5237b0f5bfcb9e7d7c8f5aa6ddd4 (diff) |
DocxAttributeOutput: vpt -> point
Change-Id: Ia99ea2db8956d6f329679d7a21f5e68290a1efda
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/docxattributeoutput.cxx | 2 | ||||
-rw-r--r-- | sw/source/filter/ww8/docxattributeoutput.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx index 6b02a078938b..21ca3c81d79f 100644 --- a/sw/source/filter/ww8/docxattributeoutput.cxx +++ b/sw/source/filter/ww8/docxattributeoutput.cxx @@ -3285,7 +3285,7 @@ void DocxAttributeOutput::WritePostponedVMLDrawing() it != m_postponedVMLDrawing->end(); ++it ) { - WriteVMLDrawing(it->object, *(it->frame), *(it->vpt)); + WriteVMLDrawing(it->object, *(it->frame), *(it->point)); } delete m_postponedVMLDrawing; m_postponedVMLDrawing = NULL; diff --git a/sw/source/filter/ww8/docxattributeoutput.hxx b/sw/source/filter/ww8/docxattributeoutput.hxx index 8ddfc14eb9e5..57d33e03bfae 100644 --- a/sw/source/filter/ww8/docxattributeoutput.hxx +++ b/sw/source/filter/ww8/docxattributeoutput.hxx @@ -744,10 +744,10 @@ private: struct PostponedVMLDrawing { - PostponedVMLDrawing( const SdrObject* sdrObj, const SwFrmFmt* frm, const Point* pt ) : object( sdrObj ), frame( frm ), vpt( pt ) {}; + PostponedVMLDrawing( const SdrObject* sdrObj, const SwFrmFmt* frm, const Point* pt ) : object( sdrObj ), frame( frm ), point( pt ) {}; const SdrObject* object; const SwFrmFmt* frame; - const Point* vpt; + const Point* point; }; std::list< PostponedVMLDrawing >* m_postponedVMLDrawing; |