summaryrefslogtreecommitdiff
path: root/vcl/source/app
diff options
context:
space:
mode:
authorCarsten Driesner <cd@openoffice.org>2000-11-13 08:41:58 +0000
committerCarsten Driesner <cd@openoffice.org>2000-11-13 08:41:58 +0000
commit2bc5684fb0d6636c4a861c01bc00f07792dfc73f (patch)
treec382f75421cba2a665ca41bf51b8cb2b0052196e /vcl/source/app
parent9cc71aaf4e6451715949e672b8d63f79ab6edd40 (diff)
first changes for startup optimization
Diffstat (limited to 'vcl/source/app')
-rw-r--r--vcl/source/app/svmain.cxx15
1 files changed, 9 insertions, 6 deletions
diff --git a/vcl/source/app/svmain.cxx b/vcl/source/app/svmain.cxx
index 7634a7feca41..dd35c5efccfe 100644
--- a/vcl/source/app/svmain.cxx
+++ b/vcl/source/app/svmain.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svmain.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: cd $ $Date: 2000-11-06 08:55:14 $
+ * last change: $Author: cd $ $Date: 2000-11-13 09:41:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -297,6 +297,7 @@ BOOL SVMain()
if( pSVData->mxClientFactory.is() )
{
+/*
pSVData->mpRVPNormalSync = new RVPSync(
Reference< ::com::sun::star::portal::client::XRmSync >(
pSVData->mxClientFactory->createInstance( OUString( RTL_CONSTASCII_USTRINGPARAM( "RVPSync_Normal.stardiv.de" ) ) ), UNO_QUERY ));
@@ -314,11 +315,13 @@ BOOL SVMain()
pSVData->mxStatus = Reference < ::com::sun::star::portal::client::XRmStatus > ( rX , UNO_QUERY );
CHECK_FOR_RVPSYNC_NORMAL()
- if( pSVData->mxStatus->GetRemoteVersion() != REMOTE_VCLVERSION )
+*/
+ if ( pSVData->mnRemoteVersion != REMOTE_VCLVERSION )
+// if( pSVData->mxStatus->GetRemoteVersion() != REMOTE_VCLVERSION )
{
- CHECK_FOR_RVPSYNC_NORMAL()
- pSVData->mxStatus->ShowError(
- OUString( RTL_CONSTASCII_USTRINGPARAM("Wrong Office-Version")), 0 );
+// CHECK_FOR_RVPSYNC_NORMAL()
+// pSVData->mxStatus->ShowError(
+// OUString( RTL_CONSTASCII_USTRINGPARAM("Wrong Office-Version")), 0 );
CHECK_FOR_RVPSYNC_NORMAL()
pSVData->mxStatus->Quit();
return sal_False;