summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--basic/source/app/app.cxx6
-rw-r--r--basic/source/app/status.cxx6
2 files changed, 6 insertions, 6 deletions
diff --git a/basic/source/app/app.cxx b/basic/source/app/app.cxx
index 4d9726ce4a21..d0b8e7971b53 100644
--- a/basic/source/app/app.cxx
+++ b/basic/source/app/app.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: app.cxx,v $
*
- * $Revision: 1.42 $
+ * $Revision: 1.43 $
*
- * last change: $Author: gh $ $Date: 2002-11-12 16:29:27 $
+ * last change: $Author: gh $ $Date: 2002-11-12 16:53:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1634,7 +1634,7 @@ long BasicFrame::Command( short nID, BOOL bChecked )
MenuBar* pMenu = GetMenuBar();
PopupMenu* pWinMenu = pMenu->GetPopupMenu( RID_APPWINDOW );
String aName = pWinMenu->GetItemText( nID );
- aName..EraseAllChars( '~' );
+ aName.EraseAllChars( L'~' );
AppWin* pWin = FindWin( aName );
if ( pWin )
pWin->ToTop();
diff --git a/basic/source/app/status.cxx b/basic/source/app/status.cxx
index f8d3ecbf6f1c..078017fd816a 100644
--- a/basic/source/app/status.cxx
+++ b/basic/source/app/status.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: status.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: gh $ $Date: 2002-11-12 16:29:27 $
+ * last change: $Author: gh $ $Date: 2002-11-12 16:53:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -119,7 +119,7 @@ IMPL_LINK( StatusLine, ActivateTask, TaskToolBox*, pTTB )
x = pTTB->GetItemPos( pTTB->GetCurItemId() );
x = pWinMenu->GetItemId( nFirstWinPos );
x = pWinMenu->GetItemCount();
- AppWin* pWin = pFrame->FindWin( pWinMenu->GetItemText( pWinMenu->GetItemId( nFirstWinPos ) ).EraseAllChars( '~' ) );
+ AppWin* pWin = pFrame->FindWin( pWinMenu->GetItemText( pWinMenu->GetItemId( nFirstWinPos ) ).EraseAllChars( L'~' ) );
if ( pWin )
{
pWin->Minimize( FALSE );