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 | 27da46a0e764b80fff9b2cecd22c2c2bee29aea4 (patch) | |
tree | 7cfcd1c83534b3d1ab565392da03ca87b818a923 /starmath | |
parent | 95838cf7eb35c98e0beec89043352eca276df85e (diff) |
cws tl74: updating slots fixed
Diffstat (limited to 'starmath')
-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 302b475c0452..f7093f9c3815 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) |