diff options
author | Tor Lillqvist <tml@collabora.com> | 2017-02-20 19:22:47 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2017-02-20 22:00:29 +0200 |
commit | c87cc416609e2283d5059d8d1c317211871ddfa6 (patch) | |
tree | d591ce7d214f7edc88847eb9ab6d6f249ddb9458 | |
parent | 2f6d2c0c47ebfd1b98f9610aec99566fe3a1a982 (diff) |
Use AUTOLAYOUT_TITLE_2CONTENT instead of "deprecated" AUTOLAYOUT_2TEXT
Change-Id: I8897e31065f69b7fb62f0770e62025f35ecb5eec
-rw-r--r-- | include/xmloff/autolayout.hxx | 1 | ||||
-rw-r--r-- | sd/source/core/sdpage.cxx | 2 | ||||
-rw-r--r-- | sd/source/filter/ppt/pptin.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/controller/slidelayoutcontroller.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/sidebar/LayoutMenu.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/draw/sdxmlexp.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/draw/ximpstyl.cxx | 2 |
7 files changed, 7 insertions, 8 deletions
diff --git a/include/xmloff/autolayout.hxx b/include/xmloff/autolayout.hxx index 83c8c5307be9..7376e7de0252 100644 --- a/include/xmloff/autolayout.hxx +++ b/include/xmloff/autolayout.hxx @@ -43,7 +43,6 @@ enum AutoLayout // deprecated AUTOLAYOUT_CHART = 2, - AUTOLAYOUT_2TEXT = 3, AUTOLAYOUT_TEXTCHART = 4, AUTOLAYOUT_ORG = 5, AUTOLAYOUT_TEXTCLIP = 6, diff --git a/sd/source/core/sdpage.cxx b/sd/source/core/sdpage.cxx index 6ce90c921e50..9c410644dd49 100644 --- a/sd/source/core/sdpage.cxx +++ b/sd/source/core/sdpage.cxx @@ -1204,7 +1204,7 @@ static const LayoutDescriptor& GetLayoutDescriptor( AutoLayout eLayout ) LayoutDescriptor( PRESOBJ_TITLE, PRESOBJ_TEXT ), // AUTOLAYOUT_TITLE LayoutDescriptor( PRESOBJ_TITLE, PRESOBJ_OUTLINE ), // AUTOLAYOUT_TITLE_CONTENT LayoutDescriptor( PRESOBJ_TITLE, PRESOBJ_OUTLINE ), // AUTOLAYOUT_CHART - LayoutDescriptor( PRESOBJ_TITLE, PRESOBJ_OUTLINE, PRESOBJ_OUTLINE ), // AUTOLAYOUT_2TEXT + LayoutDescriptor( PRESOBJ_TITLE, PRESOBJ_OUTLINE, PRESOBJ_OUTLINE ), // AUTOLAYOUT_TITLE_2CONTENT LayoutDescriptor( PRESOBJ_TITLE, PRESOBJ_OUTLINE, PRESOBJ_OUTLINE ), // AUTOLAYOUT_TEXTCHART LayoutDescriptor( PRESOBJ_TITLE, PRESOBJ_OUTLINE ), // AUTOLAYOUT_ORG LayoutDescriptor( PRESOBJ_TITLE, PRESOBJ_OUTLINE, PRESOBJ_OUTLINE ), // AUTOLAYOUT_TEXTCLbIP diff --git a/sd/source/filter/ppt/pptin.cxx b/sd/source/filter/ppt/pptin.cxx index 58917360fcc2..0051df01a07d 100644 --- a/sd/source/filter/ppt/pptin.cxx +++ b/sd/source/filter/ppt/pptin.cxx @@ -1124,7 +1124,7 @@ bool ImplSdPPTImport::Import() case PptSlideLayout::TWOCOLUMNSANDTITLE : { - eAutoLayout = AUTOLAYOUT_2TEXT; + eAutoLayout = AUTOLAYOUT_TITLE_2CONTENT; PptPlaceholder nID1 = pSlideLayout->aPlaceholderId[ 1 ]; PptPlaceholder nID2 = pSlideLayout->aPlaceholderId[ 2 ]; if ( nID1 == PptPlaceholder::BODY && nID2 == PptPlaceholder::GRAPH ) @@ -1150,7 +1150,7 @@ bool ImplSdPPTImport::Import() case PptSlideLayout::TWOROWSANDTITLE : { - eAutoLayout = AUTOLAYOUT_2TEXT; + eAutoLayout = AUTOLAYOUT_TITLE_2CONTENT; PptPlaceholder nID1 = pSlideLayout->aPlaceholderId[ 1 ]; PptPlaceholder nID2 = pSlideLayout->aPlaceholderId[ 2 ]; if ( nID1 == PptPlaceholder::BODY && nID2 == PptPlaceholder::OBJECT ) diff --git a/sd/source/ui/controller/slidelayoutcontroller.cxx b/sd/source/ui/controller/slidelayoutcontroller.cxx index 9ecadb06b796..1c6f85f2291b 100644 --- a/sd/source/ui/controller/slidelayoutcontroller.cxx +++ b/sd/source/ui/controller/slidelayoutcontroller.cxx @@ -108,7 +108,7 @@ static const snewfoil_value_info_layout standard[] = {BMP_LAYOUT_EMPTY, STR_AUTOLAYOUT_NONE, AUTOLAYOUT_NONE }, {BMP_LAYOUT_HEAD03, STR_AUTOLAYOUT_TITLE, AUTOLAYOUT_TITLE }, {BMP_LAYOUT_HEAD02, STR_AUTOLAYOUT_CONTENT, AUTOLAYOUT_TITLE_CONTENT }, - {BMP_LAYOUT_HEAD02A, STR_AUTOLAYOUT_2CONTENT, AUTOLAYOUT_2TEXT }, + {BMP_LAYOUT_HEAD02A, STR_AUTOLAYOUT_2CONTENT, AUTOLAYOUT_TITLE_2CONTENT }, {BMP_LAYOUT_HEAD01, STR_AUTOLAYOUT_ONLY_TITLE, AUTOLAYOUT_ONLY_TITLE }, {BMP_LAYOUT_TEXTONLY, STR_AUTOLAYOUT_ONLY_TEXT, AUTOLAYOUT_ONLY_TEXT }, {BMP_LAYOUT_HEAD03B, STR_AUTOLAYOUT_2CONTENT_CONTENT, AUTOLAYOUT_2OBJTEXT }, diff --git a/sd/source/ui/sidebar/LayoutMenu.cxx b/sd/source/ui/sidebar/LayoutMenu.cxx index 41230a57da72..29f072cc00a8 100644 --- a/sd/source/ui/sidebar/LayoutMenu.cxx +++ b/sd/source/ui/sidebar/LayoutMenu.cxx @@ -102,7 +102,7 @@ static const snewfoil_value_info standard[] = {BMP_LAYOUT_EMPTY, STR_AUTOLAYOUT_NONE, WritingMode_LR_TB, AUTOLAYOUT_NONE}, {BMP_LAYOUT_HEAD03, STR_AUTOLAYOUT_TITLE, WritingMode_LR_TB, AUTOLAYOUT_TITLE}, {BMP_LAYOUT_HEAD02, STR_AUTOLAYOUT_CONTENT, WritingMode_LR_TB, AUTOLAYOUT_TITLE_CONTENT}, - {BMP_LAYOUT_HEAD02A, STR_AUTOLAYOUT_2CONTENT, WritingMode_LR_TB, AUTOLAYOUT_2TEXT}, + {BMP_LAYOUT_HEAD02A, STR_AUTOLAYOUT_2CONTENT, WritingMode_LR_TB, AUTOLAYOUT_TITLE_2CONTENT}, {BMP_LAYOUT_HEAD01, STR_AUTOLAYOUT_ONLY_TITLE, WritingMode_LR_TB, AUTOLAYOUT_ONLY_TITLE}, {BMP_LAYOUT_TEXTONLY, STR_AUTOLAYOUT_ONLY_TEXT, WritingMode_LR_TB, AUTOLAYOUT_ONLY_TEXT}, {BMP_LAYOUT_HEAD03B, STR_AUTOLAYOUT_2CONTENT_CONTENT, WritingMode_LR_TB, AUTOLAYOUT_2OBJTEXT}, diff --git a/xmloff/source/draw/sdxmlexp.cxx b/xmloff/source/draw/sdxmlexp.cxx index bbb61cbb6006..f1444093347d 100644 --- a/xmloff/source/draw/sdxmlexp.cxx +++ b/xmloff/source/draw/sdxmlexp.cxx @@ -816,7 +816,7 @@ void SdXMLExport::ImpWriteAutoLayoutInfos() ImpWriteAutoLayoutPlaceholder(XmlPlaceholderChart, pInfo->GetPresRectangle()); break; } - case 3 : // AUTOLAYOUT_2TEXT + case AUTOLAYOUT_TITLE_2CONTENT : { Rectangle aLeft(pInfo->GetPresRectangle()); aLeft.setWidth(long(aLeft.GetWidth() * 0.488)); diff --git a/xmloff/source/draw/ximpstyl.cxx b/xmloff/source/draw/ximpstyl.cxx index 7f2f1d89ba66..a723dbd589bb 100644 --- a/xmloff/source/draw/ximpstyl.cxx +++ b/xmloff/source/draw/ximpstyl.cxx @@ -566,7 +566,7 @@ void SdXMLPresentationPageLayoutContext::EndElement() { if( pObj2->GetName() == "outline" ) { - mnTypeId = 3; // AUTOLAYOUT_2TEXT + mnTypeId = AUTOLAYOUT_TITLE_2CONTENT; } else if( pObj2->GetName() == "chart" ) { |