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

Adam Co rattles2013 at gmail.com
Thu Dec 19 05:53:16 PST 2013


 sw/source/filter/ww8/attributeoutputbase.hxx |    2 +-
 sw/source/filter/ww8/wrtw8nds.cxx            |    2 +-
 sw/source/filter/ww8/ww8atr.cxx              |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 7590adfa18c671193f2e5497545f2f4cd62039bc
Author: Adam Co <rattles2013 at gmail.com>
Date:   Wed Dec 18 11:46:53 2013 +0200

    Renaming function from 'IsFoo' to 'GetFoo'
    
    Change-Id: If4b4de730a5bc1825ddd1430fe68a31eb423bf50
    Reviewed-on: https://gerrit.libreoffice.org/7127
    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/attributeoutputbase.hxx b/sw/source/filter/ww8/attributeoutputbase.hxx
index 73ec4fb..06ef068 100644
--- a/sw/source/filter/ww8/attributeoutputbase.hxx
+++ b/sw/source/filter/ww8/attributeoutputbase.hxx
@@ -636,7 +636,7 @@ public:
     virtual void BulletDefinition(int /*nId*/, const Graphic& /*rGraphic*/, Size /*aSize*/) {}
 
     // Returns whether or not the 'SwTxtNode' has a paragraph marker deleted (using 'track changes')
-    virtual const SwRedlineData* IsParagraphMarkerDeleted( const SwTxtNode& rNode );
+    virtual const SwRedlineData* GetDeletedParagraphMarker( const SwTxtNode& rNode );
 
 };
 
diff --git a/sw/source/filter/ww8/wrtw8nds.cxx b/sw/source/filter/ww8/wrtw8nds.cxx
index 718d9c0..a8bd186 100644
--- a/sw/source/filter/ww8/wrtw8nds.cxx
+++ b/sw/source/filter/ww8/wrtw8nds.cxx
@@ -2427,7 +2427,7 @@ void MSWordExportBase::OutputTextNode( const SwTxtNode& rNode )
         }
     }
 
-    const SwRedlineData* pRedlineParagraphMarkerDeleted = AttrOutput().IsParagraphMarkerDeleted( rNode );
+    const SwRedlineData* pRedlineParagraphMarkerDeleted = AttrOutput().GetDeletedParagraphMarker( rNode );
     const SwRedlineData* pParagraphRedlineData = aAttrIter.GetParagraphLevelRedline( );
     AttrOutput().EndParagraphProperties( pParagraphRedlineData, pRedlineParagraphMarkerDeleted );
 
diff --git a/sw/source/filter/ww8/ww8atr.cxx b/sw/source/filter/ww8/ww8atr.cxx
index 5561866..c2f3d58 100644
--- a/sw/source/filter/ww8/ww8atr.cxx
+++ b/sw/source/filter/ww8/ww8atr.cxx
@@ -5389,7 +5389,7 @@ void AttributeOutputBase::FormatCharBorder( const SvxBoxItem& rBox )
  * - Start = the last character of the current paragraph
  * - End = the first character of the next paragraph
  */
-const SwRedlineData* AttributeOutputBase::IsParagraphMarkerDeleted( const SwTxtNode& rNode )
+const SwRedlineData* AttributeOutputBase::GetDeletedParagraphMarker( const SwTxtNode& rNode )
 {
     // ToDo : this is not the most ideal ... should start maybe from 'nCurRedlinePos'
     for( sal_uInt16 nRedlinePos = 0; nRedlinePos < GetExport().pDoc->GetRedlineTbl().size(); ++nRedlinePos )


More information about the Libreoffice-commits mailing list