diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2013-11-15 11:42:24 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2013-11-15 11:53:33 +0100 |
commit | 66bd352d3a5516404cfc16f9a760655744a39949 (patch) | |
tree | 5fcfeac715f35dfc90722ebac647119b3a726196 /sw | |
parent | 2e63bf23c29abd7a3b32902ee3acb889d8c04f35 (diff) |
SwDoc::GetTxtCollFromPool: fix Footnote paragraph style
Commit 5cf62a6ab450c25eb07a1ec08c857f17f674ef67 (First modification on
the default template for the Writer, 2013-11-04) probably wanted to
ensure that the footnote field (which is usually just a number) is
superscript, but instead it modified the footnote itself. Having the
footnote text itself as superscript doesn't make sense by default.
Change-Id: Ic990d0afca356c2723eee0764b86b9c8c57c14b7
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/doc/poolfmt.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sw/source/core/doc/poolfmt.cxx b/sw/source/core/doc/poolfmt.cxx index 925aa21076cd..4c9f98224450 100644 --- a/sw/source/core/doc/poolfmt.cxx +++ b/sw/source/core/doc/poolfmt.cxx @@ -555,7 +555,6 @@ SwTxtFmtColl* SwDoc::GetTxtCollFromPool( sal_uInt16 nId, bool bRegardLanguage ) break; case RES_POOLCOLL_FOOTNOTE: // paragraph style Footnote - aSet.Put( SvxEscapementItem( DFLT_ESC_AUTO_SUPER, 58, RES_CHRATR_ESCAPEMENT ) ); case RES_POOLCOLL_ENDNOTE: // paragraph style Endnote { SvxLRSpaceItem aLR( RES_LR_SPACE ); |