summaryrefslogtreecommitdiff
path: root/include/svx/svdedtv.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-04 13:43:19 +0200
committerNoel Grandin <noel@peralex.com>2013-09-05 08:55:05 +0200
commit5da63b03c0ad1b93e6918d901b48f5850588a42b (patch)
treef35f8a767dc39092f32a9d357a33f1c968fc2376 /include/svx/svdedtv.hxx
parentdea5704e934d523438546ce8891d9cf5aef9b347 (diff)
convert svx/source/svdraw/*.cxx from String to OUString
Change-Id: I081cc5220fb0f55af2c08ae24bb92e4bf8d3f546
Diffstat (limited to 'include/svx/svdedtv.hxx')
-rw-r--r--include/svx/svdedtv.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/svdedtv.hxx b/include/svx/svdedtv.hxx
index fead690fb4cc..51b3d0f87977 100644
--- a/include/svx/svdedtv.hxx
+++ b/include/svx/svdedtv.hxx
@@ -176,13 +176,13 @@ public:
// EndUndo() gerufen. NotifyNewUndoAction() wird nicht gerufen bei einer
// leeren Klammerung.
void BegUndo() { pMod->BegUndo(); } // Undo-Klammerung auf
- void BegUndo(const String& rComment) { pMod->BegUndo(rComment); } // Undo-Klammerung auf
- void BegUndo(const String& rComment, const String& rObjDescr, SdrRepeatFunc eFunc=SDRREPFUNC_OBJ_NONE) { pMod->BegUndo(rComment,rObjDescr,eFunc); } // Undo-Klammerung auf
+ void BegUndo(const OUString& rComment) { pMod->BegUndo(rComment); } // Undo-Klammerung auf
+ void BegUndo(const OUString& rComment, const OUString& rObjDescr, SdrRepeatFunc eFunc=SDRREPFUNC_OBJ_NONE) { pMod->BegUndo(rComment,rObjDescr,eFunc); } // Undo-Klammerung auf
void EndUndo(); // Undo-Klammerung zu (inkl BroadcastEdges)
void AddUndo(SdrUndoAction* pUndo) { pMod->AddUndo(pUndo); } // Action hinzufuegen
// nur nach dem 1. BegUndo oder vor dem letzten EndUndo:
- void SetUndoComment(const String& rComment) { pMod->SetUndoComment(rComment); }
- void SetUndoComment(const String& rComment, const String& rObjDescr) { pMod->SetUndoComment(rComment,rObjDescr); }
+ void SetUndoComment(const OUString& rComment) { pMod->SetUndoComment(rComment); }
+ void SetUndoComment(const OUString& rComment, const OUString& rObjDescr) { pMod->SetUndoComment(rComment,rObjDescr); }
bool IsUndoEnabled() const;
std::vector< SdrUndoAction* > CreateConnectorUndo( SdrObject& rO );