diff options
Diffstat (limited to 'basic/source/app')
-rw-r--r-- | basic/source/app/app.hxx | 6 | ||||
-rw-r--r-- | basic/source/app/appwin.cxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/basic/source/app/app.hxx b/basic/source/app/app.hxx index 3ef46edc2cb1..cdc776554546 100644 --- a/basic/source/app/app.hxx +++ b/basic/source/app/app.hxx @@ -53,10 +53,10 @@ struct TTLogMsg; typedef ::std::vector< AppWin* > EditList; class BasicApp : public Application { - short nWait; // Wait-Zaehler + short nWait; // wait counter public: - BasicFrame* pFrame; // Frame Window - Accelerator* pMainAccel; // Acceleratoren + BasicFrame* pFrame; // frame window + Accelerator* pMainAccel; // accelerators int Main( ); diff --git a/basic/source/app/appwin.cxx b/basic/source/app/appwin.cxx index fc6d5ecfa548..8d7375a77f26 100644 --- a/basic/source/app/appwin.cxx +++ b/basic/source/app/appwin.cxx @@ -219,7 +219,7 @@ long AppWin::PreNotify( NotifyEvent& rNEvt ) if ( rNEvt.GetType() == EVENT_GETFOCUS ) if ( pFrame->pList->back() != this ) Activate(); - return sal_False; // Der event soll weiter verarbeitet werden + return sal_False; // the event shall continue to be handled } void AppWin::Activate() |