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

Adam Co rattles2013 at gmail.com
Wed Feb 12 01:46:26 PST 2014


 sw/inc/unocrsrhelper.hxx                 |    2 +-
 sw/source/core/unocore/unocrsrhelper.cxx |    2 +-
 sw/source/core/unocore/unotbl.cxx        |    4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit c90bc80feee6283ed6d5d3eb5edbbb3f7199ccb4
Author: Adam Co <rattles2013 at gmail.com>
Date:   Wed Feb 5 13:43:56 2014 +0200

    Rename 'makeTableRedline' to 'makeTableRowRedline'
    
    Change-Id: I257ef3cc360c74fb83c65e4be9967e9f84ba9af3
    Reviewed-on: https://gerrit.libreoffice.org/7874
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>
    Tested-by: Miklos Vajna <vmiklos at collabora.co.uk>

diff --git a/sw/inc/unocrsrhelper.hxx b/sw/inc/unocrsrhelper.hxx
index b50e372..4515e7d 100644
--- a/sw/inc/unocrsrhelper.hxx
+++ b/sw/inc/unocrsrhelper.hxx
@@ -121,7 +121,7 @@ namespace SwUnoCursorHelper
             const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& RedlineProperties )
                 throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
 
-    void    makeTableRedline( SwTableLine& rTableLine, const OUString& RedlineType,
+    void    makeTableRowRedline( SwTableLine& rTableLine, const OUString& RedlineType,
             const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& RedlineProperties )
                 throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
 
diff --git a/sw/source/core/unocore/unocrsrhelper.cxx b/sw/source/core/unocore/unocrsrhelper.cxx
index 116b8b4..bbbb640 100644
--- a/sw/source/core/unocore/unocrsrhelper.cxx
+++ b/sw/source/core/unocore/unocrsrhelper.cxx
@@ -1292,7 +1292,7 @@ void makeRedline( SwPaM& rPaM,
         throw lang::IllegalArgumentException();
 }
 
-void makeTableRedline( SwTableLine& rTableLine,
+void makeTableRowRedline( SwTableLine& rTableLine,
     const OUString& rRedlineType,
     const uno::Sequence< beans::PropertyValue >& rRedlineProperties )
         throw (lang::IllegalArgumentException, uno::RuntimeException)
diff --git a/sw/source/core/unocore/unotbl.cxx b/sw/source/core/unocore/unotbl.cxx
index e177150..b265dd6 100644
--- a/sw/source/core/unocore/unotbl.cxx
+++ b/sw/source/core/unocore/unotbl.cxx
@@ -1366,8 +1366,8 @@ void SwXTextTableRow::setPropertyValue(const OUString& rPropertyName,
                 sRedlineTypeValue = aPropMap.getUnpackedValueOrDefault("RedlineType", sRedlineTypeValue);
                 if( sRedlineTypeValue >>= sRedlineType )
                 {
-                    // Create a 'Table Redline' object
-                    SwUnoCursorHelper::makeTableRedline( *pLn, sRedlineType, tableRowProperties);
+                    // Create a 'Table Row Redline' object
+                    SwUnoCursorHelper::makeTableRowRedline( *pLn, sRedlineType, tableRowProperties);
                 }
                 else
                 {


More information about the Libreoffice-commits mailing list