summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/viewfunc.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/view/viewfunc.cxx')
-rw-r--r--sc/source/ui/view/viewfunc.cxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/sc/source/ui/view/viewfunc.cxx b/sc/source/ui/view/viewfunc.cxx
index 4bb63bcbd4f8..8a67e463dece 100644
--- a/sc/source/ui/view/viewfunc.cxx
+++ b/sc/source/ui/view/viewfunc.cxx
@@ -560,7 +560,7 @@ void ScViewFunc::EnterData( SCCOL nCol, SCROW nRow, SCTAB nTab,
for (; itr != itrEnd; ++itr)
aChangeRanges.Append( ScRange( nCol, nRow, *itr ) );
- pModelObj->NotifyChanges( ::rtl::OUString( "cell-change" ), aChangeRanges );
+ pModelObj->NotifyChanges( OUString( "cell-change" ), aChangeRanges );
}
if ( bRecord )
@@ -738,7 +738,7 @@ void ScViewFunc::EnterData( SCCOL nCol, SCROW nRow, SCTAB nTab,
{
aChangeRanges.Append( ScRange( nCol, nRow, *itr ) );
}
- pModelObj->NotifyChanges( ::rtl::OUString( "cell-change" ), aChangeRanges );
+ pModelObj->NotifyChanges( OUString( "cell-change" ), aChangeRanges );
}
aModificator.SetDocumentModified();
@@ -1285,7 +1285,7 @@ void ScViewFunc::ApplySelectionPattern( const ScPatternAttr& rAttr,
}
}
}
- pModelObj->NotifyChanges( ::rtl::OUString( "attribute" ), aChangeRanges, aProperties );
+ pModelObj->NotifyChanges( OUString( "attribute" ), aChangeRanges, aProperties );
}
StartFormatArea();
@@ -1507,9 +1507,9 @@ sal_Bool ScViewFunc::InsertCells( InsCellCmd eCmd, sal_Bool bRecord, sal_Bool bP
{
ScRangeList aChangeRanges;
aChangeRanges.Append( aRange );
- ::rtl::OUString aOperation = ( eCmd == INS_INSROWS ?
- ::rtl::OUString( "insert-rows" ) :
- ::rtl::OUString( "insert-columns" ) );
+ OUString aOperation = ( eCmd == INS_INSROWS ?
+ OUString( "insert-rows" ) :
+ OUString( "insert-columns" ) );
pModelObj->NotifyChanges( aOperation, aChangeRanges );
}
}
@@ -1570,9 +1570,9 @@ void ScViewFunc::DeleteCells( DelCellCmd eCmd, sal_Bool bRecord )
{
ScRangeList aChangeRanges;
aChangeRanges.Append( aRange );
- ::rtl::OUString aOperation = ( eCmd == DEL_DELROWS ?
- ::rtl::OUString( "delete-rows" ) :
- ::rtl::OUString( "delete-columns" ) );
+ OUString aOperation = ( eCmd == DEL_DELROWS ?
+ OUString( "delete-rows" ) :
+ OUString( "delete-columns" ) );
pModelObj->NotifyChanges( aOperation, aChangeRanges );
}
}
@@ -1943,7 +1943,7 @@ void ScViewFunc::DeleteContents( sal_uInt16 nFlags, sal_Bool bRecord )
{
aFuncMark.FillRangeListWithMarks( &aChangeRanges, false );
}
- pModelObj->NotifyChanges( ::rtl::OUString( "cell-change" ), aChangeRanges );
+ pModelObj->NotifyChanges( OUString( "cell-change" ), aChangeRanges );
}
aModificator.SetDocumentModified();
@@ -2247,7 +2247,7 @@ void ScViewFunc::SetWidthOrHeight( sal_Bool bWidth, SCCOLROW nRangeCnt, SCCOLROW
}
}
}
- pModelObj->NotifyChanges( ::rtl::OUString( "column-resize" ), aChangeRanges );
+ pModelObj->NotifyChanges( OUString( "column-resize" ), aChangeRanges );
}
}
}