diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-06-20 14:38:11 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-06-20 14:38:11 +0000 |
commit | 4f82a641417d2dde62f38d56acab48e36f606b19 (patch) | |
tree | c2b937d37f7c3b2be493cb4f90c2c9b2a8865d9a /basic | |
parent | 8dd5c822f8064d4c6f10f2d46612349d1f8bcc6f (diff) |
INTEGRATION: CWS bserver01 (1.7.14); FILE MERGED
2005/05/20 11:42:16 kz 1.7.14.1: #122892# move communi to devtools & automation
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/app/mybasic.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/basic/source/app/mybasic.cxx b/basic/source/app/mybasic.cxx index 87729d574022..8a9a36e5f285 100644 --- a/basic/source/app/mybasic.cxx +++ b/basic/source/app/mybasic.cxx @@ -2,9 +2,9 @@ * * $RCSfile: mybasic.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: obo $ $Date: 2005-04-13 09:06:58 $ + * last change: $Author: rt $ $Date: 2005-06-20 15:38:11 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -90,7 +90,6 @@ #include "object.hxx" -#include "comm_bas.hxx" #include "processw.hxx" TYPEINIT1(MyBasic,StarBASIC) @@ -103,7 +102,6 @@ public: static SampleObjectFac aFac1; static MyFactory aFac2; -static CommunicationFactory aComManFac; static ProcessFactory aProcessFac; static short nInst = 0; @@ -122,7 +120,6 @@ MyBasic::MyBasic() : StarBASIC() { AddFactory( &aFac1 ); AddFactory( &aFac2 ); - AddFactory( &aComManFac ); AddFactory( &aProcessFac ); } SbxVariable* p = new SbxCollection( CUniString("MyColl") ); @@ -204,7 +201,6 @@ MyBasic::~MyBasic() { RemoveFactory( &aFac1 ); RemoveFactory( &aFac2 ); - RemoveFactory( &aComManFac ); RemoveFactory( &aProcessFac ); } } |