summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorAdam Co <rattles2013@gmail.com>2014-02-05 13:43:56 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-02-12 09:46:04 +0000
commitc90bc80feee6283ed6d5d3eb5edbbb3f7199ccb4 (patch)
tree131521ca11c32f19235d17cef424356ad1a558c4 /sw
parent06a887ca92f35b4e44dfc638a9a444fc636bc9d0 (diff)
Rename 'makeTableRedline' to 'makeTableRowRedline'
Change-Id: I257ef3cc360c74fb83c65e4be9967e9f84ba9af3 Reviewed-on: https://gerrit.libreoffice.org/7874 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r--sw/inc/unocrsrhelper.hxx2
-rw-r--r--sw/source/core/unocore/unocrsrhelper.cxx2
-rw-r--r--sw/source/core/unocore/unotbl.cxx4
3 files changed, 4 insertions, 4 deletions
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
{