diff options
author | László Németh <nemeth@numbertext.org> | 2013-06-12 11:22:27 +0200 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2013-06-12 11:22:27 +0200 |
commit | 67bb43c8ccc3270bd1a0dbf4300e39ec2e9f296b (patch) | |
tree | 1e81cf745a4156b8fd8e169f7de8b37d032568ec /sw | |
parent | f7f7900e642befe082d930c6db55bf3fc2409230 (diff) |
fdo#65666 keep tab characters in footnote settings (Begin/After)
Change-Id: I3fbd0f2dea5926981c0cd351c3235f6b61e66aaa
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/misc/docfnote.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/ui/misc/docfnote.cxx b/sw/source/ui/misc/docfnote.cxx index e5547ad5807c..e515491ad19b 100644 --- a/sw/source/ui/misc/docfnote.cxx +++ b/sw/source/ui/misc/docfnote.cxx @@ -157,8 +157,8 @@ void SwEndNoteOptionPage::Reset( const SfxItemSet& ) // art m_pNumViewBox->SelectNumberingType( pInf->aFmt.GetNumberingType()); m_pOffsetFld->SetValue(pInf->nFtnOffset + 1); - m_pPrefixED->SetText(pInf->GetPrefix()); - m_pSuffixED->SetText(pInf->GetSuffix()); + m_pPrefixED->SetText(pInf->GetPrefix().replaceAll("\t", "\\t")); // fdo#65666 + m_pSuffixED->SetText(pInf->GetSuffix().replaceAll("\t", "\\t")); const SwCharFmt* pCharFmt = pInf->GetCharFmt( *pSh->GetView().GetDocShell()->GetDoc()); @@ -363,8 +363,8 @@ sal_Bool SwEndNoteOptionPage::FillItemSet( SfxItemSet & ) pInf->nFtnOffset = static_cast< sal_uInt16 >(m_pOffsetFld->GetValue() -1); pInf->aFmt.SetNumberingType(m_pNumViewBox->GetSelectedNumberingType() ); - pInf->SetPrefix(m_pPrefixED->GetText()); - pInf->SetSuffix(m_pSuffixED->GetText()); + pInf->SetPrefix(m_pPrefixED->GetText().replaceAll("\\t", "\t")); + pInf->SetSuffix(m_pSuffixED->GetText().replaceAll("\\t", "\t")); pInf->SetCharFmt( lcl_GetCharFormat( pSh, m_pFtnCharTextTemplBox->GetSelectEntry() ) ); |