[Libreoffice-commits] core.git: sw/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Thu Oct 24 12:11:46 UTC 2019


 sw/source/filter/ww8/ww8par.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c1f60d7d113e29dd36c6dcf0d1b58cfd8912228a
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Oct 24 09:25:30 2019 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Oct 24 14:10:16 2019 +0200

    replace some numbers with sprm ids
    
    Change-Id: I85e6da89b18fe7cb76b3ae6d6d4871dce9d38fd4
    Reviewed-on: https://gerrit.libreoffice.org/81443
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx
index 5de49fadf67e..445744b2912a 100644
--- a/sw/source/filter/ww8/ww8par.cxx
+++ b/sw/source/filter/ww8/ww8par.cxx
@@ -2511,8 +2511,8 @@ bool SwWW8ImplReader::SetUpperSpacing(SwPaM &rMyPam, int nSpace)
 sal_uInt16 SwWW8ImplReader::TabRowSprm(int nLevel) const
 {
     if (m_bVer67)
-        return 25;
-    return nLevel ? 0x244C : 0x2417;
+        return NS_sprm::v6::sprmPTtp;
+    return nLevel ? NS_sprm::sprmPFInnerTtp : NS_sprm::sprmPFTtp;
 }
 
 void SwWW8ImplReader::EndSpecial()


More information about the Libreoffice-commits mailing list