summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2008-07-16 12:47:49 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2008-07-16 12:47:49 +0000
commit4e6106c38fcd9b072fc172914fd5b85a5e04e7a9 (patch)
treef4df0ac27a34cb6f3b3f250c00a07f2dc6f26065 /linguistic
parentba9ae69a5579eecd00ea242d5d157bb19cde7859 (diff)
INTEGRATION: CWS tl55 (1.7.8); FILE MERGED
2008/06/25 06:04:24 tl 1.7.8.1: #158047# customer specific extension
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/lngreg.cxx29
1 files changed, 16 insertions, 13 deletions
diff --git a/linguistic/source/lngreg.cxx b/linguistic/source/lngreg.cxx
index cd64db386e20..13459b5869d4 100644
--- a/linguistic/source/lngreg.cxx
+++ b/linguistic/source/lngreg.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: lngreg.cxx,v $
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
* This file is part of OpenOffice.org.
*
@@ -72,10 +72,10 @@ extern sal_Bool SAL_CALL GrammarCheckingIterator_writeInfo
void * /*pServiceManager*/, XRegistryKey * pRegistryKey
);
-extern sal_Bool SAL_CALL GrammarChecker_writeInfo
-(
- void * /*pServiceManager*/, XRegistryKey * pRegistryKey
-);
+//extern sal_Bool SAL_CALL GrammarChecker_writeInfo
+//(
+// void * /*pServiceManager*/, XRegistryKey * pRegistryKey
+//);
extern void * SAL_CALL LngSvcMgr_getFactory
(
@@ -112,12 +112,13 @@ extern void * SAL_CALL GrammarCheckingIterator_getFactory
void *
);
-extern void * SAL_CALL GrammarChecker_getFactory
-(
- const sal_Char * pImplName,
- XMultiServiceFactory * pServiceManager,
- void *
-);
+//extern void * SAL_CALL GrammarChecker_getFactory
+//(
+// const sal_Char * pImplName,
+// XMultiServiceFactory * pServiceManager,
+// void *
+//);
+
////////////////////////////////////////
// definition of the two functions that are used to provide the services
//
@@ -146,8 +147,10 @@ sal_Bool SAL_CALL component_writeInfo
bRet = ConvDicList_writeInfo( pServiceManager, pRegistryKey );
if(bRet)
bRet = GrammarCheckingIterator_writeInfo( pServiceManager, pRegistryKey );
+/*
if(bRet)
bRet = GrammarChecker_writeInfo( pServiceManager, pRegistryKey );
+*/
return bRet;
}
@@ -183,13 +186,13 @@ void * SAL_CALL component_getFactory(
pImplName,
reinterpret_cast< XMultiServiceFactory * >( pServiceManager ),
pRegistryKey );
-
+/*
if(!pRet)
pRet = GrammarChecker_getFactory(
pImplName,
reinterpret_cast< XMultiServiceFactory * >( pServiceManager ),
pRegistryKey );
-
+*/
return pRet;
}
}