Kaydet (Commit) c90bc80f authored tarafından Adam Co's avatar Adam Co Kaydeden (comit) Miklos Vajna

Rename 'makeTableRedline' to 'makeTableRowRedline'

Change-Id: I257ef3cc360c74fb83c65e4be9967e9f84ba9af3
Reviewed-on: https://gerrit.libreoffice.org/7874Reviewed-by: 's avatarMiklos Vajna <vmiklos@collabora.co.uk>
Tested-by: 's avatarMiklos Vajna <vmiklos@collabora.co.uk>
üst 06a887ca
...@@ -121,7 +121,7 @@ namespace SwUnoCursorHelper ...@@ -121,7 +121,7 @@ namespace SwUnoCursorHelper
const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& RedlineProperties ) const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& RedlineProperties )
throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException); 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 ) const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& RedlineProperties )
throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException); throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
......
...@@ -1292,7 +1292,7 @@ void makeRedline( SwPaM& rPaM, ...@@ -1292,7 +1292,7 @@ void makeRedline( SwPaM& rPaM,
throw lang::IllegalArgumentException(); throw lang::IllegalArgumentException();
} }
void makeTableRedline( SwTableLine& rTableLine, void makeTableRowRedline( SwTableLine& rTableLine,
const OUString& rRedlineType, const OUString& rRedlineType,
const uno::Sequence< beans::PropertyValue >& rRedlineProperties ) const uno::Sequence< beans::PropertyValue >& rRedlineProperties )
throw (lang::IllegalArgumentException, uno::RuntimeException) throw (lang::IllegalArgumentException, uno::RuntimeException)
......
...@@ -1366,8 +1366,8 @@ void SwXTextTableRow::setPropertyValue(const OUString& rPropertyName, ...@@ -1366,8 +1366,8 @@ void SwXTextTableRow::setPropertyValue(const OUString& rPropertyName,
sRedlineTypeValue = aPropMap.getUnpackedValueOrDefault("RedlineType", sRedlineTypeValue); sRedlineTypeValue = aPropMap.getUnpackedValueOrDefault("RedlineType", sRedlineTypeValue);
if( sRedlineTypeValue >>= sRedlineType ) if( sRedlineTypeValue >>= sRedlineType )
{ {
// Create a 'Table Redline' object // Create a 'Table Row Redline' object
SwUnoCursorHelper::makeTableRedline( *pLn, sRedlineType, tableRowProperties); SwUnoCursorHelper::makeTableRowRedline( *pLn, sRedlineType, tableRowProperties);
} }
else else
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment