diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-05-15 09:03:57 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-05-15 12:05:47 +0100 |
commit | 9b71aa0de186d534f4dc79b587f0cd6d8e17e590 (patch) | |
tree | 51e5e389120cab2f6e170a7d6aedded1558c351f /sd | |
parent | 844bba4bb44966a1d27f55c4e511eb7f5887d147 (diff) |
convert GetUndoActionComment family to rtl::OUString
Change-Id: I36ccf62ee2e2769bcf1aef6d26d96bce6c7078f0
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/view/viewshel.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sd/source/ui/view/viewshel.cxx b/sd/source/ui/view/viewshel.cxx index fdbead996f26..bcc2f2adbee4 100644 --- a/sd/source/ui/view/viewshel.cxx +++ b/sd/source/ui/view/viewshel.cxx @@ -1062,9 +1062,8 @@ void ViewShell::ImpGetUndoStrings(SfxItemSet &rSet) const { // prepare list ::std::vector< String > aStringList; - sal_uInt16 a; - for( a = 0; a < nCount; a++) + for (sal_uInt16 a = 0; a < nCount; ++a) { // generate one String in list per undo step aStringList.push_back( String(pUndoManager->GetUndoActionComment(a)) ); |