diff options
author | Thomas Lange [tl] <tl@openoffice.org> | 2010-05-21 10:13:38 +0200 |
---|---|---|
committer | Thomas Lange [tl] <tl@openoffice.org> | 2010-05-21 10:13:38 +0200 |
commit | 222764ffefc2fb9daf8e3f79c41a815f3591bc85 (patch) | |
tree | 9e0db0158ab648a447324a6a3aa0a5f5b2dc953e /starmath/source/edit.cxx | |
parent | 6cb77dbc711671d98be0dd0de969cf57169e090e (diff) |
cws tl74: updating slots fixed
Diffstat (limited to 'starmath/source/edit.cxx')
-rw-r--r-- | starmath/source/edit.cxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/starmath/source/edit.cxx b/starmath/source/edit.cxx index 0661b263d8..f6add289ba 100644 --- a/starmath/source/edit.cxx +++ b/starmath/source/edit.cxx @@ -880,7 +880,10 @@ void SmEditWindow::Cut() { DBG_ASSERT( pEditView, "EditView missing" ); if (pEditView) + { pEditView->Cut(); + GetDoc()->SetModified( TRUE ); + } } void SmEditWindow::Copy() @@ -894,14 +897,20 @@ void SmEditWindow::Paste() { DBG_ASSERT( pEditView, "EditView missing" ); if (pEditView) + { pEditView->Paste(); + GetDoc()->SetModified( TRUE ); + } } void SmEditWindow::Delete() { DBG_ASSERT( pEditView, "EditView missing" ); if (pEditView) + { pEditView->DeleteSelected(); + GetDoc()->SetModified( TRUE ); + } } void SmEditWindow::InsertText(const String& Text) |