diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-05-07 15:09:19 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-05-07 15:09:19 +0000 |
commit | 6f13de8fc2af61f258cad89029ca0b63e50b3f7d (patch) | |
tree | 26de7f4ede68f731908ddb4350b033b167904992 | |
parent | 2ce004ed72bcd9fe81b310186536b56f33eedb22 (diff) |
INTEGRATION: CWS frmcontrols03 (1.2.6); FILE MERGED
2004/04/29 15:10:00 fs 1.2.6.1: #i10000#
-rw-r--r-- | forms/source/inc/forms_module.hxx | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/forms/source/inc/forms_module.hxx b/forms/source/inc/forms_module.hxx index 79ee615df908..9a3c461bad65 100644 --- a/forms/source/inc/forms_module.hxx +++ b/forms/source/inc/forms_module.hxx @@ -2,9 +2,9 @@ * * $RCSfile: forms_module.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: hr $ $Date: 2004-04-13 11:17:26 $ + * last change: $Author: rt $ $Date: 2004-05-07 16:09:19 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -336,6 +336,26 @@ namespace FORMS_MODULE_NAMESPACE ); \ } \ + #define IMPLEMENT_SERVICE_REGISTRATION_7( classname, baseclass, service1, service2, service3, service4 , service5, service6, service7 ) \ + IMPLEMENT_SERVICE_REGISTRATION_BASE( classname, baseclass ) \ + \ + Sequence< ::rtl::OUString > SAL_CALL classname::getSupportedServiceNames_Static() \ + { \ + Sequence< ::rtl::OUString > aOwnNames( 7 ); \ + aOwnNames[ 0 ] = service1; \ + aOwnNames[ 1 ] = service2; \ + aOwnNames[ 2 ] = service3; \ + aOwnNames[ 3 ] = service4; \ + aOwnNames[ 4 ] = service5; \ + aOwnNames[ 5 ] = service6; \ + aOwnNames[ 6 ] = service7; \ + \ + return ::comphelper::concatSequences( \ + baseclass::getSupportedServiceNames_Static(), \ + aOwnNames \ + ); \ + } \ + //......................................................................... } // namespace FORMS_MODULE_NAMESPACE //......................................................................... |