From c90bc80feee6283ed6d5d3eb5edbbb3f7199ccb4 Mon Sep 17 00:00:00 2001 From: Adam Co Date: Wed, 5 Feb 2014 13:43:56 +0200 Subject: Rename 'makeTableRedline' to 'makeTableRowRedline' Change-Id: I257ef3cc360c74fb83c65e4be9967e9f84ba9af3 Reviewed-on: https://gerrit.libreoffice.org/7874 Reviewed-by: Miklos Vajna Tested-by: Miklos Vajna --- 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(-) (limited to 'sw') diff --git a/sw/inc/unocrsrhelper.hxx b/sw/inc/unocrsrhelper.hxx index b50e372b7c84..4515e7d127ec 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 116b8b429cc2..bbbb640f880f 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 e177150e1758..b265dd6a3ab1 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 { -- cgit