summaryrefslogtreecommitdiff
path: root/starmath/source
diff options
context:
space:
mode:
Diffstat (limited to 'starmath/source')
-rw-r--r--starmath/source/document.cxx8
-rw-r--r--starmath/source/view.cxx5
2 files changed, 13 insertions, 0 deletions
diff --git a/starmath/source/document.cxx b/starmath/source/document.cxx
index 776a11d66dbe..9466d6635674 100644
--- a/starmath/source/document.cxx
+++ b/starmath/source/document.cxx
@@ -915,6 +915,14 @@ void SmDocShell::Execute(SfxRequest& rReq)
}
break;
+ case SID_LOADSYMBOLS:
+ LoadSymbols();
+ break;
+
+ case SID_SAVESYMBOLS:
+ SaveSymbols();
+ break;
+
case SID_FONT:
{
// get device used to retrieve the FontList
diff --git a/starmath/source/view.cxx b/starmath/source/view.cxx
index 2bd4e70f1a36..11c5b7148488 100644
--- a/starmath/source/view.cxx
+++ b/starmath/source/view.cxx
@@ -1694,6 +1694,11 @@ void SmViewShell::Execute(SfxRequest& rReq)
break;
}
+ case SID_GETEDITTEXT:
+ if (pWin)
+ if (!pWin->GetText().isEmpty()) GetDoc()->SetText( pWin->GetText() );
+ break;
+
case SID_ATTR_ZOOM:
{
if ( !GetViewFrame()->GetFrame().IsInPlace() )