summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorGregor Hartmann <gh@openoffice.org>2002-10-21 07:44:08 +0000
committerGregor Hartmann <gh@openoffice.org>2002-10-21 07:44:08 +0000
commita22f5b9e11f9418a9d8cc62b5fea257e396f7b50 (patch)
treeb9cf9c9adaeb77e5fdafba668cb64cbd1c7ca567 /basic
parent7f943ee7d20d45d85cc62df5d602f029aa74675a (diff)
#103263#added module i18npool for registration
Diffstat (limited to 'basic')
-rw-r--r--basic/source/app/app.cxx9
-rw-r--r--basic/source/app/appbased.cxx6
2 files changed, 9 insertions, 6 deletions
diff --git a/basic/source/app/app.cxx b/basic/source/app/app.cxx
index a1d1a6c33113..6b234c602a97 100644
--- a/basic/source/app/app.cxx
+++ b/basic/source/app/app.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: app.cxx,v $
*
- * $Revision: 1.37 $
+ * $Revision: 1.38 $
*
- * last change: $Author: jbu $ $Date: 2002-10-18 09:20:25 $
+ * last change: $Author: gh $ $Date: 2002-10-21 08:44:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -271,8 +271,11 @@ static const char * const components[] =
SAL_MODULENAME( "ucb1" ) // KSO, ABI
, SAL_MODULENAME( "ucpfile1" )
, SAL_MODULENAME( "fileacc" )
- , SAL_MODULENAME( "mcnttype" )
+ , SAL_MODULENAME( "mcnttype" ) //Clipboard Ask Oliver Braun
, SVLIBRARY( "i18n" )
+ , SVLIBRARY( "i18npool" )
+ // Reading of files in specific encodings like UTF-8 using
+ // createUnoService( "com.sun.star.io.TextInputStream" ) and such
, SAL_MODULENAME( "tinstrm" )
#ifdef SAL_UNX
, SVLIBRARY( "dtransX11" ) // OBR
diff --git a/basic/source/app/appbased.cxx b/basic/source/app/appbased.cxx
index 22f9d8c8b615..90d7d49195e8 100644
--- a/basic/source/app/appbased.cxx
+++ b/basic/source/app/appbased.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: appbased.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: gh $ $Date: 2001-06-08 13:44:14 $
+ * last change: $Author: gh $ $Date: 2002-10-21 08:44:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -103,7 +103,7 @@ AppBasEd::AppBasEd( BasicFrame* pParent, SbModule* p )
((TextEdit*)pDataEdit)->GetTextEditImp().pTextView->SetAutoIndentMode( TRUE );
((TextEdit*)pDataEdit)->GetTextEditImp().pTextEngine->SetMaxTextLen( STRING_MAXLEN );
- ((TextEdit*)pDataEdit)->GetTextEditImp().pTextEngine->SetWordDelimiters( CUniString(" ,.;:(){}[]\"'+-*/<>^\\") );
+// ((TextEdit*)pDataEdit)->GetTextEditImp().pTextEngine->SetWordDelimiters( CUniString(" ,.;:(){}[]\"'+-*/<>^\\") );
((TextEdit*)pDataEdit)->GetTextEditImp().SyntaxHighlight( TRUE );
((TextEdit*)pDataEdit)->SaveAsUTF8( TRUE );