Submitted By: DJ Lucas Date: 2005-10-06 Origin: Previous OOo-1.1.4-gcc-3.4.2+ patch, OOo CVS, self Initial Package Version: 1.1.5 Description: Fixes build issues with gcc-4. $LastChangedBy: dj $ $Date: 2005-10-06 19:29:58 -0500 (Thu, 06 Oct 2005) $ diff -Naur OOo_1.1.5-orig/autodoc/source/ary/cpp/c_gate.cxx OOo_1.1.5/autodoc/source/ary/cpp/c_gate.cxx --- OOo_1.1.5-orig/autodoc/source/ary/cpp/c_gate.cxx 2003-06-30 10:25:45.000000000 -0500 +++ OOo_1.1.5/autodoc/source/ary/cpp/c_gate.cxx 2005-10-03 21:37:56.000000000 -0500 @@ -744,7 +744,8 @@ while ( true ) { int nUse = -1; - for ( int i = 0; i < 5; ++i ) + int i; + for ( i = 0; i < 5; ++i ) { if ( it[i] != itEnd[i] ) { diff -Naur OOo_1.1.5-orig/autodoc/source/ary/cpp/prpr.cxx OOo_1.1.5/autodoc/source/ary/cpp/prpr.cxx --- OOo_1.1.5-orig/autodoc/source/ary/cpp/prpr.cxx 2002-03-08 08:45:18.000000000 -0600 +++ OOo_1.1.5/autodoc/source/ary/cpp/prpr.cxx 2005-10-03 21:37:56.000000000 -0500 @@ -92,7 +92,8 @@ { if ( io_bConcatenate ) { - for ( uintt nPos = o_rText.tellp() - 1; + uintt nPos; + for ( nPos = o_rText.tellp() - 1; nPos > 0 ? o_rText.c_str()[nPos] == ' ' : false; --nPos ); o_rText.seekp(nPos+1); diff -Naur OOo_1.1.5-orig/autodoc/source/ary/inc/nametreenode.hxx OOo_1.1.5/autodoc/source/ary/inc/nametreenode.hxx --- OOo_1.1.5-orig/autodoc/source/ary/inc/nametreenode.hxx 2003-03-18 08:11:34.000000000 -0600 +++ OOo_1.1.5/autodoc/source/ary/inc/nametreenode.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -187,7 +187,7 @@ NameTreeNode::Add_Name( const String & i_sName, item_id i_nId ) { - LocalNames().insert( Map_LocalNames::value_type(i_sName, i_nId) ); + LocalNames().insert( typename Map_LocalNames::value_type(i_sName, i_nId) ); } diff -Naur OOo_1.1.5-orig/autodoc/source/ary/inc/store/st_iterator.hxx OOo_1.1.5/autodoc/source/ary/inc/store/st_iterator.hxx --- OOo_1.1.5-orig/autodoc/source/ary/inc/store/st_iterator.hxx 2002-11-01 11:13:57.000000000 -0600 +++ OOo_1.1.5/autodoc/source/ary/inc/store/st_iterator.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -244,7 +244,7 @@ const unit_type & operator*() const /// @precond bool(*this); - { return CurUnit(); } + { return RootConstIterator::CurUnit(); } }; @@ -271,7 +271,7 @@ { } unit_type & operator*() const /// @precond bool(*this); - { return CurUnit(); } + { return RootIterator::CurUnit(); } }; @@ -279,6 +279,7 @@ class RootFilterConstIterator : public internal::IteratorBase< UNIT, FILTER > { public: + typedef UNIT unit_type; typedef RootFilterConstIterator self; RootFilterConstIterator( @@ -290,7 +291,7 @@ i_rOther.CurPosition() ) {} const unit_type & operator*() const /// @precond bool(*this); - { return CurUnit(); } + { return RootFilterConstIterator::CurUnit(); } self & operator=( const RootConstIterator & i_rOther ) @@ -307,6 +308,9 @@ class RootFilterIterator : public internal::IteratorBase< UNIT, FILTER > { public: + typedef UNIT unit_type; + typedef RootFilterIterator self; + RootFilterIterator( const RootIterator & i_rOther ) @@ -317,7 +321,7 @@ unit_type & operator*() const /// @precond bool(*this); - { return CurUnit(); } + { return RootFilterIterator::CurUnit(); } self & operator=( const RootIterator & i_rOther ) diff -Naur OOo_1.1.5-orig/autodoc/source/ary/store/t_storg.hxx OOo_1.1.5/autodoc/source/ary/store/t_storg.hxx --- OOo_1.1.5-orig/autodoc/source/ary/store/t_storg.hxx 2003-07-02 08:49:27.000000000 -0500 +++ OOo_1.1.5/autodoc/source/ary/store/t_storg.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -131,8 +131,8 @@ StdReStorage::do_Add( const KEY & i_rKey, DYN RE & let_drElement ) { - std::pair result - = aDataBase.insert(DataBase::value_type(i_rKey, &let_drElement)); + std::pair result; + result = aDataBase.insert(typename DataBase::value_type(i_rKey, &let_drElement)); if (result.second == false) delete &let_drElement; return *(*result.first).second; diff -Naur OOo_1.1.5-orig/autodoc/source/ary/store/ti_storg.hxx OOo_1.1.5/autodoc/source/ary/store/ti_storg.hxx --- OOo_1.1.5-orig/autodoc/source/ary/store/ti_storg.hxx 2002-03-08 08:45:20.000000000 -0600 +++ OOo_1.1.5/autodoc/source/ary/store/ti_storg.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -124,7 +124,7 @@ template inline const RE & ReStorage::operator[]( const KEY & i_rKey ) const - { const RE * ret = inq_Find(i_rKey); + { const RE * ret = ReStorage::inq_Find(i_rKey); csv_assert(ret != 0); return *ret; } diff -Naur OOo_1.1.5-orig/autodoc/source/display/html/hdimpl.cxx OOo_1.1.5/autodoc/source/display/html/hdimpl.cxx --- OOo_1.1.5-orig/autodoc/source/display/html/hdimpl.cxx 2003-03-18 08:11:36.000000000 -0600 +++ OOo_1.1.5/autodoc/source/display/html/hdimpl.cxx 2005-10-03 21:37:56.000000000 -0500 @@ -457,7 +457,8 @@ { if ( *io_rStr.c_str() < 33 AND io_rStr.length() > 0 ) { - for ( const unsigned char * pNew = (const unsigned char * ) io_rStr.c_str(); + const unsigned char * pNew; + for ( pNew = (const unsigned char * ) io_rStr.c_str(); *pNew < 33 AND *pNew != 0; ++pNew ) {} udmstri sNew( (const char*)pNew ); diff -Naur OOo_1.1.5-orig/autodoc/source/display/toolkit/out_position.cxx OOo_1.1.5/autodoc/source/display/toolkit/out_position.cxx --- OOo_1.1.5-orig/autodoc/source/display/toolkit/out_position.cxx 2002-11-01 11:15:27.000000000 -0600 +++ OOo_1.1.5/autodoc/source/display/toolkit/out_position.cxx 2005-10-03 21:37:56.000000000 -0500 @@ -241,13 +241,15 @@ const char * get_UpLink(intt i_depth) { + intt nDepth; + if ( i_depth <= C_nMaxDepth ) return C_sUpLink + 3*(C_nMaxDepth - i_depth); StreamLock aRet(i_depth*3 + 1); StreamStr & rRet = aRet(); - for ( intt nDepth = i_depth; nDepth > C_nMaxDepth; nDepth -= C_nMaxDepth ) + for ( nDepth = i_depth; nDepth > C_nMaxDepth; nDepth -= C_nMaxDepth ) { rRet << C_sUpLink; } diff -Naur OOo_1.1.5-orig/autodoc/source/inc/estack.hxx OOo_1.1.5/autodoc/source/inc/estack.hxx --- OOo_1.1.5-orig/autodoc/source/inc/estack.hxx 2003-06-30 10:27:34.000000000 -0500 +++ OOo_1.1.5/autodoc/source/inc/estack.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -98,11 +98,11 @@ bool operator==( const EStack & i_r2 ) const - { return std::operator==( Base(), i_rStack.Base() ); } + { return std::operator==( Base(), EStack::i_rStack.Base() ); } bool operator<( const EStack & i_r2 ) const - { return std::operator<( Base(), i_rStack.Base() ); } + { return std::operator<( Base(), EStack::i_rStack.Base() ); } // OPERATIONS void push( const value_type & i_rElem ) diff -Naur OOo_1.1.5-orig/autodoc/source/parser/cpp/cx_c_pp.cxx OOo_1.1.5/autodoc/source/parser/cpp/cx_c_pp.cxx --- OOo_1.1.5-orig/autodoc/source/parser/cpp/cx_c_pp.cxx 2003-03-18 08:11:41.000000000 -0600 +++ OOo_1.1.5/autodoc/source/parser/cpp/cx_c_pp.cxx 2005-10-03 21:37:56.000000000 -0500 @@ -175,6 +175,8 @@ void Context_PP_MacroParams::ReadCharChain( CharacterSource & io_rText ) { + uintt nLen; + jumpOverWhite( io_rText ); // KORR_FUTURE Handling line breaks within macro parameters: char cSeparator = jumpTo( io_rText, ',', ')' ); @@ -183,7 +185,7 @@ static char cBuf[500]; // KORR_FUTURE, make it still safer, here: strcpy( cBuf, io_rText.CutToken() ); // SAFE STRCPY (#100211# - checked) - for ( uintt nLen = strlen(cBuf); + for ( nLen = strlen(cBuf); nLen > 0 AND cBuf[nLen-1] < 33; --nLen ) { } diff -Naur OOo_1.1.5-orig/autodoc/source/parser_i/idl/tk_keyw.cxx OOo_1.1.5/autodoc/source/parser_i/idl/tk_keyw.cxx --- OOo_1.1.5-orig/autodoc/source/parser_i/idl/tk_keyw.cxx 2002-11-01 11:15:41.000000000 -0600 +++ OOo_1.1.5/autodoc/source/parser_i/idl/tk_keyw.cxx 2005-10-03 21:37:56.000000000 -0500 @@ -137,15 +137,15 @@ namespace lux { -EnumValueMap & +template<> EnumValueMap & TokBuiltInType::EV_TokenId::Values_() { return G_aTokBuiltInType_EV_TokenId_Values; } -EnumValueMap & +template<> EnumValueMap & TokTypeModifier::EV_TokenId::Values_() { return G_aTokTypeModifier_EV_TokenId_Values; } -EnumValueMap & +template<> EnumValueMap & TokMetaType::EV_TokenId::Values_() { return G_aTokMetaType_EV_TokenId_Values; } -EnumValueMap & +template<> EnumValueMap & TokStereotype::EV_TokenId::Values_() { return G_aTokStereotype_EV_TokenId_Values; } -EnumValueMap & +template<> EnumValueMap & TokParameterHandling::EV_TokenId::Values_() { return G_aTokParameterHandling_EV_TokenId_Values; } } // namespace lux diff -Naur OOo_1.1.5-orig/autodoc/source/parser_i/idl/tk_punct.cxx OOo_1.1.5/autodoc/source/parser_i/idl/tk_punct.cxx --- OOo_1.1.5-orig/autodoc/source/parser_i/idl/tk_punct.cxx 2004-03-25 05:33:03.000000000 -0600 +++ OOo_1.1.5/autodoc/source/parser_i/idl/tk_punct.cxx 2005-10-03 21:37:56.000000000 -0500 @@ -90,7 +90,7 @@ namespace lux { -EnumValueMap & +template<> EnumValueMap & TokPunctuation::EV_TokenId::Values_() { return G_aTokPunctuation_EV_TokenId_Values; } } diff -Naur OOo_1.1.5-orig/autodoc/source/parser_i/idoc/tk_atag2.cxx OOo_1.1.5/autodoc/source/parser_i/idoc/tk_atag2.cxx --- OOo_1.1.5-orig/autodoc/source/parser_i/idoc/tk_atag2.cxx 2003-06-10 06:35:20.000000000 -0500 +++ OOo_1.1.5/autodoc/source/parser_i/idoc/tk_atag2.cxx 2005-10-03 21:37:56.000000000 -0500 @@ -90,7 +90,7 @@ namespace lux { -EnumValueMap & +template<> EnumValueMap & Tok_AtTag::EV_TokenId::Values_() { return G_aTokAtTag_EV_TokenId_Values; } } diff -Naur OOo_1.1.5-orig/autodoc/source/parser_i/idoc/tk_xml.cxx OOo_1.1.5/autodoc/source/parser_i/idoc/tk_xml.cxx --- OOo_1.1.5-orig/autodoc/source/parser_i/idoc/tk_xml.cxx 2002-05-14 04:02:21.000000000 -0500 +++ OOo_1.1.5/autodoc/source/parser_i/idoc/tk_xml.cxx 2005-10-03 21:37:56.000000000 -0500 @@ -94,11 +94,11 @@ namespace lux { -EnumValueMap & +template<> EnumValueMap & Tok_XmlConst::EV_TokenId::Values_() { return G_aTok_XmlConst_EV_TokenId_Values; } -EnumValueMap & +template<> EnumValueMap & Tok_XmlLink_Tag::EV_TokenId::Values_() { return G_aTok_XmlLink_Tag_EV_TokenId_Values; } -EnumValueMap & +template<> EnumValueMap & Tok_XmlFormat_Tag::EV_TokenId::Values_() { return G_aTok_XmlFormat_Tag_EV_TokenId_Values; } } // namespace lux diff -Naur OOo_1.1.5-orig/automation/source/server/statemnt.hxx OOo_1.1.5/automation/source/server/statemnt.hxx --- OOo_1.1.5-orig/automation/source/server/statemnt.hxx 2003-06-10 06:29:57.000000000 -0500 +++ OOo_1.1.5/automation/source/server/statemnt.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -111,6 +111,7 @@ #endif class Window; +class SystemWindow; class Point; class SfxPoolItem; @@ -351,7 +352,7 @@ class StatementCommand : public StatementList // Befehl ausführen (wintree, resetaplication ...) { - friend ImplRemoteControl; + friend class ImplRemoteControl; protected: USHORT nMethodId; USHORT nParams; diff -Naur OOo_1.1.5-orig/basctl/source/inc/bastypes.hxx OOo_1.1.5/basctl/source/inc/bastypes.hxx --- OOo_1.1.5-orig/basctl/source/inc/bastypes.hxx 2003-04-23 11:40:01.000000000 -0500 +++ OOo_1.1.5/basctl/source/inc/bastypes.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -218,6 +218,7 @@ #define BASWIN_SUSPENDED 0x04 #define BASWIN_INRESCHEDULE 0x08 +class Printer; class SfxUndoManager; class SfxObjectShell; diff -Naur OOo_1.1.5-orig/basctl/source/inc/dlgedobj.hxx OOo_1.1.5/basctl/source/inc/dlgedobj.hxx --- OOo_1.1.5-orig/basctl/source/inc/dlgedobj.hxx 2003-04-11 12:39:10.000000000 -0500 +++ OOo_1.1.5/basctl/source/inc/dlgedobj.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -79,8 +79,10 @@ #endif #include +#include class DlgEdForm; +class DlgEditor; //============================================================================ // DlgEdObj diff -Naur OOo_1.1.5-orig/basic/inc/sbdef.hxx OOo_1.1.5/basic/inc/sbdef.hxx --- OOo_1.1.5-orig/basic/inc/sbdef.hxx 2004-10-12 05:56:33.000000000 -0500 +++ OOo_1.1.5/basic/inc/sbdef.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -77,7 +77,8 @@ SB_STRING, // Strings SB_NUMBER, // Zahlen SB_PUNCTUATION, // Klammern, Punkte etc - SB_COMMENT // Kommentare + SB_COMMENT, // Kommentare + SB_DUMMY = 255 }; enum SbLanguageMode { // Aktive Sprache diff -Naur OOo_1.1.5-orig/basic/source/app/appwin.hxx OOo_1.1.5/basic/source/app/appwin.hxx --- OOo_1.1.5-orig/basic/source/app/appwin.hxx 2002-03-28 08:43:03.000000000 -0600 +++ OOo_1.1.5/basic/source/app/appwin.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -101,7 +101,7 @@ class AppWin : public DockingWindow, public SfxListener // Dokumentfenster { - friend MsgEdit; + friend class MsgEdit; protected: static short nNumber; // fortlaufende Nummer static short nCount; // Anzahl Editfenster diff -Naur OOo_1.1.5-orig/basic/source/app/comm_bas.cxx OOo_1.1.5/basic/source/app/comm_bas.cxx --- OOo_1.1.5-orig/basic/source/app/comm_bas.cxx 2000-09-18 11:12:08.000000000 -0500 +++ OOo_1.1.5/basic/source/app/comm_bas.cxx 2005-10-03 21:37:56.000000000 -0500 @@ -463,7 +463,7 @@ char *pBuffer = new char[nLength]; pReceiveStream->Read( pBuffer, nLength ); String aReceive( pBuffer, nLength ); - __DELETE(nLength) pBuffer; + delete [] pBuffer; pVar->PutString( aReceive ); delete pReceiveStream; } diff -Naur OOo_1.1.5-orig/bridges/source/remote/urp/urp_cache.hxx OOo_1.1.5/bridges/source/remote/urp/urp_cache.hxx --- OOo_1.1.5-orig/bridges/source/remote/urp/urp_cache.hxx 2001-08-31 11:16:52.000000000 -0500 +++ OOo_1.1.5/bridges/source/remote/urp/urp_cache.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -60,6 +60,7 @@ ************************************************************************/ #include #include +#include #ifndef _RTL_USTRING_HXX_ #include diff -Naur OOo_1.1.5-orig/codemaker/source/cppumaker/cpputype.cxx OOo_1.1.5/codemaker/source/cppumaker/cpputype.cxx --- OOo_1.1.5-orig/codemaker/source/cppumaker/cpputype.cxx 2004-01-28 09:27:37.000000000 -0600 +++ OOo_1.1.5/codemaker/source/cppumaker/cpputype.cxx 2005-10-03 21:37:56.000000000 -0500 @@ -1531,13 +1531,18 @@ dumpDefaultHIncludes(o); o << "\n"; dumpDepIncludes(o, m_typeName, "hdl"); - o << "\n"; + +// o << "\n"; + o << ("\nnamespace com { namespace sun { namespace star { namespace uno {\n" + "class Type;\n} } } }\n\n"); + dumpNameSpace(o); dumpDeclaration(o); dumpNameSpace(o, sal_False); - o << "\nnamespace com { namespace sun { namespace star { namespace uno {\n" - << "class Type;\n} } } }\n\n"; +// o << "\nnamespace com { namespace sun { namespace star { namespace uno {\n" +// << "class Type;\n} } } }\n\n"; + o << "\n"; if (m_cppuTypeStatic) o << "static"; @@ -1650,6 +1655,10 @@ dumpAttributes(o); dumpMethods(o); + o << "\n" << indent() + << ("static inline ::com::sun::star::uno::Type const & SAL_CALL" + " static_type(void * = 0);\n"); + dec(); o << "};\n\n"; @@ -1729,6 +1738,16 @@ } } + o << "\n::com::sun::star::uno::Type const & " + << scopedName(rtl::OString(), m_typeName) + << "::static_type(void *) {\n"; + inc(); + o << indent() << "return ::getCppuType(static_cast< "; + dumpType(o, m_typeName); + o << " * >(0));\n"; + dec(); + o << "}\n"; + o << "\n#endif // "<< headerDefine << "\n"; return sal_True; } diff -Naur OOo_1.1.5-orig/comphelper/inc/comphelper/broadcasthelper.hxx OOo_1.1.5/comphelper/inc/comphelper/broadcasthelper.hxx --- OOo_1.1.5-orig/comphelper/inc/comphelper/broadcasthelper.hxx 2002-04-23 06:04:56.000000000 -0500 +++ OOo_1.1.5/comphelper/inc/comphelper/broadcasthelper.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -99,7 +99,7 @@ class OBaseMutex { protected: - ::osl::Mutex m_aMutex; + mutable ::osl::Mutex m_aMutex; }; } #endif // _COMPHELPER_BROADCASTHELPER_HXX_ diff -Naur OOo_1.1.5-orig/comphelper/inc/comphelper/extract.hxx OOo_1.1.5/comphelper/inc/comphelper/extract.hxx --- OOo_1.1.5-orig/comphelper/inc/comphelper/extract.hxx 2001-03-07 07:55:53.000000000 -0600 +++ OOo_1.1.5/comphelper/inc/comphelper/extract.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -149,7 +149,7 @@ template< typename E > inline ::com::sun::star::uno::Any SAL_CALL enum2any( E eEnum ) { - return ::com::sun::star::uno::Any( &eEnum, ::getCppuType((const E*)0) ); + return ::com::sun::star::uno::Any( &eEnum, getCppuType((const E*)0) ); } /** diff -Naur OOo_1.1.5-orig/comphelper/inc/comphelper/guarding.hxx OOo_1.1.5/comphelper/inc/comphelper/guarding.hxx --- OOo_1.1.5-orig/comphelper/inc/comphelper/guarding.hxx 2000-09-29 06:28:15.000000000 -0500 +++ OOo_1.1.5/comphelper/inc/comphelper/guarding.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -115,18 +115,18 @@ const OReusableGuard& operator= (const OReusableGuard& _rMaster) { - clear(); - pT = _rMaster.pT; - if (pT) - pT->acquire(); + this->clear(); + this->pT = _rMaster.pT; + if (this->pT) + this->pT->acquire(); return *this; } void attach(T& rMutex) { - clear(); - pT = &rMutex; - pT->acquire(); + this->clear(); + this->pT = &rMutex; + this->pT->acquire(); } }; diff -Naur OOo_1.1.5-orig/comphelper/inc/comphelper/proparrhlp.hxx OOo_1.1.5/comphelper/inc/comphelper/proparrhlp.hxx --- OOo_1.1.5-orig/comphelper/inc/comphelper/proparrhlp.hxx 2003-03-19 09:58:31.000000000 -0600 +++ OOo_1.1.5/comphelper/inc/comphelper/proparrhlp.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -175,6 +175,6 @@ } //... namespace comphelper ................................................ -#endif _COMPHELPER_PROPERTY_ARRAY_HELPER_HXX_ +#endif // _COMPHELPER_PROPERTY_ARRAY_HELPER_HXX_ diff -Naur OOo_1.1.5-orig/comphelper/inc/comphelper/property.hxx OOo_1.1.5/comphelper/inc/comphelper/property.hxx --- OOo_1.1.5-orig/comphelper/inc/comphelper/property.hxx 2003-03-19 09:58:31.000000000 -0600 +++ OOo_1.1.5/comphelper/inc/comphelper/property.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -179,7 +179,7 @@ template sal_Bool tryPropertyValueEnum(staruno::Any& /*out*/_rConvertedValue, staruno::Any& /*out*/_rOldValue, const staruno::Any& _rValueToSet, const ENUMTYPE& _rCurrentValue) { - if (::getCppuType(&_rCurrentValue).getTypeClass() != staruno::TypeClass_ENUM) + if (getCppuType(&_rCurrentValue).getTypeClass() != staruno::TypeClass_ENUM) return tryPropertyValue(_rConvertedValue, _rOldValue, _rValueToSet, _rCurrentValue); sal_Bool bModified(sal_False); diff -Naur OOo_1.1.5-orig/comphelper/inc/comphelper/propmultiplex.hxx OOo_1.1.5/comphelper/inc/comphelper/propmultiplex.hxx --- OOo_1.1.5-orig/comphelper/inc/comphelper/propmultiplex.hxx 2001-05-31 08:54:33.000000000 -0500 +++ OOo_1.1.5/comphelper/inc/comphelper/propmultiplex.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -76,6 +76,8 @@ //......................................................................... namespace comphelper { + class OPropertyChangeMultiplexer; + //......................................................................... //================================================================== diff -Naur OOo_1.1.5-orig/comphelper/inc/comphelper/querydeep.hxx OOo_1.1.5/comphelper/inc/comphelper/querydeep.hxx --- OOo_1.1.5-orig/comphelper/inc/comphelper/querydeep.hxx 2000-09-29 06:28:15.000000000 -0500 +++ OOo_1.1.5/comphelper/inc/comphelper/querydeep.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -101,9 +101,7 @@ const ::com::sun::star::uno::Type& rBaseType, Interface* /*p*/) { - return isDerivedFrom( - rBaseType, - ::getCppuType(static_cast *>(0))); + return isDerivedFrom(rBaseType, Interface::static_type()); } //-------------------------------------------------------------------------------------------------------- @@ -122,7 +120,7 @@ const ::com::sun::star::uno::Type & rType, Interface1 * p1 ) { - if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + if (isDerivedFrom(rType, Interface1::static_type())) return ::com::sun::star::uno::Any( &p1, rType ); else return ::com::sun::star::uno::Any(); @@ -139,9 +137,9 @@ const ::com::sun::star::uno::Type & rType, Interface1 * p1, Interface2 * p2 ) { - if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + if (isDerivedFrom(rType, Interface1::static_type())) return ::com::sun::star::uno::Any( &p1, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface2::static_type())) return ::com::sun::star::uno::Any( &p2, rType ); else return ::com::sun::star::uno::Any(); @@ -159,11 +157,11 @@ const ::com::sun::star::uno::Type & rType, Interface1 * p1, Interface2 * p2, Interface3 * p3 ) { - if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + if (isDerivedFrom(rType, Interface1::static_type())) return ::com::sun::star::uno::Any( &p1, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface2::static_type())) return ::com::sun::star::uno::Any( &p2, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface3::static_type())) return ::com::sun::star::uno::Any( &p3, rType ); else return ::com::sun::star::uno::Any(); @@ -182,13 +180,13 @@ const ::com::sun::star::uno::Type & rType, Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4 ) { - if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + if (isDerivedFrom(rType, Interface1::static_type())) return ::com::sun::star::uno::Any( &p1, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface2::static_type())) return ::com::sun::star::uno::Any( &p2, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface3::static_type())) return ::com::sun::star::uno::Any( &p3, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface4::static_type())) return ::com::sun::star::uno::Any( &p4, rType ); else return ::com::sun::star::uno::Any(); @@ -208,15 +206,15 @@ const ::com::sun::star::uno::Type & rType, Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5 ) { - if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + if (isDerivedFrom(rType, Interface1::static_type())) return ::com::sun::star::uno::Any( &p1, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface2::static_type())) return ::com::sun::star::uno::Any( &p2, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface3::static_type())) return ::com::sun::star::uno::Any( &p3, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface4::static_type())) return ::com::sun::star::uno::Any( &p4, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface5::static_type())) return ::com::sun::star::uno::Any( &p5, rType ); else return ::com::sun::star::uno::Any(); @@ -239,17 +237,17 @@ Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5, Interface6 * p6 ) { - if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + if (isDerivedFrom(rType, Interface1::static_type())) return ::com::sun::star::uno::Any( &p1, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface2::static_type())) return ::com::sun::star::uno::Any( &p2, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface3::static_type())) return ::com::sun::star::uno::Any( &p3, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface4::static_type())) return ::com::sun::star::uno::Any( &p4, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface5::static_type())) return ::com::sun::star::uno::Any( &p5, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface6::static_type())) return ::com::sun::star::uno::Any( &p6, rType ); else return ::com::sun::star::uno::Any(); @@ -273,19 +271,19 @@ Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5, Interface6 * p6, Interface7 * p7 ) { - if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + if (isDerivedFrom(rType, Interface1::static_type())) return ::com::sun::star::uno::Any( &p1, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface2::static_type())) return ::com::sun::star::uno::Any( &p2, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface3::static_type())) return ::com::sun::star::uno::Any( &p3, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface4::static_type())) return ::com::sun::star::uno::Any( &p4, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface5::static_type())) return ::com::sun::star::uno::Any( &p5, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface6::static_type())) return ::com::sun::star::uno::Any( &p6, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface7::static_type())) return ::com::sun::star::uno::Any( &p7, rType ); else return ::com::sun::star::uno::Any(); @@ -310,21 +308,21 @@ Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5, Interface6 * p6, Interface7 * p7, Interface8 * p8 ) { - if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + if (isDerivedFrom(rType, Interface1::static_type())) return ::com::sun::star::uno::Any( &p1, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface2::static_type())) return ::com::sun::star::uno::Any( &p2, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface3::static_type())) return ::com::sun::star::uno::Any( &p3, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface4::static_type())) return ::com::sun::star::uno::Any( &p4, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface5::static_type())) return ::com::sun::star::uno::Any( &p5, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface6::static_type())) return ::com::sun::star::uno::Any( &p6, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface7::static_type())) return ::com::sun::star::uno::Any( &p7, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface8::static_type())) return ::com::sun::star::uno::Any( &p8, rType ); else return ::com::sun::star::uno::Any(); @@ -350,23 +348,23 @@ Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5, Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9 ) { - if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + if (isDerivedFrom(rType, Interface1::static_type())) return ::com::sun::star::uno::Any( &p1, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface2::static_type())) return ::com::sun::star::uno::Any( &p2, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface3::static_type())) return ::com::sun::star::uno::Any( &p3, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface4::static_type())) return ::com::sun::star::uno::Any( &p4, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface5::static_type())) return ::com::sun::star::uno::Any( &p5, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface6::static_type())) return ::com::sun::star::uno::Any( &p6, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface7::static_type())) return ::com::sun::star::uno::Any( &p7, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface8::static_type())) return ::com::sun::star::uno::Any( &p8, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface9::static_type())) return ::com::sun::star::uno::Any( &p9, rType ); else return ::com::sun::star::uno::Any(); @@ -393,25 +391,25 @@ Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5, Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9, Interface10 * p10 ) { - if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + if (isDerivedFrom(rType, Interface1::static_type())) return ::com::sun::star::uno::Any( &p1, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface2::static_type())) return ::com::sun::star::uno::Any( &p2, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface3::static_type())) return ::com::sun::star::uno::Any( &p3, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface4::static_type())) return ::com::sun::star::uno::Any( &p4, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface5::static_type())) return ::com::sun::star::uno::Any( &p5, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface6::static_type())) return ::com::sun::star::uno::Any( &p6, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface7::static_type())) return ::com::sun::star::uno::Any( &p7, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface8::static_type())) return ::com::sun::star::uno::Any( &p8, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface9::static_type())) return ::com::sun::star::uno::Any( &p9, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface10::static_type())) return ::com::sun::star::uno::Any( &p10, rType ); else return ::com::sun::star::uno::Any(); @@ -441,27 +439,27 @@ Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9, Interface10 * p10, Interface11 * p11 ) { - if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + if (isDerivedFrom(rType, Interface1::static_type())) return ::com::sun::star::uno::Any( &p1, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface2::static_type())) return ::com::sun::star::uno::Any( &p2, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface3::static_type())) return ::com::sun::star::uno::Any( &p3, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface4::static_type())) return ::com::sun::star::uno::Any( &p4, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface5::static_type())) return ::com::sun::star::uno::Any( &p5, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface6::static_type())) return ::com::sun::star::uno::Any( &p6, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface7::static_type())) return ::com::sun::star::uno::Any( &p7, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface8::static_type())) return ::com::sun::star::uno::Any( &p8, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface9::static_type())) return ::com::sun::star::uno::Any( &p9, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface10::static_type())) return ::com::sun::star::uno::Any( &p10, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface11::static_type())) return ::com::sun::star::uno::Any( &p11, rType ); else return ::com::sun::star::uno::Any(); @@ -492,29 +490,29 @@ Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9, Interface10 * p10, Interface11 * p11, Interface12 * p12 ) { - if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + if (isDerivedFrom(rType, Interface1::static_type())) return ::com::sun::star::uno::Any( &p1, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface2::static_type())) return ::com::sun::star::uno::Any( &p2, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface3::static_type())) return ::com::sun::star::uno::Any( &p3, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface4::static_type())) return ::com::sun::star::uno::Any( &p4, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface5::static_type())) return ::com::sun::star::uno::Any( &p5, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface6::static_type())) return ::com::sun::star::uno::Any( &p6, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface7::static_type())) return ::com::sun::star::uno::Any( &p7, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface8::static_type())) return ::com::sun::star::uno::Any( &p8, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface9::static_type())) return ::com::sun::star::uno::Any( &p9, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface10::static_type())) return ::com::sun::star::uno::Any( &p10, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface11::static_type())) return ::com::sun::star::uno::Any( &p11, rType ); - else if (isDerivedFrom(rType, ::getCppuType(static_cast *>(0)))) + else if (isDerivedFrom(rType, Interface12::static_type())) return ::com::sun::star::uno::Any( &p12, rType ); else return ::com::sun::star::uno::Any(); diff -Naur OOo_1.1.5-orig/comphelper/inc/comphelper/sequence.hxx OOo_1.1.5/comphelper/inc/comphelper/sequence.hxx --- OOo_1.1.5-orig/comphelper/inc/comphelper/sequence.hxx 2001-04-20 07:29:47.000000000 -0500 +++ OOo_1.1.5/comphelper/inc/comphelper/sequence.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -62,6 +62,8 @@ #ifndef _COMPHELPER_SEQUENCE_HXX_ #define _COMPHELPER_SEQUENCE_HXX_ +#include + #ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_ #include #endif diff -Naur OOo_1.1.5-orig/comphelper/inc/comphelper/servicehelper.hxx OOo_1.1.5/comphelper/inc/comphelper/servicehelper.hxx --- OOo_1.1.5-orig/comphelper/inc/comphelper/servicehelper.hxx 2001-03-14 09:52:37.000000000 -0600 +++ OOo_1.1.5/comphelper/inc/comphelper/servicehelper.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -135,5 +135,5 @@ } -#endif _UTL_SERVICEHELPER_HXX_ +#endif // _UTL_SERVICEHELPER_HXX_ diff -Naur OOo_1.1.5-orig/comphelper/inc/comphelper/types.hxx OOo_1.1.5/comphelper/inc/comphelper/types.hxx --- OOo_1.1.5-orig/comphelper/inc/comphelper/types.hxx 2000-11-19 09:20:37.000000000 -0600 +++ OOo_1.1.5/comphelper/inc/comphelper/types.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -133,7 +133,7 @@ template sal_Bool isA(const staruno::Type& _rType, TYPE* pDummy) { - return _rType.equals(::getCppuType(pDummy)); + return _rType.equals(getCppuType(pDummy)); } //------------------------------------------------------------------------- @@ -143,7 +143,7 @@ template sal_Bool isA(const staruno::Any& _rVal, TYPE* pDummy) { - return _rVal.getValueType().equals(::getCppuType(pDummy)); + return _rVal.getValueType().equals(getCppuType(pDummy)); } //------------------------------------------------------------------------- @@ -152,7 +152,7 @@ template sal_Bool isAReference(const staruno::Type& _rType, TYPE* pDummy) { - return _rType.equals(::getCppuType(reinterpret_cast*>(NULL))); + return _rType.equals(getCppuType(reinterpret_cast*>(NULL))); } //------------------------------------------------------------------------- @@ -161,7 +161,7 @@ template sal_Bool isAReference(const staruno::Any& _rVal, TYPE* pDummy) { - return _rVal.getValueType().equals(::getCppuType(reinterpret_cast*>(NULL))); + return _rVal.getValueType().equals(getCppuType(reinterpret_cast*>(NULL))); } //------------------------------------------------------------------------- @@ -179,10 +179,10 @@ } //------------------------------------------------------------------------- template - sal_Bool getImplementation(TYPE*& _pObject, const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxIFace) + sal_Bool getImplementation(TYPE*& _pObject, const staruno::Reference< staruno::XInterface >& _rxIFace) { _pObject = NULL; - ::com::sun::star::uno::Reference< ::com::sun::star::lang::XUnoTunnel > xTunnel(_rxIFace, UNO_QUERY); + staruno::Reference< starlang::XUnoTunnel > xTunnel(_rxIFace, staruno::UNO_QUERY); if (xTunnel.is()) _pObject = reinterpret_cast< TYPE* >(xTunnel->getSomething(TYPE::getUnoTunnelImplementationId())); @@ -199,7 +199,7 @@ /** examine a sequence for the Type of it's elements. */ - ::com::sun::star::uno::Type getSequenceElementType(const ::com::sun::star::uno::Type& _rSequenceType); + staruno::Type getSequenceElementType(const staruno::Type& _rSequenceType); //========================================================================= //= replacement of the former UsrAny.getXXX methods diff -Naur OOo_1.1.5-orig/comphelper/inc/comphelper/uno3.hxx OOo_1.1.5/comphelper/inc/comphelper/uno3.hxx --- OOo_1.1.5-orig/comphelper/inc/comphelper/uno3.hxx 2002-04-23 06:06:59.000000000 -0500 +++ OOo_1.1.5/comphelper/inc/comphelper/uno3.hxx 2005-10-03 21:37:56.000000000 -0500 @@ -206,7 +206,8 @@ _rxOut = static_cast(NULL); if (_rxAggregate.is()) { - ::com::sun::star::uno::Any aCheck = _rxAggregate->queryAggregation(::getCppuType((::com::sun::star::uno::Reference*)NULL)); + ::com::sun::star::uno::Any aCheck = _rxAggregate->queryAggregation( + iface::static_type()); if (aCheck.hasValue()) _rxOut = *(::com::sun::star::uno::Reference*)aCheck.getValue(); } @@ -225,7 +226,8 @@ _rxOut = static_cast(NULL); if (_rxObject.is()) { - ::com::sun::star::uno::Any aCheck = _rxObject->queryInterface(::getCppuType((::com::sun::star::uno::Reference*)NULL)); + ::com::sun::star::uno::Any aCheck = _rxObject->queryInterface( + iface::static_type()); if(aCheck.hasValue()) { _rxOut = *(::com::sun::star::uno::Reference*)aCheck.getValue(); diff -Naur OOo_1.1.5-orig/config_office/configure OOo_1.1.5/config_office/configure --- OOo_1.1.5-orig/config_office/configure 2005-07-08 02:55:43.000000000 -0500 +++ OOo_1.1.5/config_office/configure 2005-10-03 21:37:57.000000000 -0500 @@ -3198,7 +3198,7 @@ _gcc_major=`echo $_gcc_version | $AWK -F. '{ print \$1 }'` _gcc_longver=`echo $_gcc_version | $AWK -F. '{ print \$1*10000+\$2*100+\$3 }'` - if test "$_gcc_major" = "3"; then + if test "$_gcc_major" -ge "3"; then USE_GCC3="TRUE" if test "$_gcc_longver" -eq "030203"; then if test "$ENABLE_SYMBOLS" = "SMALL"; then diff -Naur OOo_1.1.5-orig/configmgr/source/api2/apinodeaccess.hxx OOo_1.1.5/configmgr/source/api2/apinodeaccess.hxx --- OOo_1.1.5-orig/configmgr/source/api2/apinodeaccess.hxx 2003-03-19 10:18:29.000000000 -0600 +++ OOo_1.1.5/configmgr/source/api2/apinodeaccess.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -66,6 +66,14 @@ #include "utility.hxx" #endif +#ifndef CONFIGMGR_CONFIGNODE_HXX_ +#include "noderef.hxx" +#endif + +#ifndef CONFIGMGR_ACCESSOR_HXX +#include +#endif + namespace osl { class Mutex; } namespace configmgr diff -Naur OOo_1.1.5-orig/configmgr/source/api2/apinodeupdate.hxx OOo_1.1.5/configmgr/source/api2/apinodeupdate.hxx --- OOo_1.1.5-orig/configmgr/source/api2/apinodeupdate.hxx 2003-03-19 10:18:29.000000000 -0600 +++ OOo_1.1.5/configmgr/source/api2/apinodeupdate.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -207,13 +207,13 @@ } template - GuardedNodeUpdate::Updater GuardedNodeUpdate::getNodeUpdater() const + typename GuardedNodeUpdate::Updater GuardedNodeUpdate::getNodeUpdater() const { return get().getNodeUpdater(this->getDataAccessor()); } template - GuardedNodeUpdate::Defaulter GuardedNodeUpdate::getNodeDefaulter() const + typename GuardedNodeUpdate::Defaulter GuardedNodeUpdate::getNodeDefaulter() const { return get().getNodeDefaulter(this->getDataAccessor()); } diff -Naur OOo_1.1.5-orig/configmgr/source/api2/confproviderimpl2.hxx OOo_1.1.5/configmgr/source/api2/confproviderimpl2.hxx --- OOo_1.1.5-orig/configmgr/source/api2/confproviderimpl2.hxx 2003-03-19 10:18:31.000000000 -0600 +++ OOo_1.1.5/configmgr/source/api2/confproviderimpl2.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -79,6 +79,8 @@ namespace uno = css::uno; namespace script = css::script; + class OConfigurationProvider; + class OConfigurationProviderImpl : public OProviderImpl { friend class OConfigurationProvider; diff -Naur OOo_1.1.5-orig/configmgr/source/api2/listenercontainer.hxx OOo_1.1.5/configmgr/source/api2/listenercontainer.hxx --- OOo_1.1.5-orig/configmgr/source/api2/listenercontainer.hxx 2003-03-19 10:18:34.000000000 -0600 +++ OOo_1.1.5/configmgr/source/api2/listenercontainer.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -155,7 +155,7 @@ BasicContainerInfo() : pInterface(0), pContainer(0) {} }; typedef std::vector BasicContainerHelperArray; - typedef BasicContainerHelperArray::size_type Index; + typedef typename BasicContainerHelperArray::size_type Index; typedef Key_ Key; typedef typename KeyToIndex_::KeyFinder KeyFinder; @@ -380,7 +380,7 @@ bool bAlive = !m_aSpecialHelper.bInDispose; if (m_aSpecialHelper.bDisposed) { - throw lang::DisposedException(OUString(RTL_CONSTASCII_USTRINGPARAM("The object has already been disposed")),pObject); + throw lang::DisposedException(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("The object has already been disposed")),pObject); } return bAlive; } @@ -647,7 +647,7 @@ KeyList aKeys; if (m_aMapper.findKeysForIndex(_aFinder, nIndex,aKeys)) { - for(KeyList::iterator it = aKeys.begin(); it != aKeys.end(); ++it) + for(typename KeyList::iterator it = aKeys.begin(); it != aKeys.end(); ++it) { if (ListenerContainer* pContainer = m_aSpecialHelper.aLC.getContainer(*it)) { diff -Naur OOo_1.1.5-orig/configmgr/source/api2/providerimpl.hxx OOo_1.1.5/configmgr/source/api2/providerimpl.hxx --- OOo_1.1.5-orig/configmgr/source/api2/providerimpl.hxx 2003-03-19 10:18:36.000000000 -0600 +++ OOo_1.1.5/configmgr/source/api2/providerimpl.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -130,6 +130,7 @@ class IConfigDefaultProvider; class TreeManager; class ContextReader; + class OProvider; struct IConfigBroadcaster; diff -Naur OOo_1.1.5-orig/configmgr/source/inc/pointer.hxx OOo_1.1.5/configmgr/source/inc/pointer.hxx --- OOo_1.1.5-orig/configmgr/source/inc/pointer.hxx 2002-03-28 02:47:03.000000000 -0600 +++ OOo_1.1.5/configmgr/source/inc/pointer.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -93,13 +93,13 @@ public: typedef AddressType RawAddress; - Pointer() : m_value(NULL) {} + Pointer() : m_value(0) {} explicit Pointer(AddressType p) : m_value(p) {} RawAddress value() const { return m_value; } - bool isNull() const { return m_value == NULL; } - bool is() const { return m_value != NULL; } + bool isNull() const { return m_value == 0; } + bool is() const { return m_value != 0; } operator Opaque_ const * () const { return reinterpret_cast(m_value); } diff -Naur OOo_1.1.5-orig/configmgr/source/inc/treeaccessor.hxx OOo_1.1.5/configmgr/source/inc/treeaccessor.hxx --- OOo_1.1.5-orig/configmgr/source/inc/treeaccessor.hxx 2003-04-01 07:34:24.000000000 -0600 +++ OOo_1.1.5/configmgr/source/inc/treeaccessor.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -160,7 +160,7 @@ { sharable::Address aAddr = p.addressValue(); - if (aAddr) aAddr += offsetof(DataType,nodes); + if (aAddr) aAddr += offsetof(TreeAddress::DataType,nodes); return NodeAddress( memory::Pointer(aAddr) ); } diff -Naur OOo_1.1.5-orig/connectivity/inc/connectivity/sqliterator.hxx OOo_1.1.5/connectivity/inc/connectivity/sqliterator.hxx --- OOo_1.1.5-orig/connectivity/inc/connectivity/sqliterator.hxx 2002-07-15 07:34:30.000000000 -0500 +++ OOo_1.1.5/connectivity/inc/connectivity/sqliterator.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -99,6 +99,7 @@ { class OSQLParseNode; + class OSQLParser; enum OSQLStatementType { @@ -140,6 +141,8 @@ #define RET_HANDLED 2 // der Fehler wurde schon behandelt, das Parsen soll (mit Status auf Success) abgebrochen werden #define RET_BREAK 3 // Abbrechen, Status-Fehlercode setzen + struct OSQLParseTreeIteratorImpl; + class OSQLParseTreeIterator { public: diff -Naur OOo_1.1.5-orig/connectivity/source/drivers/jdbc/Connection.cxx OOo_1.1.5/connectivity/source/drivers/jdbc/Connection.cxx --- OOo_1.1.5-orig/connectivity/source/drivers/jdbc/Connection.cxx 2003-06-06 05:50:29.000000000 -0500 +++ OOo_1.1.5/connectivity/source/drivers/jdbc/Connection.cxx 2005-10-03 21:37:57.000000000 -0500 @@ -674,7 +674,13 @@ } //mID } //t.pEnv // ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!! - return out ? makeAny(java_sql_SQLWarning(java_sql_SQLWarning_BASE( t.pEnv, out ),*this)) : Any(); + if( out ) + { + java_sql_SQLWarning_BASE warn_base(t.pEnv, out); + return makeAny(java_sql_SQLWarning(warn_base,*this)); + } + + return Any(); } // ----------------------------------------------------------------------------- void java_sql_Connection::loadDriverFromProperties(const Sequence< PropertyValue >& info, diff -Naur OOo_1.1.5-orig/connectivity/source/drivers/jdbc/DatabaseMetaData.cxx OOo_1.1.5/connectivity/source/drivers/jdbc/DatabaseMetaData.cxx --- OOo_1.1.5-orig/connectivity/source/drivers/jdbc/DatabaseMetaData.cxx 2003-04-24 08:20:00.000000000 -0500 +++ OOo_1.1.5/connectivity/source/drivers/jdbc/DatabaseMetaData.cxx 2005-10-03 21:37:57.000000000 -0500 @@ -1627,7 +1627,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsIntegrityEnhancementFacility( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -1856,7 +1856,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::allProceduresAreCallable( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -1875,7 +1875,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsStoredProcedures( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -1894,7 +1894,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSelectForUpdate( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -1913,7 +1913,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::allTablesAreSelectable( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -1932,7 +1932,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::isReadOnly( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_True); SDBThreadAttach t; if( t.pEnv ){ @@ -1951,7 +1951,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::usesLocalFiles( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -1970,7 +1970,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::usesLocalFilePerTable( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -1989,7 +1989,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsTypeConversion( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2008,7 +2008,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::nullPlusNonNullIsNull( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2027,7 +2027,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsColumnAliasing( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2046,7 +2046,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsTableCorrelationNames( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2065,7 +2065,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsConvert( sal_Int32 fromType, sal_Int32 toType ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ jvalue args[2]; @@ -2088,7 +2088,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsExpressionsInOrderBy( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2107,7 +2107,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsGroupBy( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2126,7 +2126,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsGroupByBeyondSelect( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2145,7 +2145,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsGroupByUnrelated( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2164,7 +2164,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsMultipleTransactions( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2183,7 +2183,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsMultipleResultSets( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2202,7 +2202,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsLikeEscapeClause( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2221,7 +2221,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsOrderByUnrelated( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2240,7 +2240,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsUnion( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2259,7 +2259,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsUnionAll( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2278,7 +2278,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsMixedCaseIdentifiers( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2297,7 +2297,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsMixedCaseQuotedIdentifiers( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2316,7 +2316,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::nullsAreSortedAtEnd( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2335,7 +2335,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::nullsAreSortedAtStart( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2354,7 +2354,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::nullsAreSortedHigh( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2373,7 +2373,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::nullsAreSortedLow( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2392,7 +2392,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSchemasInProcedureCalls( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2411,7 +2411,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSchemasInPrivilegeDefinitions( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2430,7 +2430,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsCatalogsInProcedureCalls( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2449,7 +2449,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsCatalogsInPrivilegeDefinitions( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2468,7 +2468,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsCorrelatedSubqueries( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2487,7 +2487,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSubqueriesInComparisons( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2506,7 +2506,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSubqueriesInExists( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2525,7 +2525,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSubqueriesInIns( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2544,7 +2544,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSubqueriesInQuantifieds( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2563,7 +2563,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsANSI92IntermediateSQL( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2766,7 +2766,7 @@ // ------------------------------------------------------------------------- sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getDriverMajorVersion( ) throw(RuntimeException) { - jint out; + jint out(0); SDBThreadAttach t; if( t.pEnv ){ @@ -2785,7 +2785,7 @@ // ------------------------------------------------------------------------- sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getDefaultTransactionIsolation( ) throw(SQLException, RuntimeException) { - jint out; + jint out(0); SDBThreadAttach t; if( t.pEnv ){ @@ -2804,7 +2804,7 @@ // ------------------------------------------------------------------------- sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getDriverMinorVersion( ) throw(RuntimeException) { - jint out; + jint out(0); SDBThreadAttach t; if( t.pEnv ){ @@ -2961,7 +2961,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsExtendedSQLGrammar( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2980,7 +2980,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsCoreSQLGrammar( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -2999,7 +2999,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsMinimumSQLGrammar( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -3018,7 +3018,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsFullOuterJoins( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -3037,7 +3037,7 @@ // ------------------------------------------------------------------------- sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsLimitedOuterJoins( ) throw(SQLException, RuntimeException) { - jboolean out; + jboolean out(sal_False); SDBThreadAttach t; if( t.pEnv ){ @@ -3056,7 +3056,7 @@ // ------------------------------------------------------------------------- sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getMaxColumnsInGroupBy( ) throw(SQLException, RuntimeException) { - jint out; + jint out(0); SDBThreadAttach t; if( t.pEnv ){ @@ -3075,7 +3075,7 @@ // ------------------------------------------------------------------------- sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getMaxColumnsInOrderBy( ) throw(SQLException, RuntimeException) { - jint out; + jint out(0); SDBThreadAttach t; if( t.pEnv ){ @@ -3094,7 +3094,7 @@ // ------------------------------------------------------------------------- sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getMaxColumnsInSelect( ) throw(SQLException, RuntimeException) { - jint out; + jint out(0); SDBThreadAttach t; if( t.pEnv ){ @@ -3113,7 +3113,7 @@ // ------------------------------------------------------------------------- sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getMaxUserNameLength( ) throw(SQLException, RuntimeException) { - jint out; + jint out(0); SDBThreadAttach t; if( t.pEnv ){ diff -Naur OOo_1.1.5-orig/connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx OOo_1.1.5/connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx --- OOo_1.1.5-orig/connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx 2003-04-24 08:20:29.000000000 -0500 +++ OOo_1.1.5/connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx 2005-10-03 21:37:57.000000000 -0500 @@ -184,7 +184,12 @@ { jfieldID id = t.pEnv->GetFieldID(java_sql_DriverPropertyInfo::getMyClass(),"choices","[Ljava/lang/String;"); if(id) - return copyArrayAndDelete(t.pEnv,(jobjectArray)t.pEnv->GetObjectField( object, id), ::rtl::OUString(),java_lang_String(NULL,NULL)); + return copyArrayAndDelete( + t.pEnv, + (jobjectArray)t.pEnv->GetObjectField( object, id), + static_cast< const ::rtl::OUString* >( NULL ), + static_cast< const java_lang_String* >(NULL) + ); } //t.pEnv return Sequence< ::rtl::OUString>(); } diff -Naur OOo_1.1.5-orig/connectivity/source/drivers/jdbc/ResultSet.cxx OOo_1.1.5/connectivity/source/drivers/jdbc/ResultSet.cxx --- OOo_1.1.5-orig/connectivity/source/drivers/jdbc/ResultSet.cxx 2003-04-24 08:21:49.000000000 -0500 +++ OOo_1.1.5/connectivity/source/drivers/jdbc/ResultSet.cxx 2005-10-03 21:37:57.000000000 -0500 @@ -290,7 +290,7 @@ sal_Int8 SAL_CALL java_sql_ResultSet::getByte( sal_Int32 columnIndex ) throw(SQLException, RuntimeException) { - jbyte out; + jbyte out(0); SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!"); if( t.pEnv ) { @@ -360,7 +360,7 @@ double SAL_CALL java_sql_ResultSet::getDouble( sal_Int32 columnIndex ) throw(SQLException, RuntimeException) { - jdouble out; + jdouble out(0); SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!"); if( t.pEnv ) { @@ -381,7 +381,7 @@ float SAL_CALL java_sql_ResultSet::getFloat( sal_Int32 columnIndex ) throw(SQLException, RuntimeException) { - jfloat out; + jfloat out(0); SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!"); if( t.pEnv ) { @@ -443,7 +443,7 @@ sal_Int64 SAL_CALL java_sql_ResultSet::getLong( sal_Int32 columnIndex ) throw(SQLException, RuntimeException) { - jlong out; + jlong out(0); SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!"); if( t.pEnv ){ // temporaere Variable initialisieren @@ -593,7 +593,7 @@ sal_Int16 SAL_CALL java_sql_ResultSet::getShort( sal_Int32 columnIndex ) throw(SQLException, RuntimeException) { - jshort out; + jshort out(0); SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!"); if( t.pEnv ){ // temporaere Variable initialisieren @@ -1070,7 +1070,13 @@ } //mID } //t.pEnv // ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!! - return out ? makeAny(java_sql_SQLWarning(java_sql_SQLWarning_BASE( t.pEnv, out ),*this)) : ::com::sun::star::uno::Any(); + if( out ) + { + java_sql_SQLWarning_BASE warn_base( t.pEnv, out ); + return makeAny(java_sql_SQLWarning(warn_base,*this)); + } + + return ::com::sun::star::uno::Any(); } // ------------------------------------------------------------------------- diff -Naur OOo_1.1.5-orig/connectivity/source/drivers/jdbc/SQLException.cxx OOo_1.1.5/connectivity/source/drivers/jdbc/SQLException.cxx --- OOo_1.1.5-orig/connectivity/source/drivers/jdbc/SQLException.cxx 2003-04-24 08:22:09.000000000 -0500 +++ OOo_1.1.5/connectivity/source/drivers/jdbc/SQLException.cxx 2005-10-03 21:37:57.000000000 -0500 @@ -140,7 +140,13 @@ } //mID } //t.pEnv // ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!! - return out ? (starsdbc::SQLException)java_sql_SQLException(java_sql_SQLException_BASE(t.pEnv,out),0) : starsdbc::SQLException(); + if( out ) + { + java_sql_SQLException_BASE warn_base(t.pEnv,out); + return (starsdbc::SQLException)java_sql_SQLException(warn_base,0); + } + + return starsdbc::SQLException(); } ::rtl::OUString java_sql_SQLException_BASE::getSQLState() const diff -Naur OOo_1.1.5-orig/connectivity/source/drivers/jdbc/Statement.cxx OOo_1.1.5/connectivity/source/drivers/jdbc/Statement.cxx --- OOo_1.1.5-orig/connectivity/source/drivers/jdbc/Statement.cxx 2003-04-24 08:22:28.000000000 -0500 +++ OOo_1.1.5/connectivity/source/drivers/jdbc/Statement.cxx 2005-10-03 21:37:57.000000000 -0500 @@ -550,7 +550,13 @@ } //mID } //t.pEnv // ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!! - return out ? makeAny(java_sql_SQLWarning(java_sql_SQLWarning_BASE( t.pEnv, out ),*(::cppu::OWeakObject*)this)) : Any(); + if( out ) + { + java_sql_SQLWarning_BASE warn_base( t.pEnv, out ); + return makeAny(java_sql_SQLWarning(warn_base,*(::cppu::OWeakObject*)this)); + } + + return Any(); } // ------------------------------------------------------------------------- void SAL_CALL java_sql_Statement_Base::clearWarnings( ) throw(::com::sun::star::sdbc::SQLException, RuntimeException) diff -Naur OOo_1.1.5-orig/connectivity/source/drivers/mozab/makefile.mk OOo_1.1.5/connectivity/source/drivers/mozab/makefile.mk --- OOo_1.1.5-orig/connectivity/source/drivers/mozab/makefile.mk 2004-01-09 09:00:54.000000000 -0600 +++ OOo_1.1.5/connectivity/source/drivers/mozab/makefile.mk 2005-10-03 21:37:57.000000000 -0500 @@ -66,7 +66,7 @@ TARGET=$(MOZAB_TARGET) TARGET2=$(MOZAB_TARGET)drv -.IF "$(OS)"=="MACOSX" || "$(WITH_MOZILLA)" == "NO" +.IF "$(OS)"=="MACOSX" || "$(WITH_MOZILLA)" == "YES" all: @echo " Not building the mozabsrc stuff in OpenOffice.org build" @echo " dependency to Mozilla developer snapshots not feasable at the moment" diff -Naur OOo_1.1.5-orig/connectivity/source/drivers/mozab/mozillasrc/makefile.mk OOo_1.1.5/connectivity/source/drivers/mozab/mozillasrc/makefile.mk --- OOo_1.1.5-orig/connectivity/source/drivers/mozab/mozillasrc/makefile.mk 2004-01-09 09:00:55.000000000 -0600 +++ OOo_1.1.5/connectivity/source/drivers/mozab/mozillasrc/makefile.mk 2005-10-03 21:37:57.000000000 -0500 @@ -85,7 +85,7 @@ .INCLUDE : settings.mk -.IF "$(OS)"=="MACOSX" || "$(WITH_MOZILLA)" == "NO" +.IF "$(OS)"=="MACOSX" || "$(WITH_MOZILLA)" == "YES" dummy: @echo " Not building the mozillasrc stuff in OpenOffice.org build" diff -Naur OOo_1.1.5-orig/connectivity/source/inc/file/fcomp.hxx OOo_1.1.5/connectivity/source/inc/file/fcomp.hxx --- OOo_1.1.5-orig/connectivity/source/inc/file/fcomp.hxx 2002-07-05 03:07:52.000000000 -0500 +++ OOo_1.1.5/connectivity/source/inc/file/fcomp.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -75,6 +75,7 @@ { class OCode; class OOperand; + class OSQLAnalyzer; typedef::std::vector OCodeList; class OPredicateCompiler diff -Naur OOo_1.1.5-orig/connectivity/source/inc/java/tools.hxx OOo_1.1.5/connectivity/source/inc/java/tools.hxx --- OOo_1.1.5-orig/connectivity/source/inc/java/tools.hxx 2002-11-01 04:58:49.000000000 -0600 +++ OOo_1.1.5/connectivity/source/inc/java/tools.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -101,7 +101,7 @@ java_util_Properties* createStringPropertyArray(JNIEnv *pEnv,const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& info ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); - template ::com::sun::star::uno::Sequence< T > copyArrayAndDelete(JNIEnv *pEnv,jobjectArray _Array,const T& _rD1,const JT& _rD2) + template ::com::sun::star::uno::Sequence< T > copyArrayAndDelete(JNIEnv *pEnv,jobjectArray _Array,const T*, const JT* ) { ::com::sun::star::uno::Sequence< T > xOut; if(_Array) diff -Naur OOo_1.1.5-orig/connectivity/source/parse/sqlNoException.cxx OOo_1.1.5/connectivity/source/parse/sqlNoException.cxx --- OOo_1.1.5-orig/connectivity/source/parse/sqlNoException.cxx 2004-01-09 09:00:58.000000000 -0600 +++ OOo_1.1.5/connectivity/source/parse/sqlNoException.cxx 2005-10-03 21:37:57.000000000 -0500 @@ -119,8 +119,6 @@ } // ----------------------------------------------------------------------------- } -// ----------------------------------------------------------------------------- -DBG_NAME(OSQLParseNode); //----------------------------------------------------------------------------- OSQLParseNode::OSQLParseNode(const sal_Char * pNewValue, SQLNodeType eNewNodeType, diff -Naur OOo_1.1.5-orig/cppu/inc/com/sun/star/uno/Any.hxx OOo_1.1.5/cppu/inc/com/sun/star/uno/Any.hxx --- OOo_1.1.5-orig/cppu/inc/com/sun/star/uno/Any.hxx 2002-08-19 02:18:44.000000000 -0500 +++ OOo_1.1.5/cppu/inc/com/sun/star/uno/Any.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -191,14 +191,14 @@ template< class C > inline Any SAL_CALL makeAny( const C & value ) SAL_THROW( () ) { - return Any( &value, ::getCppuType( &value ) ); + return Any( &value, getCppuType( &value ) ); } //__________________________________________________________________________________________________ template< class C > inline void SAL_CALL operator <<= ( Any & rAny, const C & value ) SAL_THROW( () ) { - const Type & rType = ::getCppuType( &value ); + const Type & rType = getCppuType( &value ); ::uno_type_any_assign( &rAny, const_cast< C * >( &value ), rType.getTypeLibType(), (uno_AcquireFunc)cpp_acquire, (uno_ReleaseFunc)cpp_release ); @@ -207,7 +207,7 @@ template< class C > inline sal_Bool SAL_CALL operator >>= ( const Any & rAny, C & value ) SAL_THROW( () ) { - const Type & rType = ::getCppuType( &value ); + const Type & rType = getCppuType( &value ); return ::uno_type_assignData( &value, rType.getTypeLibType(), rAny.pData, rAny.pType, @@ -510,7 +510,7 @@ template< class C > inline sal_Bool SAL_CALL operator == ( const Any & rAny, const C & value ) SAL_THROW( () ) { - const Type & rType = ::getCppuType( &value ); + const Type & rType = getCppuType( &value ); return ::uno_type_equalData( rAny.pData, rAny.pType, const_cast< C * >( &value ), rType.getTypeLibType(), diff -Naur OOo_1.1.5-orig/cppu/inc/com/sun/star/uno/Reference.hxx OOo_1.1.5/cppu/inc/com/sun/star/uno/Reference.hxx --- OOo_1.1.5-orig/cppu/inc/com/sun/star/uno/Reference.hxx 2002-08-21 04:19:06.000000000 -0500 +++ OOo_1.1.5/cppu/inc/com/sun/star/uno/Reference.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -104,7 +104,7 @@ { return static_cast< interface_type * >( BaseReference::iquery( - pInterface, ::getCppuType( (const Reference< interface_type > *)0 ) ) ); + pInterface, getCppuType( (const Reference< interface_type > *)0 ) ) ); } #ifndef EXCEPTIONS_OFF extern "C" rtl_uString * SAL_CALL cppu_unsatisfied_iquery_msg( @@ -129,7 +129,7 @@ { return static_cast< interface_type * >( BaseReference::iquery_throw( - pInterface, ::getCppuType( (const Reference< interface_type > *)0 ) ) ); + pInterface, getCppuType( (const Reference< interface_type > *)0 ) ) ); } #endif diff -Naur OOo_1.1.5-orig/cppu/inc/com/sun/star/uno/Sequence.hxx OOo_1.1.5/cppu/inc/com/sun/star/uno/Sequence.hxx --- OOo_1.1.5-orig/cppu/inc/com/sun/star/uno/Sequence.hxx 2004-01-28 04:19:00.000000000 -0600 +++ OOo_1.1.5/cppu/inc/com/sun/star/uno/Sequence.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -97,7 +97,7 @@ template< class E > inline Sequence< E >::Sequence() SAL_THROW( () ) { - const Type & rType = ::getCppuType( this ); + const Type & rType = getCppuType( this ); ::uno_type_sequence_construct( &_pSequence, rType.getTypeLibType(), 0, 0, (uno_AcquireFunc)cpp_acquire ); @@ -119,7 +119,7 @@ template< class E > inline Sequence< E >::Sequence( const E * pElements, sal_Int32 len ) SAL_THROW( () ) { - const Type & rType = ::getCppuType( this ); + const Type & rType = getCppuType( this ); ::uno_type_sequence_construct( &_pSequence, rType.getTypeLibType(), const_cast< E * >( pElements ), len, (uno_AcquireFunc)cpp_acquire ); @@ -128,7 +128,7 @@ template< class E > inline Sequence< E >::Sequence( sal_Int32 len ) SAL_THROW( () ) { - const Type & rType = ::getCppuType( this ); + const Type & rType = getCppuType( this ); ::uno_type_sequence_construct( &_pSequence, rType.getTypeLibType(), 0, len, (uno_AcquireFunc)cpp_acquire ); @@ -137,7 +137,7 @@ template< class E > inline Sequence< E >::~Sequence() SAL_THROW( () ) { - const Type & rType = ::getCppuType( this ); + const Type & rType = getCppuType( this ); ::uno_type_destructData( this, rType.getTypeLibType(), (uno_ReleaseFunc)cpp_release ); } @@ -145,7 +145,7 @@ template< class E > inline Sequence< E > & Sequence< E >::operator = ( const Sequence< E > & rSeq ) SAL_THROW( () ) { - const Type & rType = ::getCppuType( this ); + const Type & rType = getCppuType( this ); ::uno_type_sequence_assign( &_pSequence, rSeq._pSequence, rType.getTypeLibType(), (uno_ReleaseFunc)cpp_release ); return *this; @@ -156,7 +156,7 @@ { if (_pSequence == rSeq._pSequence) return sal_True; - const Type & rType = ::getCppuType( this ); + const Type & rType = getCppuType( this ); return ::uno_type_equalData( const_cast< Sequence< E > * >( this ), rType.getTypeLibType(), const_cast< Sequence< E > * >( &rSeq ), rType.getTypeLibType(), @@ -172,7 +172,7 @@ template< class E > inline E * Sequence< E >::getArray() SAL_THROW( () ) { - const Type & rType = ::getCppuType( this ); + const Type & rType = getCppuType( this ); ::uno_type_sequence_reference2One( &_pSequence, rType.getTypeLibType(), (uno_AcquireFunc)cpp_acquire, (uno_ReleaseFunc)cpp_release ); @@ -183,7 +183,7 @@ inline E & Sequence< E >::operator [] ( sal_Int32 nIndex ) SAL_THROW( () ) { OSL_ENSURE( nIndex >= 0 && nIndex < getLength(), "### illegal index of sequence!" ); - const Type & rType = ::getCppuType( this ); + const Type & rType = getCppuType( this ); ::uno_type_sequence_reference2One( &_pSequence, rType.getTypeLibType(), (uno_AcquireFunc)cpp_acquire, (uno_ReleaseFunc)cpp_release ); @@ -200,7 +200,7 @@ template< class E > inline void Sequence< E >::realloc( sal_Int32 nSize ) SAL_THROW( () ) { - const Type & rType = ::getCppuType( this ); + const Type & rType = getCppuType( this ); ::uno_type_sequence_realloc( &_pSequence, rType.getTypeLibType(), nSize, (uno_AcquireFunc)cpp_acquire, (uno_ReleaseFunc)cpp_release ); @@ -226,7 +226,7 @@ { if (! ::com::sun::star::uno::Sequence< E >::s_pType) { - const ::com::sun::star::uno::Type & rElementType = ::getCppuType( + const ::com::sun::star::uno::Type & rElementType = getCppuType( (typename ::com::sun::star::uno::Sequence< E >::ElementType const *)0 ); ::typelib_static_sequence_type_init( & ::com::sun::star::uno::Sequence< E >::s_pType, diff -Naur OOo_1.1.5-orig/cppu/inc/com/sun/star/uno/Type.hxx OOo_1.1.5/cppu/inc/com/sun/star/uno/Type.hxx --- OOo_1.1.5-orig/cppu/inc/com/sun/star/uno/Type.hxx 2002-08-21 04:19:08.000000000 -0500 +++ OOo_1.1.5/cppu/inc/com/sun/star/uno/Type.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -250,7 +250,7 @@ { if (! ::com::sun::star::uno::Array< T >::s_pType) { - const ::com::sun::star::uno::Type & rElementType = ::getCppuType( *pT ); + const ::com::sun::star::uno::Type & rElementType = getCppuType( *pT ); sal_Int32 size = sizeof( **pT ); sal_Int32 dim1 = sizeof( *pT ) / size; ::typelib_static_array_type_init( @@ -266,7 +266,7 @@ { if (! ::com::sun::star::uno::Array< T >::s_pType) { - const ::com::sun::star::uno::Type & rElementType = ::getCppuType( **pT ); + const ::com::sun::star::uno::Type & rElementType = getCppuType( **pT ); sal_Int32 size = sizeof( ***pT ); sal_Int32 dim2 = sizeof( **pT ) / size; sal_Int32 dim1 = sizeof( *pT ) / dim2 / size; @@ -283,7 +283,7 @@ { if (! ::com::sun::star::uno::Array< T >::s_pType) { - const ::com::sun::star::uno::Type & rElementType = ::getCppuType( ***pT ); + const ::com::sun::star::uno::Type & rElementType = getCppuType( ***pT ); sal_Int32 size = sizeof( ****pT ); sal_Int32 dim3 = sizeof( ***pT ) / size; sal_Int32 dim2 = sizeof( **pT ) / dim3 / size; @@ -301,7 +301,7 @@ { if (! ::com::sun::star::uno::Array< T >::s_pType) { - const ::com::sun::star::uno::Type & rElementType = ::getCppuType( ****pT ); + const ::com::sun::star::uno::Type & rElementType = getCppuType( ****pT ); sal_Int32 size = sizeof( *****pT ); sal_Int32 dim4 = sizeof( ****pT ) / size; sal_Int32 dim3 = sizeof( ***pT ) / dim4 / size; @@ -320,7 +320,7 @@ { if (! ::com::sun::star::uno::Array< T >::s_pType) { - const ::com::sun::star::uno::Type & rElementType = ::getCppuType( *****pT ); + const ::com::sun::star::uno::Type & rElementType = getCppuType( *****pT ); sal_Int32 size = sizeof( ******pT ); sal_Int32 dim5 = sizeof( *****pT ) / size; sal_Int32 dim4 = sizeof( ****pT ) / dim5 / size; @@ -340,7 +340,7 @@ { if (! ::com::sun::star::uno::Array< T >::s_pType) { - const ::com::sun::star::uno::Type & rElementType = ::getCppuType( ******pT ); + const ::com::sun::star::uno::Type & rElementType = getCppuType( ******pT ); sal_Int32 size = sizeof( *******pT ); sal_Int32 dim6 = sizeof( ******pT ) / size; sal_Int32 dim5 = sizeof( *****pT ) / dim6 / size; diff -Naur OOo_1.1.5-orig/cppu/inc/uno/lbnames.h OOo_1.1.5/cppu/inc/uno/lbnames.h --- OOo_1.1.5-orig/cppu/inc/uno/lbnames.h 2003-04-28 11:26:36.000000000 -0500 +++ OOo_1.1.5/cppu/inc/uno/lbnames.h 2005-10-03 21:37:57.000000000 -0500 @@ -94,7 +94,9 @@ #define TMP_CPPU_ENV gcc2 #elif (__GNUC__ == 2) #error "Tested gcc 2 versions are 2.91 and 2.95. Patch uno/lbnames.h to try your gcc 2 version." -#elif (__GNUC__ == 3 && __GNUC_MINOR__ <= 3) +#elif (__GNUC__ == 3 && __GNUC_MINOR__ <= 4) +#define __CPPU_ENV gcc3 +#elif (__GNUC__ == 4 && __GNUC_MINOR__ == 0) #define __CPPU_ENV gcc3 #elif (__GNUC__ == 3) #error "Tested gcc 3 version is <= 3.3. Patch uno/lbnames.h to try your gcc 3 version." diff -Naur OOo_1.1.5-orig/cppu/inc/uno/mapping.hxx OOo_1.1.5/cppu/inc/uno/mapping.hxx --- OOo_1.1.5-orig/cppu/inc/uno/mapping.hxx 2001-11-09 03:14:30.000000000 -0600 +++ OOo_1.1.5/cppu/inc/uno/mapping.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -340,7 +340,7 @@ ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(UNO_LB_UNO) ), ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(CPPU_CURRENT_LANGUAGE_BINDING_NAME) ) ); OSL_ASSERT( aMapping.is() ); - aMapping.mapInterface( (void **)ppRet, pUnoI, ::getCppuType( ppRet ) ); + aMapping.mapInterface( (void **)ppRet, pUnoI, getCppuType( ppRet ) ); return (0 != *ppRet); } /** Maps an UNO interface of the currently used compiler environment to binary C UNO. @@ -357,7 +357,7 @@ ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(CPPU_CURRENT_LANGUAGE_BINDING_NAME) ), ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(UNO_LB_UNO) ) ); OSL_ASSERT( aMapping.is() ); - aMapping.mapInterface( (void **)ppRet, x.get(), ::getCppuType( &x ) ); + aMapping.mapInterface( (void **)ppRet, x.get(), getCppuType( &x ) ); return (0 != *ppRet); } diff -Naur OOo_1.1.5-orig/cppu/test/surrogate.hxx OOo_1.1.5/cppu/test/surrogate.hxx --- OOo_1.1.5-orig/cppu/test/surrogate.hxx 2001-03-12 07:28:13.000000000 -0600 +++ OOo_1.1.5/cppu/test/surrogate.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -125,7 +125,7 @@ rOut.clear(); typelib_TypeDescription * pTD = 0; - const com::sun::star::uno::Type & rType = ::getCppuType( &rOriginal ); + const com::sun::star::uno::Type & rType = getCppuType( &rOriginal ); TYPELIB_DANGER_GET( &pTD, rType.getTypeLibType() ); OSL_ENSURE( pTD, "### cannot get typedescription!" ); if (pTD) @@ -157,7 +157,7 @@ if (aCpp2Uno.is() && aUno2Cpp.is()) { typelib_TypeDescription * pTD = 0; - const com::sun::star::uno::Type & rType = ::getCppuType( &rOriginal ); + const com::sun::star::uno::Type & rType = getCppuType( &rOriginal ); TYPELIB_DANGER_GET( &pTD, rType.getTypeLibType() ); OSL_ENSURE( pTD, "### cannot get typedescription!" ); if (pTD) diff -Naur OOo_1.1.5-orig/cppu/test/test_di.cxx OOo_1.1.5/cppu/test/test_di.cxx --- OOo_1.1.5-orig/cppu/test/test_di.cxx 2002-08-19 02:18:48.000000000 -0500 +++ OOo_1.1.5/cppu/test/test_di.cxx 2005-10-03 21:37:57.000000000 -0500 @@ -648,7 +648,7 @@ { try { - Any aRet( xObj->queryInterface( ::getCppuType( (const lang::IllegalArgumentException *)0 ) ) ); + Any aRet( xObj->queryInterface( getCppuType( (const lang::IllegalArgumentException *)0 ) ) ); OSL_ASSERT( ! aRet.hasValue() ); } catch (RuntimeException &) @@ -719,24 +719,24 @@ // C++ -> UNO Mapping mapping( pCppEnv, pUnoEnv ); - mapping.mapInterface( (void **)&pUnoI, xOriginal.get(), ::getCppuType( &xOriginal ) ); + mapping.mapInterface( (void **)&pUnoI, xOriginal.get(), getCppuType( &xOriginal ) ); #ifdef EXTRA_MAPPING // UNO -> ano C++a ::uno_createEnvironment( &pCppEnv, aCppEnvTypeName.pData, 0 ); mapping = Mapping( pUnoEnv, pCppEnv ); - mapping.mapInterface( (void **)&xMapped, pUnoI, ::getCppuType( &xMapped ) ); + mapping.mapInterface( (void **)&xMapped, pUnoI, getCppuType( &xMapped ) ); // ano C++a -> ano UNOa ::uno_createEnvironment( &pUnoEnv, aUnoEnvTypeName.pData, 0 ); mapping = Mapping( pCppEnv, pUnoEnv ); - mapping.mapInterface( (void **)&pUnoI, xMapped.get(), ::getCppuType( &xMapped ) ); + mapping.mapInterface( (void **)&pUnoI, xMapped.get(), getCppuType( &xMapped ) ); pExtraMapping = " <-> c++ <-> uno"; #endif // ano UNOa -> ano C++b ::uno_createEnvironment( &pCppEnv, aCppEnvTypeName.pData, 0 ); mapping = Mapping( pUnoEnv, pCppEnv ); - mapping.mapInterface( (void **)&xMapped, pUnoI, ::getCppuType( &xMapped ) ); + mapping.mapInterface( (void **)&xMapped, pUnoI, getCppuType( &xMapped ) ); (*pUnoI->release)( pUnoI ); (*pCppEnv->release)( pCppEnv ); (*pUnoEnv->release)( pUnoEnv ); @@ -786,14 +786,14 @@ ::uno_getEnvironment( &pCppEnv, aCppEnvTypeName.pData, 0 ); ::uno_getEnvironment( &pUnoEnv, aUnoEnvTypeName.pData, 0 ); Mapping aCpp2Uno( pCppEnv, pUnoEnv ); - aCpp2Uno.mapInterface( (void **)&pUnoI1, xOriginal.get(), ::getCppuType( &xOriginal ) ); + aCpp2Uno.mapInterface( (void **)&pUnoI1, xOriginal.get(), getCppuType( &xOriginal ) ); (*pCppEnv->release)( pCppEnv ); // UNO -> C uno_Environment * pCEnv = 0; ::uno_getEnvironment( &pCEnv, aCEnvTypeName.pData, 0 ); Mapping aUno2C( pUnoEnv, pCEnv ); - aUno2C.mapInterface( &pC, pUnoI1, ::getCppuType( &xOriginal ) ); + aUno2C.mapInterface( &pC, pUnoI1, getCppuType( &xOriginal ) ); (*pUnoI1->release)( pUnoI1 ); (*pUnoEnv->release)( pUnoEnv ); @@ -801,7 +801,7 @@ uno_Environment * pAnoUnoEnv = 0; ::uno_createEnvironment( &pAnoUnoEnv, aUnoEnvTypeName.pData, 0 ); // anonymous Mapping aC2Uno( pCEnv, pAnoUnoEnv ); - aC2Uno.mapInterface( (void **)&pUnoI2, pC, ::getCppuType( &xOriginal ) ); + aC2Uno.mapInterface( (void **)&pUnoI2, pC, getCppuType( &xOriginal ) ); (*pCEnv->pExtEnv->releaseInterface)( pCEnv->pExtEnv, pC ); (*pCEnv->release)( pCEnv ); @@ -811,7 +811,7 @@ Mapping aUno2Cpp( pAnoUnoEnv, pAnoCppEnv ); (*pAnoCppEnv->release)( pAnoCppEnv ); (*pAnoUnoEnv->release)( pAnoUnoEnv ); - aUno2Cpp.mapInterface( (void **)&xMapped, pUnoI2, ::getCppuType( &xOriginal ) ); + aUno2Cpp.mapInterface( (void **)&xMapped, pUnoI2, getCppuType( &xOriginal ) ); (*pUnoI2->release)( pUnoI2 ); } @@ -849,7 +849,7 @@ OSL_ENSURE( pXIface != 0, "create test object failed\n"); /* Get interface XFoo2 */ - if (CUNO_EXCEPTION_OCCURED( CUNO_CALL(pXIface)->queryInterface( pXIface, &aExc, (com_sun_star_uno_XInterface**)&pXLBTest, ::getCppuType( &xMapped ).getTypeLibType()) )) + if (CUNO_EXCEPTION_OCCURED( CUNO_CALL(pXIface)->queryInterface( pXIface, &aExc, (com_sun_star_uno_XInterface**)&pXLBTest, getCppuType( &xMapped ).getTypeLibType()) )) { uno_any_destruct( &aExc, 0 ); } @@ -858,7 +858,7 @@ Mapping aC2Cpp( OUString( RTL_CONSTASCII_USTRINGPARAM(UNO_LB_C) ), OUString( RTL_CONSTASCII_USTRINGPARAM(CPPU_CURRENT_LANGUAGE_BINDING_NAME) ) ); - aC2Cpp.mapInterface( (void **)&xMapped, pXLBTest, ::getCppuType( &xMapped ) ); + aC2Cpp.mapInterface( (void **)&xMapped, pXLBTest, getCppuType( &xMapped ) ); OSL_ENSURE( xMapped.is(), "mapping interface failed\n"); diff -Naur OOo_1.1.5-orig/cppu/test/testcppu.cxx OOo_1.1.5/cppu/test/testcppu.cxx --- OOo_1.1.5-orig/cppu/test/testcppu.cxx 2002-08-19 02:18:49.000000000 -0500 +++ OOo_1.1.5/cppu/test/testcppu.cxx 2005-10-03 21:37:57.000000000 -0500 @@ -324,8 +324,8 @@ a3.td.dDouble = 2; a3.bBool = sal_True; a3.aAny = makeAny( (sal_Int32)2 ); - OSL_ASSERT( a3.aAny.isExtractableTo( ::getCppuType( (sal_Int64 const *)0 ) ) ); - OSL_ASSERT( ::getCppuType( (sal_Int64 const *)0 ).isAssignableFrom( a3.aAny.getValueType() ) ); + OSL_ASSERT( a3.aAny.isExtractableTo( getCppuType( (sal_Int64 const *)0 ) ) ); + OSL_ASSERT( getCppuType( (sal_Int64 const *)0 ).isAssignableFrom( a3.aAny.getValueType() ) ); bAssignable = uno_type_assignData( &sz3, getCppuType( (Test3*)0).getTypeLibType(), &a3, getCppuType( (Test3*)0).getTypeLibType(), @@ -579,7 +579,7 @@ static void test_assignSimple( const T & rVal, /*const*/ Any /*&*/ rAny ) { typelib_TypeDescription * pTD = 0; - ::getCppuType( &rVal ).getDescription( &pTD ); + getCppuType( &rVal ).getDescription( &pTD ); sal_Bool bTable = s_aAssignableFromTab[pTD->eTypeClass-1][rAny.getValueTypeClass()-1]; OSL_ASSERT( (bTable!=sal_False) == diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase1.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase1.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase1.hxx 2004-01-28 09:29:53.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase1.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -115,8 +115,8 @@ 1 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper1< Ifc1 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper1< Ifc1 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper1< Ifc1 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper1< Ifc1 > *) 16) - 16 } } }; /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and @@ -163,8 +163,8 @@ 1 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper1< Ifc1 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper1< Ifc1 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper1< Ifc1 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper1< Ifc1 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase10.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase10.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase10.hxx 2004-01-28 09:30:23.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase10.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -115,8 +115,8 @@ 10 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 } } }; /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and @@ -163,8 +163,8 @@ 10 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase11.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase11.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase11.hxx 2004-01-28 09:30:54.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase11.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -115,8 +115,8 @@ 11 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc11 > const * ))&getCppuType, ((sal_Int32)(Ifc11 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc11::static_type, ((sal_Int32)(Ifc11 *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 } } }; /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and @@ -163,8 +163,8 @@ 11 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc11 > const * ))&getCppuType, ((sal_Int32)(Ifc11 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc11::static_type, ((sal_Int32)(Ifc11 *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase12.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase12.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase12.hxx 2004-01-28 09:31:29.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase12.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -115,8 +115,8 @@ 12 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc11 > const * ))&getCppuType, ((sal_Int32)(Ifc11 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc12 > const * ))&getCppuType, ((sal_Int32)(Ifc12 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc11::static_type, ((sal_Int32)(Ifc11 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc12::static_type, ((sal_Int32)(Ifc12 *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 } } }; /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and @@ -163,8 +163,8 @@ 12 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc11 > const * ))&getCppuType, ((sal_Int32)(Ifc11 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc12 > const * ))&getCppuType, ((sal_Int32)(Ifc12 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc11::static_type, ((sal_Int32)(Ifc11 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc12::static_type, ((sal_Int32)(Ifc12 *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase2.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase2.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase2.hxx 2004-01-28 09:32:04.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase2.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -115,9 +115,9 @@ 2 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 } } }; /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and @@ -164,9 +164,9 @@ 2 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase3.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase3.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase3.hxx 2004-01-28 09:32:42.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase3.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -115,10 +115,10 @@ 3 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 } } }; /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and @@ -165,10 +165,10 @@ 3 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase4.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase4.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase4.hxx 2004-01-28 09:33:03.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase4.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -115,11 +115,11 @@ 4 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 } } }; /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and @@ -166,11 +166,11 @@ 4 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase5.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase5.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase5.hxx 2004-01-28 09:33:35.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase5.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -115,12 +115,12 @@ 5 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 } } }; /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and @@ -167,12 +167,12 @@ 5 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase6.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase6.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase6.hxx 2004-01-28 09:34:19.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase6.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -115,13 +115,13 @@ 6 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 } } }; /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and @@ -168,13 +168,13 @@ 6 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase7.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase7.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase7.hxx 2004-01-28 09:34:56.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase7.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -115,8 +115,8 @@ 7 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 } } }; /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and @@ -163,8 +163,8 @@ 7 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase8.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase8.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase8.hxx 2004-01-28 09:35:27.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase8.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -115,8 +115,8 @@ 8 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 } } }; /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and @@ -163,8 +163,8 @@ 8 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase9.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase9.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/compbase9.hxx 2004-01-28 09:35:53.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/compbase9.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -115,8 +115,8 @@ 9 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 } } }; /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and @@ -163,8 +163,8 @@ 9 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase.hxx 2004-01-28 09:36:21.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -259,11 +259,11 @@ static ClassData##N s_aCD; \ public: \ virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw (::com::sun::star::uno::RuntimeException) \ - { return getClassData( s_aCD ).query( rType, (ImplHelperBase##N< __IFC##N > *)this ); } \ + { return this->getClassData( s_aCD ).query( rType, (ImplHelperBase##N< __IFC##N > *)this ); } \ virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException) \ - { return getClassData( s_aCD ).getTypes(); } \ + { return this->getClassData( s_aCD ).getTypes(); } \ virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException) \ - { return getClassData( s_aCD ).getImplementationId(); } \ + { return this->getClassData( s_aCD ).getImplementationId(); } \ }; \ template< __CLASS_IFC##N > \ class SAL_NO_VTABLE WeakImplHelper##N \ @@ -274,7 +274,7 @@ public: \ virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw (::com::sun::star::uno::RuntimeException) \ { \ - ::com::sun::star::uno::Any aRet( getClassData( s_aCD ).query( rType, (ImplHelperBase##N< __IFC##N > *)this ) ); \ + ::com::sun::star::uno::Any aRet( this->getClassData( s_aCD ).query( rType, (ImplHelperBase##N< __IFC##N > *)this ) ); \ return (aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType )); \ } \ virtual void SAL_CALL acquire() throw () \ @@ -282,9 +282,9 @@ virtual void SAL_CALL release() throw () \ { OWeakObject::release(); } \ virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException) \ - { return getClassData( s_aCD ).getTypes(); } \ + { return this->getClassData( s_aCD ).getTypes(); } \ virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException) \ - { return getClassData( s_aCD ).getImplementationId(); } \ + { return this->getClassData( s_aCD ).getImplementationId(); } \ }; \ template< __CLASS_IFC##N > \ class SAL_NO_VTABLE WeakAggImplHelper##N \ @@ -297,7 +297,7 @@ { return OWeakAggObject::queryInterface( rType ); } \ virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( const ::com::sun::star::uno::Type & rType ) throw (::com::sun::star::uno::RuntimeException) \ { \ - ::com::sun::star::uno::Any aRet( getClassData( s_aCD ).query( rType, (ImplHelperBase##N< __IFC##N > *)this ) ); \ + ::com::sun::star::uno::Any aRet( this->getClassData( s_aCD ).query( rType, (ImplHelperBase##N< __IFC##N > *)this ) ); \ return (aRet.hasValue() ? aRet : OWeakAggObject::queryAggregation( rType )); \ } \ virtual void SAL_CALL acquire() throw () \ @@ -305,9 +305,9 @@ virtual void SAL_CALL release() throw () \ { OWeakAggObject::release(); } \ virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException) \ - { return getClassData( s_aCD ).getTypes(); } \ + { return this->getClassData( s_aCD ).getTypes(); } \ virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException) \ - { return getClassData( s_aCD ).getImplementationId(); } \ + { return this->getClassData( s_aCD ).getImplementationId(); } \ }; /** Implementation helper macro: have a look at __DEF_IMPLHELPER_PRE diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase1.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase1.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase1.hxx 2004-01-28 09:36:53.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase1.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -112,8 +112,8 @@ 1 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplHelper1< Ifc1 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper1< Ifc1 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper1< Ifc1 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper1< Ifc1 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -150,8 +150,8 @@ 1 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakImplHelper1< Ifc1 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper1< Ifc1 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper1< Ifc1 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper1< Ifc1 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -195,8 +195,8 @@ 1 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper1< Ifc1 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper1< Ifc1 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper1< Ifc1 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper1< Ifc1 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -244,8 +244,8 @@ 1 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper1< BaseClass, Ifc1 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper1< BaseClass, Ifc1 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper1< BaseClass, Ifc1 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper1< BaseClass, Ifc1 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -295,8 +295,8 @@ 1 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper1< BaseClass, Ifc1 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper1< BaseClass, Ifc1 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper1< BaseClass, Ifc1 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper1< BaseClass, Ifc1 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase10.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase10.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase10.hxx 2004-01-28 09:37:26.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase10.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -116,8 +116,8 @@ 10 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -154,8 +154,8 @@ 10 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -199,8 +199,8 @@ 10 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -248,8 +248,8 @@ 10 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -299,8 +299,8 @@ 10 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper10< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase11.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase11.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase11.hxx 2004-01-28 09:37:59.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase11.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -117,8 +117,8 @@ 11 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc11 > const * ))&getCppuType, ((sal_Int32)(Ifc11 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc11::static_type, ((sal_Int32)(Ifc11 *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -155,8 +155,8 @@ 11 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc11 > const * ))&getCppuType, ((sal_Int32)(Ifc11 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc11::static_type, ((sal_Int32)(Ifc11 *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -200,8 +200,8 @@ 11 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc11 > const * ))&getCppuType, ((sal_Int32)(Ifc11 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc11::static_type, ((sal_Int32)(Ifc11 *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -249,8 +249,8 @@ 11 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc11 > const * ))&getCppuType, ((sal_Int32)(Ifc11 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc11::static_type, ((sal_Int32)(Ifc11 *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -300,8 +300,8 @@ 11 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc11 > const * ))&getCppuType, ((sal_Int32)(Ifc11 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, { Ifc11::static_type, ((sal_Int32)(Ifc11 *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper11< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase12.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase12.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase12.hxx 2004-01-28 09:38:27.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase12.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -117,8 +117,8 @@ 12 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc11 > const * ))&getCppuType, ((sal_Int32)(Ifc11 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc12 > const * ))&getCppuType, ((sal_Int32)(Ifc12 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc11::static_type, ((sal_Int32)(Ifc11 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc12::static_type, ((sal_Int32)(Ifc12 *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -155,8 +155,8 @@ 12 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc11 > const * ))&getCppuType, ((sal_Int32)(Ifc11 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc12 > const * ))&getCppuType, ((sal_Int32)(Ifc12 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc11::static_type, ((sal_Int32)(Ifc11 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc12::static_type, ((sal_Int32)(Ifc12 *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -200,8 +200,8 @@ 12 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc11 > const * ))&getCppuType, ((sal_Int32)(Ifc11 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc12 > const * ))&getCppuType, ((sal_Int32)(Ifc12 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc11::static_type, ((sal_Int32)(Ifc11 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc12::static_type, ((sal_Int32)(Ifc12 *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -249,8 +249,8 @@ 12 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc11 > const * ))&getCppuType, ((sal_Int32)(Ifc11 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc12 > const * ))&getCppuType, ((sal_Int32)(Ifc12 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc11::static_type, ((sal_Int32)(Ifc11 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc12::static_type, ((sal_Int32)(Ifc12 *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -300,8 +300,8 @@ 12 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc10 > const * ))&getCppuType, ((sal_Int32)(Ifc10 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc11 > const * ))&getCppuType, ((sal_Int32)(Ifc11 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc12 > const * ))&getCppuType, ((sal_Int32)(Ifc12 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc10::static_type, ((sal_Int32)(Ifc10 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc11::static_type, ((sal_Int32)(Ifc11 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, { Ifc12::static_type, ((sal_Int32)(Ifc12 *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper12< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase2.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase2.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase2.hxx 2004-01-28 09:39:01.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase2.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -112,9 +112,9 @@ 2 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper2< Ifc1, Ifc2 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper2< Ifc1, Ifc2 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -151,9 +151,9 @@ 2 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper2< Ifc1, Ifc2 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper2< Ifc1, Ifc2 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -197,9 +197,9 @@ 2 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper2< Ifc1, Ifc2 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper2< Ifc1, Ifc2 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -247,9 +247,9 @@ 2 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -299,9 +299,9 @@ 2 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase3.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase3.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase3.hxx 2004-01-28 09:39:45.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase3.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -113,10 +113,10 @@ 3 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -153,10 +153,10 @@ 3 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -200,10 +200,10 @@ 3 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -251,10 +251,10 @@ 3 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -304,10 +304,10 @@ 3 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase4.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase4.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase4.hxx 2004-01-28 09:40:19.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase4.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -113,11 +113,11 @@ 4 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -154,11 +154,11 @@ 4 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -202,11 +202,11 @@ 4 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -254,11 +254,11 @@ 4 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -308,11 +308,11 @@ 4 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase5.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase5.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase5.hxx 2004-01-28 09:40:53.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase5.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -114,12 +114,12 @@ 5 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -156,12 +156,12 @@ 5 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -205,12 +205,12 @@ 5 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -258,12 +258,12 @@ 5 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -313,12 +313,12 @@ 5 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase6.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase6.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase6.hxx 2004-01-28 09:41:20.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase6.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -114,13 +114,13 @@ 6 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -157,13 +157,13 @@ 6 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -207,13 +207,13 @@ 6 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -261,13 +261,13 @@ 6 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -317,13 +317,13 @@ 6 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase7.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase7.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase7.hxx 2004-01-28 09:41:53.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase7.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -115,8 +115,8 @@ 7 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -153,8 +153,8 @@ 7 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -198,8 +198,8 @@ 7 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -247,8 +247,8 @@ 7 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -298,8 +298,8 @@ 7 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper7< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase8.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase8.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase8.hxx 2004-01-28 09:42:34.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase8.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -115,8 +115,8 @@ 8 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -153,8 +153,8 @@ 8 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -198,8 +198,8 @@ 8 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -247,8 +247,8 @@ 8 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -298,8 +298,8 @@ 8 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper8< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase9.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase9.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/implbase9.hxx 2004-01-28 09:43:15.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/implbase9.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -116,8 +116,8 @@ 9 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -154,8 +154,8 @@ 9 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -199,8 +199,8 @@ 9 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -248,8 +248,8 @@ 9 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 } } }; /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and @@ -299,8 +299,8 @@ 9 +1, sal_False, sal_False, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc3 > const * ))&getCppuType, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc4 > const * ))&getCppuType, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc5 > const * ))&getCppuType, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc6 > const * ))&getCppuType, ((sal_Int32)(Ifc6 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc7 > const * ))&getCppuType, ((sal_Int32)(Ifc7 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc8 > const * ))&getCppuType, ((sal_Int32)(Ifc8 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc9 > const * ))&getCppuType, ((sal_Int32)(Ifc9 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, - { (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 } + { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc7::static_type, ((sal_Int32)(Ifc7 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc8::static_type, ((sal_Int32)(Ifc8 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, { Ifc9::static_type, ((sal_Int32)(Ifc9 *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 }, + { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper9< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9 > *) 16) - 16 } } }; } diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/queryinterface.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/queryinterface.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/queryinterface.hxx 2001-11-09 07:49:15.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/queryinterface.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -62,11 +62,18 @@ #ifndef _CPPUHELPER_QUERYINTERFACE_HXX_ #define _CPPUHELPER_QUERYINTERFACE_HXX_ -#ifndef _COM_SUN_STAR_UNO_XINTERFACE_HPP_ -#include +#ifndef _SAL_CONFIG_H_ +#include "sal/config.h" #endif -#ifndef _COM_SUN_STAR_UNO_REFERENCE_HXX_ -#include + +#ifndef _COM_SUN_STAR_UNO_ANY_HXX_ +#include "com/sun/star/uno/Any.hxx" +#endif +#ifndef _COM_SUN_STAR_UNO_TYPE_HXX_ +#include "com/sun/star/uno/Type.hxx" +#endif +#ifndef _SAL_TYPES_H_ +#include "sal/types.h" #endif namespace cppu @@ -85,7 +92,7 @@ Interface1 * p1 ) SAL_THROW( () ) { - if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 )) + if (rType == Interface1::static_type()) return ::com::sun::star::uno::Any( &p1, rType ); else return ::com::sun::star::uno::Any(); @@ -105,9 +112,9 @@ Interface1 * p1, Interface2 * p2 ) SAL_THROW( () ) { - if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 )) + if (rType == Interface1::static_type()) return ::com::sun::star::uno::Any( &p1, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 )) + else if (rType == Interface2::static_type()) return ::com::sun::star::uno::Any( &p2, rType ); else return ::com::sun::star::uno::Any(); @@ -129,11 +136,11 @@ Interface1 * p1, Interface2 * p2, Interface3 * p3 ) SAL_THROW( () ) { - if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 )) + if (rType == Interface1::static_type()) return ::com::sun::star::uno::Any( &p1, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 )) + else if (rType == Interface2::static_type()) return ::com::sun::star::uno::Any( &p2, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 )) + else if (rType == Interface3::static_type()) return ::com::sun::star::uno::Any( &p3, rType ); else return ::com::sun::star::uno::Any(); @@ -157,13 +164,13 @@ Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4 ) SAL_THROW( () ) { - if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 )) + if (rType == Interface1::static_type()) return ::com::sun::star::uno::Any( &p1, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 )) + else if (rType == Interface2::static_type()) return ::com::sun::star::uno::Any( &p2, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 )) + else if (rType == Interface3::static_type()) return ::com::sun::star::uno::Any( &p3, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 )) + else if (rType == Interface4::static_type()) return ::com::sun::star::uno::Any( &p4, rType ); else return ::com::sun::star::uno::Any(); @@ -189,15 +196,15 @@ Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5 ) SAL_THROW( () ) { - if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 )) + if (rType == Interface1::static_type()) return ::com::sun::star::uno::Any( &p1, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 )) + else if (rType == Interface2::static_type()) return ::com::sun::star::uno::Any( &p2, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 )) + else if (rType == Interface3::static_type()) return ::com::sun::star::uno::Any( &p3, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 )) + else if (rType == Interface4::static_type()) return ::com::sun::star::uno::Any( &p4, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 )) + else if (rType == Interface5::static_type()) return ::com::sun::star::uno::Any( &p5, rType ); else return ::com::sun::star::uno::Any(); @@ -227,17 +234,17 @@ Interface6 * p6 ) SAL_THROW( () ) { - if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 )) + if (rType == Interface1::static_type()) return ::com::sun::star::uno::Any( &p1, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 )) + else if (rType == Interface2::static_type()) return ::com::sun::star::uno::Any( &p2, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 )) + else if (rType == Interface3::static_type()) return ::com::sun::star::uno::Any( &p3, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 )) + else if (rType == Interface4::static_type()) return ::com::sun::star::uno::Any( &p4, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 )) + else if (rType == Interface5::static_type()) return ::com::sun::star::uno::Any( &p5, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *)0 )) + else if (rType == Interface6::static_type()) return ::com::sun::star::uno::Any( &p6, rType ); else return ::com::sun::star::uno::Any(); @@ -269,19 +276,19 @@ Interface6 * p6, Interface7 * p7 ) SAL_THROW( () ) { - if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 )) + if (rType == Interface1::static_type()) return ::com::sun::star::uno::Any( &p1, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 )) + else if (rType == Interface2::static_type()) return ::com::sun::star::uno::Any( &p2, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 )) + else if (rType == Interface3::static_type()) return ::com::sun::star::uno::Any( &p3, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 )) + else if (rType == Interface4::static_type()) return ::com::sun::star::uno::Any( &p4, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 )) + else if (rType == Interface5::static_type()) return ::com::sun::star::uno::Any( &p5, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *)0 )) + else if (rType == Interface6::static_type()) return ::com::sun::star::uno::Any( &p6, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *)0 )) + else if (rType == Interface7::static_type()) return ::com::sun::star::uno::Any( &p7, rType ); else return ::com::sun::star::uno::Any(); @@ -315,21 +322,21 @@ Interface6 * p6, Interface7 * p7, Interface8 * p8 ) SAL_THROW( () ) { - if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 )) + if (rType == Interface1::static_type()) return ::com::sun::star::uno::Any( &p1, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 )) + else if (rType == Interface2::static_type()) return ::com::sun::star::uno::Any( &p2, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 )) + else if (rType == Interface3::static_type()) return ::com::sun::star::uno::Any( &p3, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 )) + else if (rType == Interface4::static_type()) return ::com::sun::star::uno::Any( &p4, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 )) + else if (rType == Interface5::static_type()) return ::com::sun::star::uno::Any( &p5, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *)0 )) + else if (rType == Interface6::static_type()) return ::com::sun::star::uno::Any( &p6, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *)0 )) + else if (rType == Interface7::static_type()) return ::com::sun::star::uno::Any( &p7, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *)0 )) + else if (rType == Interface8::static_type()) return ::com::sun::star::uno::Any( &p8, rType ); else return ::com::sun::star::uno::Any(); @@ -365,23 +372,23 @@ Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9 ) SAL_THROW( () ) { - if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 )) + if (rType == Interface1::static_type()) return ::com::sun::star::uno::Any( &p1, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 )) + else if (rType == Interface2::static_type()) return ::com::sun::star::uno::Any( &p2, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 )) + else if (rType == Interface3::static_type()) return ::com::sun::star::uno::Any( &p3, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 )) + else if (rType == Interface4::static_type()) return ::com::sun::star::uno::Any( &p4, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 )) + else if (rType == Interface5::static_type()) return ::com::sun::star::uno::Any( &p5, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *)0 )) + else if (rType == Interface6::static_type()) return ::com::sun::star::uno::Any( &p6, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *)0 )) + else if (rType == Interface7::static_type()) return ::com::sun::star::uno::Any( &p7, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *)0 )) + else if (rType == Interface8::static_type()) return ::com::sun::star::uno::Any( &p8, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface9 > *)0 )) + else if (rType == Interface9::static_type()) return ::com::sun::star::uno::Any( &p9, rType ); else return ::com::sun::star::uno::Any(); @@ -419,25 +426,25 @@ Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9, Interface10 * p10 ) SAL_THROW( () ) { - if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 )) + if (rType == Interface1::static_type()) return ::com::sun::star::uno::Any( &p1, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 )) + else if (rType == Interface2::static_type()) return ::com::sun::star::uno::Any( &p2, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 )) + else if (rType == Interface3::static_type()) return ::com::sun::star::uno::Any( &p3, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 )) + else if (rType == Interface4::static_type()) return ::com::sun::star::uno::Any( &p4, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 )) + else if (rType == Interface5::static_type()) return ::com::sun::star::uno::Any( &p5, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *)0 )) + else if (rType == Interface6::static_type()) return ::com::sun::star::uno::Any( &p6, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *)0 )) + else if (rType == Interface7::static_type()) return ::com::sun::star::uno::Any( &p7, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *)0 )) + else if (rType == Interface8::static_type()) return ::com::sun::star::uno::Any( &p8, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface9 > *)0 )) + else if (rType == Interface9::static_type()) return ::com::sun::star::uno::Any( &p9, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface10 > *)0 )) + else if (rType == Interface10::static_type()) return ::com::sun::star::uno::Any( &p10, rType ); else return ::com::sun::star::uno::Any(); @@ -479,27 +486,27 @@ Interface11 * p11 ) SAL_THROW( () ) { - if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 )) + if (rType == Interface1::static_type()) return ::com::sun::star::uno::Any( &p1, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 )) + else if (rType == Interface2::static_type()) return ::com::sun::star::uno::Any( &p2, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 )) + else if (rType == Interface3::static_type()) return ::com::sun::star::uno::Any( &p3, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 )) + else if (rType == Interface4::static_type()) return ::com::sun::star::uno::Any( &p4, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 )) + else if (rType == Interface5::static_type()) return ::com::sun::star::uno::Any( &p5, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *)0 )) + else if (rType == Interface6::static_type()) return ::com::sun::star::uno::Any( &p6, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *)0 )) + else if (rType == Interface7::static_type()) return ::com::sun::star::uno::Any( &p7, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *)0 )) + else if (rType == Interface8::static_type()) return ::com::sun::star::uno::Any( &p8, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface9 > *)0 )) + else if (rType == Interface9::static_type()) return ::com::sun::star::uno::Any( &p9, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface10 > *)0 )) + else if (rType == Interface10::static_type()) return ::com::sun::star::uno::Any( &p10, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface11 > *)0 )) + else if (rType == Interface11::static_type()) return ::com::sun::star::uno::Any( &p11, rType ); else return ::com::sun::star::uno::Any(); @@ -543,29 +550,29 @@ Interface11 * p11, Interface12 * p12 ) SAL_THROW( () ) { - if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 )) + if (rType == Interface1::static_type()) return ::com::sun::star::uno::Any( &p1, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 )) + else if (rType == Interface2::static_type()) return ::com::sun::star::uno::Any( &p2, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 )) + else if (rType == Interface3::static_type()) return ::com::sun::star::uno::Any( &p3, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 )) + else if (rType == Interface4::static_type()) return ::com::sun::star::uno::Any( &p4, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 )) + else if (rType == Interface5::static_type()) return ::com::sun::star::uno::Any( &p5, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *)0 )) + else if (rType == Interface6::static_type()) return ::com::sun::star::uno::Any( &p6, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *)0 )) + else if (rType == Interface7::static_type()) return ::com::sun::star::uno::Any( &p7, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *)0 )) + else if (rType == Interface8::static_type()) return ::com::sun::star::uno::Any( &p8, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface9 > *)0 )) + else if (rType == Interface9::static_type()) return ::com::sun::star::uno::Any( &p9, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface10 > *)0 )) + else if (rType == Interface10::static_type()) return ::com::sun::star::uno::Any( &p10, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface11 > *)0 )) + else if (rType == Interface11::static_type()) return ::com::sun::star::uno::Any( &p11, rType ); - else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface12 > *)0 )) + else if (rType == Interface12::static_type()) return ::com::sun::star::uno::Any( &p12, rType ); else return ::com::sun::star::uno::Any(); diff -Naur OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/stdidlclass.hxx OOo_1.1.5/cppuhelper/inc/cppuhelper/stdidlclass.hxx --- OOo_1.1.5-orig/cppuhelper/inc/cppuhelper/stdidlclass.hxx 2001-10-29 09:27:57.000000000 -0600 +++ OOo_1.1.5/cppuhelper/inc/cppuhelper/stdidlclass.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -102,9 +102,7 @@ SAL_THROW( () ) { ::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(1); - seqInterface.getArray()[0] = - ::getCppuType( ( ::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); - + seqInterface.getArray()[0] = Interface1::static_type().getTypeName(); return createStandardClassWithSequence( rSMgr, sImplementationName, @@ -127,12 +125,8 @@ SAL_THROW( () ) { ::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(2); - seqInterface.getArray()[0] = - ::getCppuType( ( ::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); - - seqInterface.getArray()[1] = - ::getCppuType( ( ::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); - + seqInterface.getArray()[0] = Interface1::static_type().getTypeName(); + seqInterface.getArray()[1] = Interface2::static_type().getTypeName(); return createStandardClassWithSequence( rSMgr, sImplementationName, @@ -158,15 +152,9 @@ SAL_THROW( () ) { ::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(3); - seqInterface.getArray()[0] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); - - seqInterface.getArray()[1] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); - - seqInterface.getArray()[2] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName(); - + seqInterface.getArray()[0] = Interface1::static_type().getTypeName(); + seqInterface.getArray()[1] = Interface2::static_type().getTypeName(); + seqInterface.getArray()[2] = Interface3::static_type().getTypeName(); return createStandardClassWithSequence( rSMgr, sImplementationName, @@ -193,18 +181,10 @@ SAL_THROW( () ) { ::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(4); - seqInterface.getArray()[0] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); - - seqInterface.getArray()[1] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); - - seqInterface.getArray()[2] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName(); - - seqInterface.getArray()[3] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *) 0 ).getTypeName(); - + seqInterface.getArray()[0] = Interface1::static_type().getTypeName(); + seqInterface.getArray()[1] = Interface2::static_type().getTypeName(); + seqInterface.getArray()[2] = Interface3::static_type().getTypeName(); + seqInterface.getArray()[3] = Interface4::static_type().getTypeName(); return createStandardClassWithSequence( rSMgr, sImplementationName, @@ -234,21 +214,11 @@ SAL_THROW( () ) { ::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(5); - seqInterface.getArray()[0] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); - - seqInterface.getArray()[1] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); - - seqInterface.getArray()[2] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName(); - - seqInterface.getArray()[3] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *) 0 ).getTypeName(); - - seqInterface.getArray()[4] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *) 0 ).getTypeName(); - + seqInterface.getArray()[0] = Interface1::static_type().getTypeName(); + seqInterface.getArray()[1] = Interface2::static_type().getTypeName(); + seqInterface.getArray()[2] = Interface3::static_type().getTypeName(); + seqInterface.getArray()[3] = Interface4::static_type().getTypeName(); + seqInterface.getArray()[4] = Interface5::static_type().getTypeName(); return createStandardClassWithSequence( rSMgr, sImplementationName, @@ -277,24 +247,12 @@ SAL_THROW( () ) { ::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(6); - seqInterface.getArray()[0] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); - - seqInterface.getArray()[1] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); - - seqInterface.getArray()[2] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName(); - - seqInterface.getArray()[3] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *) 0 ).getTypeName(); - - seqInterface.getArray()[4] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *) 0 ).getTypeName(); - - seqInterface.getArray()[5] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *) 0 ).getTypeName(); - + seqInterface.getArray()[0] = Interface1::static_type().getTypeName(); + seqInterface.getArray()[1] = Interface2::static_type().getTypeName(); + seqInterface.getArray()[2] = Interface3::static_type().getTypeName(); + seqInterface.getArray()[3] = Interface4::static_type().getTypeName(); + seqInterface.getArray()[4] = Interface5::static_type().getTypeName(); + seqInterface.getArray()[5] = Interface6::static_type().getTypeName(); return createStandardClassWithSequence( rSMgr, sImplementationName, @@ -325,27 +283,13 @@ SAL_THROW( () ) { ::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(7); - seqInterface.getArray()[0] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); - - seqInterface.getArray()[1] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); - - seqInterface.getArray()[2] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName(); - - seqInterface.getArray()[3] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *) 0 ).getTypeName(); - - seqInterface.getArray()[4] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *) 0 ).getTypeName(); - - seqInterface.getArray()[5] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *) 0 ).getTypeName(); - - seqInterface.getArray()[6] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *) 0 ).getTypeName(); - + seqInterface.getArray()[0] = Interface1::static_type().getTypeName(); + seqInterface.getArray()[1] = Interface2::static_type().getTypeName(); + seqInterface.getArray()[2] = Interface3::static_type().getTypeName(); + seqInterface.getArray()[3] = Interface4::static_type().getTypeName(); + seqInterface.getArray()[4] = Interface5::static_type().getTypeName(); + seqInterface.getArray()[5] = Interface6::static_type().getTypeName(); + seqInterface.getArray()[6] = Interface7::static_type().getTypeName(); return createStandardClassWithSequence( rSMgr, sImplementationName, @@ -378,30 +322,14 @@ SAL_THROW( () ) { ::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(8); - seqInterface.getArray()[0] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); - - seqInterface.getArray()[1] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); - - seqInterface.getArray()[2] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName(); - - seqInterface.getArray()[3] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *) 0 ).getTypeName(); - - seqInterface.getArray()[4] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *) 0 ).getTypeName(); - - seqInterface.getArray()[5] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *) 0 ).getTypeName(); - - seqInterface.getArray()[6] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *) 0 ).getTypeName(); - - seqInterface.getArray()[7] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *) 0 ).getTypeName(); - + seqInterface.getArray()[0] = Interface1::static_type().getTypeName(); + seqInterface.getArray()[1] = Interface2::static_type().getTypeName(); + seqInterface.getArray()[2] = Interface3::static_type().getTypeName(); + seqInterface.getArray()[3] = Interface4::static_type().getTypeName(); + seqInterface.getArray()[4] = Interface5::static_type().getTypeName(); + seqInterface.getArray()[5] = Interface6::static_type().getTypeName(); + seqInterface.getArray()[6] = Interface7::static_type().getTypeName(); + seqInterface.getArray()[7] = Interface8::static_type().getTypeName(); return createStandardClassWithSequence( rSMgr, sImplementationName, @@ -433,33 +361,15 @@ SAL_THROW( () ) { ::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(9); - seqInterface.getArray()[0] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); - - seqInterface.getArray()[1] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); - - seqInterface.getArray()[2] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName(); - - seqInterface.getArray()[3] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *) 0 ).getTypeName(); - - seqInterface.getArray()[4] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *) 0 ).getTypeName(); - - seqInterface.getArray()[5] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *) 0 ).getTypeName(); - - seqInterface.getArray()[6] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *) 0 ).getTypeName(); - - seqInterface.getArray()[7] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *) 0 ).getTypeName(); - - seqInterface.getArray()[8] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface9 > *) 0 ).getTypeName(); - + seqInterface.getArray()[0] = Interface1::static_type().getTypeName(); + seqInterface.getArray()[1] = Interface2::static_type().getTypeName(); + seqInterface.getArray()[2] = Interface3::static_type().getTypeName(); + seqInterface.getArray()[3] = Interface4::static_type().getTypeName(); + seqInterface.getArray()[4] = Interface5::static_type().getTypeName(); + seqInterface.getArray()[5] = Interface6::static_type().getTypeName(); + seqInterface.getArray()[6] = Interface7::static_type().getTypeName(); + seqInterface.getArray()[7] = Interface8::static_type().getTypeName(); + seqInterface.getArray()[8] = Interface9::static_type().getTypeName(); return createStandardClassWithSequence( rSMgr, sImplementationName, @@ -490,36 +400,16 @@ SAL_THROW( () ) { ::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(10); - seqInterface.getArray()[0] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); - - seqInterface.getArray()[1] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); - - seqInterface.getArray()[2] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName(); - - seqInterface.getArray()[3] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *) 0 ).getTypeName(); - - seqInterface.getArray()[4] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *) 0 ).getTypeName(); - - seqInterface.getArray()[5] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *) 0 ).getTypeName(); - - seqInterface.getArray()[6] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *) 0 ).getTypeName(); - - seqInterface.getArray()[7] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *) 0 ).getTypeName(); - - seqInterface.getArray()[8] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface9 > *) 0 ).getTypeName(); - - seqInterface.getArray()[9] = - ::getCppuType( (::com::sun::star::uno::Reference< Interface10 > *) 0 ).getTypeName(); - + seqInterface.getArray()[0] = Interface1::static_type().getTypeName(); + seqInterface.getArray()[1] = Interface2::static_type().getTypeName(); + seqInterface.getArray()[2] = Interface3::static_type().getTypeName(); + seqInterface.getArray()[3] = Interface4::static_type().getTypeName(); + seqInterface.getArray()[4] = Interface5::static_type().getTypeName(); + seqInterface.getArray()[5] = Interface6::static_type().getTypeName(); + seqInterface.getArray()[6] = Interface7::static_type().getTypeName(); + seqInterface.getArray()[7] = Interface8::static_type().getTypeName(); + seqInterface.getArray()[8] = Interface9::static_type().getTypeName(); + seqInterface.getArray()[9] = Interface10::static_type().getTypeName(); return createStandardClassWithSequence( rSMgr, sImplementationName, diff -Naur OOo_1.1.5-orig/cppuhelper/prj/d.lst OOo_1.1.5/cppuhelper/prj/d.lst --- OOo_1.1.5-orig/cppuhelper/prj/d.lst 2004-01-28 09:44:10.000000000 -0600 +++ OOo_1.1.5/cppuhelper/prj/d.lst 2005-10-03 21:37:57.000000000 -0500 @@ -60,6 +60,8 @@ ..\%__SRC%\lib\*cppuhelper*.lib %_DEST%\lib%_EXT%\* ..\%__SRC%\lib\libcppuhelper*.so* %_DEST%\lib%_EXT%\* +..\%__SRC%\lib\libcppuhelperC52.so.3 %_DEST%\lib%_EXT%\libcppuhelper3C52.so +..\%__SRC%\lib\libcppuhelpergcc3.so.3 %_DEST%\lib%_EXT%\libcppuhelper3gcc3.so ..\%__SRC%\lib\libcppuhelper*.dylib* %_DEST%\lib%_EXT%\* ..\%__SRC%\lib\libcppuhelper*.a %_DEST%\lib%_EXT%\* diff -Naur OOo_1.1.5-orig/dbaccess/source/core/dataaccess/SharedConnection.hxx OOo_1.1.5/dbaccess/source/core/dataaccess/SharedConnection.hxx --- OOo_1.1.5-orig/dbaccess/source/core/dataaccess/SharedConnection.hxx 2002-08-12 04:21:58.000000000 -0500 +++ OOo_1.1.5/dbaccess/source/core/dataaccess/SharedConnection.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -200,8 +200,10 @@ virtual sal_Int32 SAL_CALL getTransactionIsolation( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > SAL_CALL getTypeMap( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); }; - + +#ifdef IMPLEMENT_GET_IMPLEMENTATION_ID IMPLEMENT_GET_IMPLEMENTATION_ID( OSharedConnection ); +#endif //........................................................................ } // namespace dbaccess //........................................................................ diff -Naur OOo_1.1.5-orig/desktop/source/app/app.cxx OOo_1.1.5/desktop/source/app/app.cxx --- OOo_1.1.5-orig/desktop/source/app/app.cxx 2005-06-16 10:21:18.000000000 -0500 +++ OOo_1.1.5/desktop/source/app/app.cxx 2005-10-03 21:37:57.000000000 -0500 @@ -478,7 +478,10 @@ { ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() ); if ( !pArgs ) - pArgs = new CommandLineArgs( ::vos::OExtCommandLine() ); + { + ::vos::OExtCommandLine aArgs; + pArgs = new CommandLineArgs( aArgs ); + } } return pArgs; diff -Naur OOo_1.1.5-orig/extensions/source/bibliography/framectr.hxx OOo_1.1.5/extensions/source/bibliography/framectr.hxx --- OOo_1.1.5-orig/extensions/source/bibliography/framectr.hxx 2002-05-08 03:50:24.000000000 -0500 +++ OOo_1.1.5/extensions/source/bibliography/framectr.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -106,6 +106,7 @@ typedef BibStatusDispatch* BibStatusDispatchPtr; SV_DECL_PTRARR_DEL( BibStatusDispatchArr, BibStatusDispatchPtr, 4, 4 ); +class BibFrameCtrl_Impl; class BibFrameController_Impl : public cppu::WeakImplHelper3 < ::com::sun::star::frame::XController, ::com::sun::star::frame::XDispatch, diff -Naur OOo_1.1.5-orig/extensions/source/bibliography/loadlisteneradapter.hxx OOo_1.1.5/extensions/source/bibliography/loadlisteneradapter.hxx --- OOo_1.1.5-orig/extensions/source/bibliography/loadlisteneradapter.hxx 2003-03-25 10:03:02.000000000 -0600 +++ OOo_1.1.5/extensions/source/bibliography/loadlisteneradapter.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -85,6 +85,7 @@ //===================================================================== //= OComponentListener //===================================================================== + class OComponentAdapterBase; class OComponentListener { friend class OComponentAdapterBase; diff -Naur OOo_1.1.5-orig/extensions/source/dbimport/sdbstorage.hxx OOo_1.1.5/extensions/source/dbimport/sdbstorage.hxx --- OOo_1.1.5-orig/extensions/source/dbimport/sdbstorage.hxx 2003-03-25 10:03:16.000000000 -0600 +++ OOo_1.1.5/extensions/source/dbimport/sdbstorage.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -87,6 +87,7 @@ Internes Verzeichnis fuer Datenbankstorage, ein einzelner Eintrage besteht aus Key und Name /---------------------------------------------------------------------------*/ + class SdbStorage; class SdbStorageDir { friend class SdbStorage; diff -Naur OOo_1.1.5-orig/extensions/source/plugin/inc/plugin/plctrl.hxx OOo_1.1.5/extensions/source/plugin/inc/plugin/plctrl.hxx --- OOo_1.1.5-orig/extensions/source/plugin/inc/plugin/plctrl.hxx 2003-06-30 10:14:41.000000000 -0500 +++ OOo_1.1.5/extensions/source/plugin/inc/plugin/plctrl.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -173,9 +173,9 @@ virtual Reference< XInterface > SAL_CALL getContext() throw( RuntimeException ) { return _xContext; } - virtual sal_Bool SAL_CALL setModel( const Reference< ::com::sun::star::awt::XControlModel > & Model ) throw( RuntimeException ) = NULL; + virtual sal_Bool SAL_CALL setModel( const Reference< ::com::sun::star::awt::XControlModel > & Model ) throw( RuntimeException ) = 0; // { DBG_ERROR( "### setModel() illegal on plugincontrol!" ); return sal_False; } - virtual Reference< ::com::sun::star::awt::XControlModel > SAL_CALL getModel() throw( RuntimeException ) = NULL; + virtual Reference< ::com::sun::star::awt::XControlModel > SAL_CALL getModel() throw( RuntimeException ) = 0; virtual Reference< ::com::sun::star::awt::XView > SAL_CALL getView() throw( RuntimeException ) { return (::com::sun::star::awt::XView*)this; } diff -Naur OOo_1.1.5-orig/forms/source/component/GroupManager.hxx OOo_1.1.5/forms/source/component/GroupManager.hxx --- OOo_1.1.5-orig/forms/source/component/GroupManager.hxx 2003-03-25 12:01:17.000000000 -0600 +++ OOo_1.1.5/forms/source/component/GroupManager.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -128,7 +128,7 @@ template sal_Int32 insert_sorted(::std::vector& _rArray, const ELEMENT& _rNewElement, const LESS_COMPARE& _rCompareOp) { - ::std::vector::iterator aInsertPos = lower_bound( + typename ::std::vector::iterator aInsertPos = lower_bound( _rArray.begin(), _rArray.end(), _rNewElement, @@ -141,7 +141,7 @@ template sal_Bool seek_entry(const ::std::vector& _rArray, const ELEMENT& _rNewElement, sal_Int32& nPos, const LESS_COMPARE& _rCompareOp) { - ::std::vector::const_iterator aExistentPos = ::std::lower_bound( + typename ::std::vector::const_iterator aExistentPos = lower_bound( _rArray.begin(), _rArray.end(), _rNewElement, diff -Naur OOo_1.1.5-orig/forms/source/component/Image.hxx OOo_1.1.5/forms/source/component/Image.hxx --- OOo_1.1.5-orig/forms/source/component/Image.hxx 2003-05-22 05:47:29.000000000 -0500 +++ OOo_1.1.5/forms/source/component/Image.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -197,6 +197,7 @@ typedef ::cppu::ImplHelper2< ::com::sun::star::form::XApproveActionBroadcaster, ::com::sun::star::beans::XPropertyChangeListener> OImageControl_BASE; +class OImageControlThread_Impl; class OImageControl : public OImageControl_BASE, public OControl { diff -Naur OOo_1.1.5-orig/framework/inc/classes/addonmenu.hxx OOo_1.1.5/framework/inc/classes/addonmenu.hxx --- OOo_1.1.5-orig/framework/inc/classes/addonmenu.hxx 2003-04-04 11:11:47.000000000 -0600 +++ OOo_1.1.5/framework/inc/classes/addonmenu.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -120,7 +120,7 @@ rtl::OUString m_aCommandURL; ::com::sun::star::uno::Reference< com::sun::star::frame::XFrame >& m_xFrame; - friend AddonMenuManager; + friend class AddonMenuManager; }; class AddonMenuManager diff -Naur OOo_1.1.5-orig/icu/icu-2.2.patch OOo_1.1.5/icu/icu-2.2.patch --- OOo_1.1.5-orig/icu/icu-2.2.patch 2004-07-06 05:40:19.000000000 -0500 +++ OOo_1.1.5/icu/icu-2.2.patch 2005-10-03 21:37:57.000000000 -0500 @@ -17,16 +17,6 @@ echo "$ac_t"""C compiler set to CCC ${CC}" " 1>&6 case "${host}" in alpha*-*-*) U_HAVE_INTTYPES_H=0; -*************** -*** 2964,2969 **** ---- 2964,2970 ---- - #ifndef __USE_POSIX - #define __USE_POSIX - #endif -+ #include - #include - #ifndef tzname /* For SGI. */ - extern char *tzname[]; /* RS6000 and others reject char **tzname. */ *** misc/icu/source/configure.in Fri Aug 9 19:20:56 2002 --- misc/build/icu/source/configure.in Tue Jul 22 10:11:48 2003 *************** @@ -46,16 +36,6 @@ AC_MSG_RESULT("C compiler set to CCC ${CC}" ) case "${host}" in alpha*-*-*) U_HAVE_INTTYPES_H=0; -*************** -*** 448,453 **** ---- 448,454 ---- - <<#ifndef __USE_POSIX - #define __USE_POSIX - #endif -+ #include - #include - #ifndef tzname /* For SGI. */ - extern char *tzname[]; /* RS6000 and others reject char **tzname. */ *** misc/icu/source/icudefs.mk.in Wed Jul 31 22:28:32 2002 --- misc/build/icu/source/icudefs.mk.in Tue Jul 22 10:11:49 2003 *************** @@ -130,6 +110,20 @@ /** * Create BreakIterator for line-breaks using specified locale. +*** misc/icu/source/common/unicode/locid.h 2004-05-05 17:24:14.299356195 -0400 +--- misc/build/icu/source/common/unicode/locid.h 2002-08-01 19:21:36.000000000 -0400 +*************** +*** 728,734 **** +--- 728,736 ---- + #ifdef ICU_LOCID_USE_DEPRECATES + static Locale fgDefaultLocale; + #else ++ # if (__GNUC_MINOR__ < 4) && (__GNUC__ <= 3) + friend struct LocaleProxy; ++ # endif + #endif + + static const Locale &getLocale(int locid); *** misc/icu/source/config/mh-darwin Wed May 29 18:45:06 2002 --- misc/build/icu/source/config/mh-darwin Tue Jul 22 10:11:48 2003 *************** diff -Naur OOo_1.1.5-orig/icu/makefile.mk OOo_1.1.5/icu/makefile.mk --- OOo_1.1.5-orig/icu/makefile.mk 2004-10-28 05:37:57.000000000 -0500 +++ OOo_1.1.5/icu/makefile.mk 2005-10-03 21:37:57.000000000 -0500 @@ -93,7 +93,7 @@ CONFIGURE_DIR=source -CONFIGURE_ACTION=sh -c 'CFLAGS=-O CXXFLAGS=-O ./configure --enable-layout --enable-static --enable-shared=yes --enable-64bit-libs=no' +CONFIGURE_ACTION=sh -c 'CFLAGS=-O CXXFLAGS=-O ./configure --enable-layout --enable-static --enable-shared=yes --enable-64bit-libs=no --enable-extras=no' #CONFIGURE_FLAGS=--enable-layout --enable-static --enable-shared=yes --enable-64bit-libs=no CONFIGURE_FLAGS= diff -Naur OOo_1.1.5-orig/idl/inc/hash.hxx OOo_1.1.5/idl/inc/hash.hxx --- OOo_1.1.5-orig/idl/inc/hash.hxx 2000-09-18 11:30:41.000000000 -0500 +++ OOo_1.1.5/idl/inc/hash.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -99,7 +99,7 @@ class SvStringHashTable; class SvStringHashEntry : public SvRefBase { -friend SvStringHashTable; +friend class SvStringHashTable; ByteString aName; UINT32 nHashId; ULONG nValue; diff -Naur OOo_1.1.5-orig/padmin/source/padialog.hxx OOo_1.1.5/padmin/source/padialog.hxx --- OOo_1.1.5-orig/padmin/source/padialog.hxx 2001-06-19 08:47:44.000000000 -0500 +++ OOo_1.1.5/padmin/source/padialog.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -94,6 +94,7 @@ // forward declaration namespace psp { class PrinterInfoManager; } +class Printer; namespace padmin { diff -Naur OOo_1.1.5-orig/psprint/inc/psprint/fontmanager.hxx OOo_1.1.5/psprint/inc/psprint/fontmanager.hxx --- OOo_1.1.5-orig/psprint/inc/psprint/fontmanager.hxx 2004-04-07 06:04:23.000000000 -0500 +++ OOo_1.1.5/psprint/inc/psprint/fontmanager.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -218,6 +218,8 @@ KernPair() : first( 0 ), second( 0 ), kern_x( 0 ), kern_y( 0 ) {} }; +class FontCache; + // a class to manage printable fonts // aims are type1 and truetype fonts diff -Naur OOo_1.1.5-orig/psprint/inc/psprint/printergfx.hxx OOo_1.1.5/psprint/inc/psprint/printergfx.hxx --- OOo_1.1.5-orig/psprint/inc/psprint/printergfx.hxx 2003-06-30 09:26:09.000000000 -0500 +++ OOo_1.1.5/psprint/inc/psprint/printergfx.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -166,6 +166,7 @@ * forward declarations */ +class Font3; class GlyphSet; class PrinterJob; class PrintFontManager; diff -Naur OOo_1.1.5-orig/psprint/source/helper/ppdparser.cxx OOo_1.1.5/psprint/source/helper/ppdparser.cxx --- OOo_1.1.5-orig/psprint/source/helper/ppdparser.cxx 2004-02-19 04:58:29.000000000 -0600 +++ OOo_1.1.5/psprint/source/helper/ppdparser.cxx 2005-10-03 21:37:57.000000000 -0500 @@ -67,7 +67,7 @@ // define a hash for PPDKey namespace psp { class PPDKey; } -struct std::hash< const psp::PPDKey* > +template<> struct std::hash< const psp::PPDKey* > { size_t operator()( const psp::PPDKey * pKey) const { return (size_t)pKey; } diff -Naur OOo_1.1.5-orig/pyuno/source/module/makefile.mk OOo_1.1.5/pyuno/source/module/makefile.mk --- OOo_1.1.5-orig/pyuno/source/module/makefile.mk 2004-05-03 11:48:10.000000000 -0500 +++ OOo_1.1.5/pyuno/source/module/makefile.mk 2005-10-03 21:37:57.000000000 -0500 @@ -63,6 +63,8 @@ TARGET=pyuno ENABLE_EXCEPTIONS=TRUE +LINKFLAGSDEFS = # do not fail with missing symbols + # --- Settings ----------------------------------------------------- .INCLUDE : settings.mk diff -Naur OOo_1.1.5-orig/sablot/Sablot-0.52.patch OOo_1.1.5/sablot/Sablot-0.52.patch --- OOo_1.1.5-orig/sablot/Sablot-0.52.patch 2003-08-05 04:41:11.000000000 -0500 +++ OOo_1.1.5/sablot/Sablot-0.52.patch 2005-10-03 21:37:57.000000000 -0500 @@ -1,9 +1,66 @@ +*** misc/Sablot-0.52/Sablot/engine/datastr.h 2001-03-29 03:19:53.000000000 -0500 +--- misc/build/Sablot-0.52/Sablot/engine/datastr.h 2004-05-07 15:54:49.355554612 -0400 +*************** +*** 752,758 **** + * but need to use swap() to drag extra pointers along + */ + for (k = ceiling - 1; k >= bottom && compare(k, k + 1) > 0; k--) +! swap(k, k+1); + } + } + +--- 752,758 ---- + * but need to use swap() to drag extra pointers along + */ + for (k = ceiling - 1; k >= bottom && compare(k, k + 1) > 0; k--) +! SList::swap(k, k+1); + } + } + +*************** +*** 760,768 **** + void SList::qsPartition(int& bottom, int& top) + { + int middle = (bottom + top) >> 1; +! if (compare(bottom, top) > 0) swap(bottom, top); +! if (compare(middle, top) > 0) swap(middle, top); +! if (compare(bottom, middle) > 0) swap(bottom, middle); + // T pivot = List::block[middle]; + while (bottom <= top) + { +--- 760,768 ---- + void SList::qsPartition(int& bottom, int& top) + { + int middle = (bottom + top) >> 1; +! if (compare(bottom, top) > 0) SList::swap(bottom, top); +! if (compare(middle, top) > 0) SList::swap(middle, top); +! if (compare(bottom, middle) > 0) SList::swap(bottom, middle); + // T pivot = List::block[middle]; + while (bottom <= top) + { +*************** +*** 776,782 **** + middle = top; + else if (middle == top) + middle = bottom; +! swap(bottom, top); + } + } + } +--- 776,782 ---- + middle = top; + else if (middle == top) + middle = bottom; +! SList::swap(bottom, top); + } + } + } *** misc/Sablot-0.52/Sablot/engine/makefile.mk Mon Aug 4 14:28:03 2003 --- misc/build/Sablot-0.52/Sablot/engine/makefile.mk Mon Aug 4 14:17:39 2003 *************** *** 1 **** ! dummy ---- 1,163 ---- +--- 1,164 ---- ! #************************************************************************* ! # ! # $RCSfile: makefile.mk,v $ @@ -83,6 +140,7 @@ ! ! .IF "$(OS)"=="SOLARIS" ! CFLAGS+= -DHAVE_IEEEFP_H -DHAVE_UNISTD_H +! CFLAGSCXX+=-instances=static ! .ENDIF ! ! .IF "$(OS)"=="LINUX" || "$(OS)"=="MACOSX" || "$(OS)"=="FREEBSD" || "$(OS)"=="IRIX" || "$(OS)"=="NETBSD" diff -Naur OOo_1.1.5-orig/sal/inc/osl/mutex.hxx OOo_1.1.5/sal/inc/osl/mutex.hxx --- OOo_1.1.5-orig/sal/inc/osl/mutex.hxx 2003-04-04 11:10:54.000000000 -0600 +++ OOo_1.1.5/sal/inc/osl/mutex.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -245,8 +245,8 @@ { if( pResetT ) { - pT = pResetT; - pT->acquire(); + ResettableGuard< T >::pT = pResetT; + ResettableGuard< T >::pT->acquire(); } } }; diff -Naur OOo_1.1.5-orig/sal/inc/rtl/instance.hxx OOo_1.1.5/sal/inc/rtl/instance.hxx --- OOo_1.1.5-orig/sal/inc/rtl/instance.hxx 2003-05-22 04:32:56.000000000 -0500 +++ OOo_1.1.5/sal/inc/rtl/instance.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -343,7 +343,7 @@ p = m_pInstance; if (!p) { - p = aInstCtor(data); + p = aInstCtor(aData); OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER(); m_pInstance = p; } diff -Naur OOo_1.1.5-orig/sal/rtl/source/guard.c OOo_1.1.5/sal/rtl/source/guard.c --- OOo_1.1.5-orig/sal/rtl/source/guard.c 1969-12-31 18:00:00.000000000 -0600 +++ OOo_1.1.5/sal/rtl/source/guard.c 2005-10-03 21:37:57.000000000 -0500 @@ -0,0 +1,66 @@ +/************************************************************************* + * + * $RCSfile: sal-cxa-guard.diff,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: dj $ $Date: 2005-10-06 19:29:58 -0500 (Thu, 06 Oct 2005) $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +void __cxa_guard_release() +{} + +void __cxa_guard_acquire() +{} diff -Naur OOo_1.1.5-orig/sal/rtl/source/makefile.mk OOo_1.1.5/sal/rtl/source/makefile.mk --- OOo_1.1.5-orig/sal/rtl/source/makefile.mk 2004-05-03 12:14:26.000000000 -0500 +++ OOo_1.1.5/sal/rtl/source/makefile.mk 2005-10-03 21:37:57.000000000 -0500 @@ -80,7 +80,8 @@ ALWAYSDBGFILES = $(SLO)$/debugprint.obj -SLOFILES= $(SLO)$/alloc.obj \ +SLOFILES= $(SLO)$/guard.obj \ + $(SLO)$/alloc.obj \ $(SLO)$/memory.obj \ $(SLO)$/cipher.obj \ $(SLO)$/crc.obj \ @@ -102,12 +103,13 @@ $(SLO)$/unload.obj \ $(SLO)$/logfile.obj \ $(SLO)$/tres.obj \ - $(SLO)$/math.obj \ - $(SLO)$/debugprint.obj + $(SLO)$/debugprint.obj \ + $(SLO)$/math.obj #.IF "$(UPDATER)"=="YES" -OBJFILES= $(OBJ)$/alloc.obj \ +OBJFILES= $(OBJ)$/guard.obj \ + $(OBJ)$/alloc.obj \ $(OBJ)$/memory.obj \ $(OBJ)$/cipher.obj \ $(OBJ)$/crc.obj \ @@ -129,8 +131,8 @@ $(OBJ)$/unload.obj \ $(OBJ)$/logfile.obj \ $(OBJ)$/tres.obj \ - $(OBJ)$/math.obj \ - $(OBJ)$/debugprint.obj + $(OBJ)$/debugprint.obj \ + $(OBJ)$/math.obj #.ENDIF diff -Naur OOo_1.1.5-orig/sal/textenc/convertbig5hkscs.c OOo_1.1.5/sal/textenc/convertbig5hkscs.c --- OOo_1.1.5-orig/sal/textenc/convertbig5hkscs.c 2002-02-25 09:07:48.000000000 -0600 +++ OOo_1.1.5/sal/textenc/convertbig5hkscs.c 2005-10-03 21:37:57.000000000 -0500 @@ -139,7 +139,7 @@ for (; nConverted < nSrcBytes; ++nConverted) { sal_Bool bUndefined = sal_True; - sal_uInt32 nChar = *((sal_uChar const *) pSrcBuf)++; + sal_uInt32 nChar = *(sal_uChar const *) pSrcBuf++; if (nRow == 0) if (nChar < 0x80) if (pDestBufPtr != pDestBufEnd) diff -Naur OOo_1.1.5-orig/sal/textenc/converteuctw.c OOo_1.1.5/sal/textenc/converteuctw.c --- OOo_1.1.5-orig/sal/textenc/converteuctw.c 2001-11-19 11:46:37.000000000 -0600 +++ OOo_1.1.5/sal/textenc/converteuctw.c 2005-10-03 21:37:57.000000000 -0500 @@ -154,7 +154,7 @@ for (; nConverted < nSrcBytes; ++nConverted) { sal_Bool bUndefined = sal_True; - sal_uInt32 nChar = *((sal_uChar const *) pSrcBuf)++; + sal_uInt32 nChar = *(sal_uChar const *) pSrcBuf++; switch (eState) { case IMPL_EUC_TW_TO_UNICODE_STATE_0: diff -Naur OOo_1.1.5-orig/sal/textenc/convertgb18030.c OOo_1.1.5/sal/textenc/convertgb18030.c --- OOo_1.1.5-orig/sal/textenc/convertgb18030.c 2001-11-19 11:46:37.000000000 -0600 +++ OOo_1.1.5/sal/textenc/convertgb18030.c 2005-10-03 21:37:57.000000000 -0500 @@ -147,7 +147,7 @@ for (; nConverted < nSrcBytes; ++nConverted) { sal_Bool bUndefined = sal_True; - sal_uInt32 nChar = *((sal_uChar const *) pSrcBuf)++; + sal_uInt32 nChar = *(sal_uChar const *) pSrcBuf++; switch (eState) { case IMPL_GB_18030_TO_UNICODE_STATE_0: diff -Naur OOo_1.1.5-orig/sal/textenc/convertiso2022cn.c OOo_1.1.5/sal/textenc/convertiso2022cn.c --- OOo_1.1.5-orig/sal/textenc/convertiso2022cn.c 2001-11-23 03:42:41.000000000 -0600 +++ OOo_1.1.5/sal/textenc/convertiso2022cn.c 2005-10-03 21:37:57.000000000 -0500 @@ -187,7 +187,7 @@ for (; nConverted < nSrcBytes; ++nConverted) { sal_Bool bUndefined = sal_True; - sal_uInt32 nChar = *((sal_uChar const *) pSrcBuf)++; + sal_uInt32 nChar = *(sal_uChar const *) pSrcBuf++; sal_uInt32 nPlane; switch (eState) { diff -Naur OOo_1.1.5-orig/sal/textenc/convertiso2022jp.c OOo_1.1.5/sal/textenc/convertiso2022jp.c --- OOo_1.1.5-orig/sal/textenc/convertiso2022jp.c 2001-11-23 03:42:42.000000000 -0600 +++ OOo_1.1.5/sal/textenc/convertiso2022jp.c 2005-10-03 21:37:57.000000000 -0500 @@ -162,7 +162,7 @@ for (; nConverted < nSrcBytes; ++nConverted) { sal_Bool bUndefined = sal_True; - sal_uInt32 nChar = *((sal_uChar const *) pSrcBuf)++; + sal_uInt32 nChar = *(sal_uChar const *) pSrcBuf++; switch (eState) { case IMPL_ISO_2022_JP_TO_UNICODE_STATE_ASCII: diff -Naur OOo_1.1.5-orig/sal/textenc/convertiso2022kr.c OOo_1.1.5/sal/textenc/convertiso2022kr.c --- OOo_1.1.5-orig/sal/textenc/convertiso2022kr.c 2001-11-23 03:42:42.000000000 -0600 +++ OOo_1.1.5/sal/textenc/convertiso2022kr.c 2005-10-03 21:37:57.000000000 -0500 @@ -161,7 +161,7 @@ for (; nConverted < nSrcBytes; ++nConverted) { sal_Bool bUndefined = sal_True; - sal_uInt32 nChar = *((sal_uChar const *) pSrcBuf)++; + sal_uInt32 nChar = *(sal_uChar const *) pSrcBuf++; switch (eState) { case IMPL_ISO_2022_KR_TO_UNICODE_STATE_ASCII: diff -Naur OOo_1.1.5-orig/sc/inc/chgtrack.hxx OOo_1.1.5/sc/inc/chgtrack.hxx --- OOo_1.1.5-orig/sc/inc/chgtrack.hxx 2004-01-09 08:40:23.000000000 -0600 +++ OOo_1.1.5/sc/inc/chgtrack.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -714,11 +714,7 @@ class ScChangeActionMove : public ScChangeAction { friend class ScChangeTrack; -#ifdef IRIX friend class ScChangeActionDel; -#else - friend void ScChangeActionDel::UndoCutOffMoves(); -#endif ScBigRange aFromRange; ScChangeTrack* pTrack; @@ -1013,11 +1009,7 @@ class ScChangeActionReject : public ScChangeAction { friend class ScChangeTrack; -#ifdef IRIX friend class ScChangeActionContent; -#else - friend BOOL ScChangeActionContent::Select( ScDocument*, ScChangeTrack*, BOOL, Stack* ); -#endif ScChangeActionReject( ULONG nReject ) : ScChangeAction( SC_CAT_REJECT, ScRange() ) diff -Naur OOo_1.1.5-orig/sc/inc/scextopt.hxx OOo_1.1.5/sc/inc/scextopt.hxx --- OOo_1.1.5-orig/sc/inc/scextopt.hxx 2003-03-26 12:03:36.000000000 -0600 +++ OOo_1.1.5/sc/inc/scextopt.hxx 2005-10-03 21:37:57.000000000 -0500 @@ -140,7 +140,7 @@ { // Code: colrowst.cxx private: - friend ColRowSettings; + friend class ColRowSettings; // Window -Info ScExtTabOptions** ppExtTabOpts; diff -Naur OOo_1.1.5-orig/sc/source/filter/inc/colrowst.hxx OOo_1.1.5/sc/source/filter/inc/colrowst.hxx --- OOo_1.1.5-orig/sc/source/filter/inc/colrowst.hxx 2003-05-21 03:01:14.000000000 -0500 +++ OOo_1.1.5/sc/source/filter/inc/colrowst.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -93,7 +93,7 @@ { private: // ACHTUNG: Col-/Row-Angaben in TWIPS - friend ScExtDocOptions; + friend class ScExtDocOptions; ScfUInt16List* pHorizPb; // horizontale Seitenumbrueche ScfUInt16List* pVertPb; // vertikale ~ diff -Naur OOo_1.1.5-orig/sc/source/filter/inc/dif.hxx OOo_1.1.5/sc/source/filter/inc/dif.hxx --- OOo_1.1.5-orig/sc/source/filter/inc/dif.hxx 2003-03-26 12:04:58.000000000 -0600 +++ OOo_1.1.5/sc/source/filter/inc/dif.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -208,7 +208,7 @@ class DifColumn : private List { private: - friend DifAttrCache; + friend class DifAttrCache; struct ENTRY { UINT32 nNumFormat; --- OOo_1.1.5-orig/sc/source/filter/inc/excrecds.hxx 2004-09-24 04:21:02.000000000 -0500 +++ OOo_1.1.5/sc/source/filter/inc/excrecds.hxx 2005-10-02 04:17:20.000000000 -0500 @@ -1009,6 +1009,7 @@ //-------------------------------------------------------------- class ExcRow - +class DefRowXFs; class ExcRow : public ExcRecord { private: diff -Naur OOo_1.1.5-orig/sc/source/filter/inc/lotattr.hxx OOo_1.1.5/sc/source/filter/inc/lotattr.hxx --- OOo_1.1.5-orig/sc/source/filter/inc/lotattr.hxx 2000-09-18 11:45:13.000000000 -0500 +++ OOo_1.1.5/sc/source/filter/inc/lotattr.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -109,7 +109,7 @@ class LotAttrCache : private List { private: - friend LotAttrTable; + friend class LotAttrTable; struct ENTRY { diff -Naur OOo_1.1.5-orig/sc/source/filter/inc/lotrange.hxx OOo_1.1.5/sc/source/filter/inc/lotrange.hxx --- OOo_1.1.5-orig/sc/source/filter/inc/lotrange.hxx 2000-09-18 11:45:13.000000000 -0500 +++ OOo_1.1.5/sc/source/filter/inc/lotrange.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -75,7 +75,7 @@ class LotusRange { - friend LotusRangeList; + friend class LotusRangeList; private: UINT32 nHash; UINT16 nColStart; diff -Naur OOo_1.1.5-orig/sc/source/filter/inc/namebuff.hxx OOo_1.1.5/sc/source/filter/inc/namebuff.hxx --- OOo_1.1.5-orig/sc/source/filter/inc/namebuff.hxx 2004-09-24 04:21:16.000000000 -0500 +++ OOo_1.1.5/sc/source/filter/inc/namebuff.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -89,7 +89,7 @@ class StringHashEntry { private: - friend NameBuffer; + friend class NameBuffer; String aString; UINT32 nHash; diff -Naur OOo_1.1.5-orig/sc/source/filter/inc/xcl97rec.hxx OOo_1.1.5/sc/source/filter/inc/xcl97rec.hxx --- OOo_1.1.5-orig/sc/source/filter/inc/xcl97rec.hxx 2003-11-14 05:04:06.000000000 -0600 +++ OOo_1.1.5/sc/source/filter/inc/xcl97rec.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -655,7 +655,7 @@ class XclCf : public ExcRecord, protected XclExpRoot { private: - friend XclCondFormat; + friend class XclCondFormat; sal_Char* pVarData; // formats + formulas UINT16 nVarLen; // len of attributes + formulas diff -Naur OOo_1.1.5-orig/sc/source/ui/inc/AccessibleText.hxx OOo_1.1.5/sc/source/ui/inc/AccessibleText.hxx --- OOo_1.1.5-orig/sc/source/ui/inc/AccessibleText.hxx 2003-03-26 12:06:09.000000000 -0600 +++ OOo_1.1.5/sc/source/ui/inc/AccessibleText.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -97,18 +97,18 @@ ScAccessibleTextData() {} virtual ~ScAccessibleTextData() {} - virtual ScAccessibleTextData* Clone() const = NULL; + virtual ScAccessibleTextData* Clone() const = 0; virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) {} - virtual SvxTextForwarder* GetTextForwarder() = NULL; - virtual SvxViewForwarder* GetViewForwarder() = NULL; - virtual SvxEditViewForwarder* GetEditViewForwarder( sal_Bool bCreate ) = NULL; + virtual SvxTextForwarder* GetTextForwarder() = 0; + virtual SvxViewForwarder* GetViewForwarder() = 0; + virtual SvxEditViewForwarder* GetEditViewForwarder( sal_Bool bCreate ) = 0; virtual SfxBroadcaster& GetBroadcaster() const { return maBroadcaster; } - virtual void UpdateData() = NULL; - virtual void SetDoUpdate(sal_Bool bValue) = NULL; - virtual sal_Bool IsDirty() const = NULL; + virtual void UpdateData() = 0; + virtual void SetDoUpdate(sal_Bool bValue) = 0; + virtual sal_Bool IsDirty() const = 0; private: mutable SfxBroadcaster maBroadcaster; diff -Naur OOo_1.1.5-orig/scaddins/source/analysis/analysishelper.hxx OOo_1.1.5/scaddins/source/analysis/analysishelper.hxx --- OOo_1.1.5-orig/scaddins/source/analysis/analysishelper.hxx 2003-06-04 05:31:56.000000000 -0500 +++ OOo_1.1.5/scaddins/source/analysis/analysishelper.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -614,7 +614,7 @@ class ConvertData { protected: - friend ConvertDataList; + friend class ConvertDataList; double fConst; STRING aName; ConvertDataClass eClass; diff -Naur OOo_1.1.5-orig/sd/inc/sdoutl.hxx OOo_1.1.5/sd/inc/sdoutl.hxx --- OOo_1.1.5-orig/sd/inc/sdoutl.hxx 2002-12-03 03:31:50.000000000 -0600 +++ OOo_1.1.5/sd/inc/sdoutl.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -192,7 +192,7 @@ private: /// Specifies whether to search and replace or to spell check. - enum {SEARCH, SPELL} meMode; + enum mode {SEARCH, SPELL} meMode; /// The view which displays the searched objects. SdView* mpView; diff -Naur OOo_1.1.5-orig/sd/inc/sdpage.hxx OOo_1.1.5/sd/inc/sdpage.hxx --- OOo_1.1.5-orig/sd/inc/sdpage.hxx 2004-02-09 07:02:23.000000000 -0600 +++ OOo_1.1.5/sd/inc/sdpage.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -91,6 +91,7 @@ class SfxItemSet; struct StyleRequestData; class SvxDrawPage; +class SvxShape; enum PresObjKind { diff -Naur OOo_1.1.5-orig/sd/source/ui/inc/animobjs.hxx OOo_1.1.5/sd/source/ui/inc/animobjs.hxx --- OOo_1.1.5-orig/sd/source/ui/inc/animobjs.hxx 2002-06-06 05:05:14.000000000 -0500 +++ OOo_1.1.5/sd/source/ui/inc/animobjs.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -141,6 +141,7 @@ //------------------------------------------------------------------------ +class SdAnimationControllerItem; class SdAnimationWin : public SfxDockingWindow { friend class SdAnimationChildWindow; diff -Naur OOo_1.1.5-orig/sd/source/ui/inc/effect.hxx OOo_1.1.5/sd/source/ui/inc/effect.hxx --- OOo_1.1.5-orig/sd/source/ui/inc/effect.hxx 2002-05-21 09:03:43.000000000 -0500 +++ OOo_1.1.5/sd/source/ui/inc/effect.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -127,6 +127,8 @@ //------------------------------------------------------------------------ +class SdEffectCtrlItem; +class SdEffectPrevCtrlItem; class SdEffectWin : public SfxDockingWindow { friend class SdEffectChildWindow; diff -Naur OOo_1.1.5-orig/sd/source/ui/inc/fuslshow.hxx OOo_1.1.5/sd/source/ui/inc/fuslshow.hxx --- OOo_1.1.5-orig/sd/source/ui/inc/fuslshow.hxx 2003-04-28 12:42:56.000000000 -0500 +++ OOo_1.1.5/sd/source/ui/inc/fuslshow.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -138,6 +138,7 @@ class SvtSaveOptions; class SdrAttrObj; class SdCustomShow; +class SdMetaFile; // ----------- // - Defines - diff -Naur OOo_1.1.5-orig/sd/source/ui/inc/navigatr.hxx OOo_1.1.5/sd/source/ui/inc/navigatr.hxx --- OOo_1.1.5-orig/sd/source/ui/inc/navigatr.hxx 2002-05-21 09:14:26.000000000 -0500 +++ OOo_1.1.5/sd/source/ui/inc/navigatr.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -133,6 +133,9 @@ //------------------------------------------------------------------------ +class SdNavigatorControllerItem; +class SdPageNameControllerItem; +class SdNavigatorChildWindow; class SdNavigatorWin : public Window { friend class SdNavigatorChildWindow; diff -Naur OOo_1.1.5-orig/sd/source/ui/inc/preview.hxx OOo_1.1.5/sd/source/ui/inc/preview.hxx --- OOo_1.1.5-orig/sd/source/ui/inc/preview.hxx 2003-03-27 04:57:58.000000000 -0600 +++ OOo_1.1.5/sd/source/ui/inc/preview.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -88,6 +88,7 @@ class FuSlideShow; class SdDrawView; class SdShowWindow; +class SdPreviewCtrlItem; class FrameView; class SdrObject; diff -Naur OOo_1.1.5-orig/sd/source/ui/inc/slidechg.hxx OOo_1.1.5/sd/source/ui/inc/slidechg.hxx --- OOo_1.1.5-orig/sd/source/ui/inc/slidechg.hxx 2002-05-21 09:03:43.000000000 -0500 +++ OOo_1.1.5/sd/source/ui/inc/slidechg.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -108,6 +108,7 @@ class SdEffectPrevCtrlItem; +class SdSlideChangePrevCtrlItem; //------------------------------------------------------------------------ diff -Naur OOo_1.1.5-orig/sd/source/ui/view/sdoutl.cxx OOo_1.1.5/sd/source/ui/view/sdoutl.cxx --- OOo_1.1.5-orig/sd/source/ui/view/sdoutl.cxx 2004-01-16 05:09:29.000000000 -0600 +++ OOo_1.1.5/sd/source/ui/view/sdoutl.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -1369,7 +1369,7 @@ pParent = mpViewShell->GetActiveWindow(); if (pParent == NULL) - pParent = Application::GetDefModalDialogParent(); + pParent = Application::GetDefDialogParent(); return pParent; } diff -Naur OOo_1.1.5-orig/setup2/inc/chainwidthbuilder.hxx OOo_1.1.5/setup2/inc/chainwidthbuilder.hxx --- OOo_1.1.5-orig/setup2/inc/chainwidthbuilder.hxx 2002-08-16 05:47:28.000000000 -0500 +++ OOo_1.1.5/setup2/inc/chainwidthbuilder.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -118,7 +118,7 @@ m_pNewSize = new sal_Int32[nValues]; sal_Int32 i = 0; - for (std::vector::iterator it = m_aList.begin(); + for (typename std::vector::iterator it = m_aList.begin(); it != m_aList.end(); it++) { diff -Naur OOo_1.1.5-orig/sfx2/inc/bindings.hxx OOo_1.1.5/sfx2/inc/bindings.hxx --- OOo_1.1.5-orig/sfx2/inc/bindings.hxx 2003-05-28 08:23:24.000000000 -0500 +++ OOo_1.1.5/sfx2/inc/bindings.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -102,6 +102,7 @@ class SfxItemSet; class SfxDispatcher; class SfxBindings; +class SfxBindings_Impl; class Timer; struct SfxFoundCache_Impl; class SfxFoundCacheArr_Impl; diff -Naur OOo_1.1.5-orig/sfx2/inc/frame.hxx OOo_1.1.5/sfx2/inc/frame.hxx --- OOo_1.1.5-orig/sfx2/inc/frame.hxx 2003-05-26 03:27:36.000000000 -0500 +++ OOo_1.1.5/sfx2/inc/frame.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -182,6 +182,8 @@ class SfxFrameArr_Impl; class SfxCancelManager; +struct SfxFramePickEntry_Impl; +class SfxUnoFrame; class SfxFrame { friend class SfxFrameIterator; diff -Naur OOo_1.1.5-orig/sfx2/inc/fsetvwsh.hxx OOo_1.1.5/sfx2/inc/fsetvwsh.hxx --- OOo_1.1.5-orig/sfx2/inc/fsetvwsh.hxx 2000-12-07 08:33:35.000000000 -0600 +++ OOo_1.1.5/sfx2/inc/fsetvwsh.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -65,6 +65,7 @@ class SfxFrameSetDescriptor; class SfxFrame; +class SfxFrameSetWindow_Impl; class SfxURLFrame; struct SfxFrameSet_Impl; class SplitWindow; diff -Naur OOo_1.1.5-orig/sfx2/inc/mnumgr.hxx OOo_1.1.5/sfx2/inc/mnumgr.hxx --- OOo_1.1.5-orig/sfx2/inc/mnumgr.hxx 2003-05-28 08:23:35.000000000 -0500 +++ OOo_1.1.5/sfx2/inc/mnumgr.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -94,6 +94,7 @@ class SfxObjectShell; class SfxModule; class SfxViewFrame; +class SystemWindow; class SfxMenuManager : public SfxConfigItem { diff -Naur OOo_1.1.5-orig/sfx2/inc/objface.hxx OOo_1.1.5/sfx2/inc/objface.hxx --- OOo_1.1.5-orig/sfx2/inc/objface.hxx 2001-08-24 02:47:00.000000000 -0500 +++ OOo_1.1.5/sfx2/inc/objface.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -75,6 +75,7 @@ struct SfxInterface_Impl; class SfxConfigManager; class SfxConfigItem; +class SfxIFConfig_Impl; class SfxObjectUIArr_Impl ; class SfxModule; class SvStream; diff -Naur OOo_1.1.5-orig/sfx2/inc/progind.hxx OOo_1.1.5/sfx2/inc/progind.hxx --- OOo_1.1.5-orig/sfx2/inc/progind.hxx 2000-09-18 11:52:24.000000000 -0500 +++ OOo_1.1.5/sfx2/inc/progind.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -82,6 +82,7 @@ #include "sfxuno.hxx" +class SfxPopupStatusIndicator; class SfxStatusInd_Impl : public cppu::WeakImplHelper1< ::com::sun::star::task::XStatusIndicator > { long nValue; diff -Naur OOo_1.1.5-orig/sfx2/inc/tabdlg.hxx OOo_1.1.5/sfx2/inc/tabdlg.hxx --- OOo_1.1.5-orig/sfx2/inc/tabdlg.hxx 2001-06-26 09:50:55.000000000 -0500 +++ OOo_1.1.5/sfx2/inc/tabdlg.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -286,7 +286,7 @@ void SetExchangeSupport( BOOL bNew = TRUE ) { bHasExchangeSupport = bNew; } - enum { + enum sfxpg { KEEP_PAGE = 0x0000, // Fehlerbehandlung; Seite nicht wechseln // 2. F"ullen eines ItemSets f"ur die Aktualilsierung // "ubergeordneter Beispiele; dieser Pointer kann immer diff -Naur OOo_1.1.5-orig/sfx2/inc/tbxchild.hxx OOo_1.1.5/sfx2/inc/tbxchild.hxx --- OOo_1.1.5-orig/sfx2/inc/tbxchild.hxx 2002-09-05 10:38:38.000000000 -0500 +++ OOo_1.1.5/sfx2/inc/tbxchild.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -78,6 +78,7 @@ class SfxToolBoxControl; class SfxToolBox_Impl; +class SfxToolBoxManager; struct SfxChildWinInfo; diff -Naur OOo_1.1.5-orig/sfx2/inc/topfrm.hxx OOo_1.1.5/sfx2/inc/topfrm.hxx --- OOo_1.1.5-orig/sfx2/inc/topfrm.hxx 2002-10-07 04:50:17.000000000 -0500 +++ OOo_1.1.5/sfx2/inc/topfrm.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -74,6 +74,9 @@ class SfxViewShell; class SfxTopFrame; +class SfxTopFrame_Impl; +class SfxTopViewFrame_Impl; + namespace svtools { class AsynchronLink; } // class SfxTopFrame ----------------------------------------------------- diff -Naur OOo_1.1.5-orig/sfx2/inc/unoctitm.hxx OOo_1.1.5/sfx2/inc/unoctitm.hxx --- OOo_1.1.5-orig/sfx2/inc/unoctitm.hxx 2001-11-21 06:31:51.000000000 -0600 +++ OOo_1.1.5/sfx2/inc/unoctitm.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -112,6 +112,7 @@ class SfxBindings; class SfxFrame; class SfxDispatcher; +class SfxDispatchController_Impl; class SfxUnoControllerItem : public ::com::sun::star::frame::XStatusListener , public ::com::sun::star::lang::XTypeProvider , diff -Naur OOo_1.1.5-orig/sfx2/source/bastyp/minarray.cxx OOo_1.1.5/sfx2/source/bastyp/minarray.cxx --- OOo_1.1.5-orig/sfx2/source/bastyp/minarray.cxx 2000-09-18 11:52:28.000000000 -0500 +++ OOo_1.1.5/sfx2/source/bastyp/minarray.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -102,7 +102,7 @@ SfxPtrArr::~SfxPtrArr() { DBG_MEMTEST(); - __DELETE (DEL_ARRAY (nUsed+nUnused)) pData; + delete [] pData; } // ----------------------------------------------------------------------- @@ -111,7 +111,7 @@ { DBG_MEMTEST(); - __DELETE (DEL_ARRAY (nUsed+nUnused)) pData; + delete [] pData; nUsed = rOrig.nUsed; nGrow = rOrig.nGrow; @@ -142,7 +142,7 @@ { DBG_ASSERT( nUsed <= nNewSize, "" ); memmove( pNewData, pData, sizeof(void*)*nUsed ); - __DELETE (DEL_ARRAY (nUsed)) pData; + delete [] pData; } nUnused = nNewSize-nUsed; pData = pNewData; @@ -169,7 +169,7 @@ // bleibt vielleicht keiner uebrig if ( (nUsed-nLen) == 0 ) { - __DELETE (DEL_ARRAY (nUsed+nUnused)) pData; + delete [] pData; pData = 0; nUsed = 0; nUnused = 0; @@ -193,7 +193,7 @@ if ( nNewUsed != nPos ) memmove( pNewData+nPos, pData+nPos+nLen, sizeof(void*)*(nNewUsed-nPos) ); - __DELETE (DEL_ARRAY (nUsed+nUnused)) pData; + delete [] pData; pData = pNewData; nUsed = nNewUsed; nUnused = nNewSize - nNewUsed; @@ -283,7 +283,7 @@ { DBG_ASSERT( nUsed < nNewSize, "" ); memmove( pNewData, pData, sizeof(void*)*nUsed ); - __DELETE (DEL_ARRAY (nUsed)) pData; + delete [] pData; } nUnused = nNewSize-nUsed; pData = pNewData; @@ -338,7 +338,7 @@ ByteArr::~ByteArr() { DBG_MEMTEST(); - __DELETE (DEL_ARRAY (nUsed+nUnused)) pData; + delete [] pData; } // ----------------------------------------------------------------------- @@ -347,7 +347,7 @@ { DBG_MEMTEST(); - __DELETE (DEL_ARRAY (nUsed+nUnused)) pData; + delete [] pData; nUsed = rOrig.nUsed; nGrow = rOrig.nGrow; @@ -377,7 +377,7 @@ { DBG_ASSERT( nUsed <= nNewSize, "" ); memmove( pNewData, pData, sizeof(char)*nUsed ); - __DELETE (DEL_ARRAY (nUsed+nUnused)) pData; + delete [] pData; } nUnused = nNewSize-nUsed; pData = pNewData; @@ -404,7 +404,7 @@ // bleibt vielleicht keiner uebrig if ( (nUsed-nLen) == 0 ) { - __DELETE (DEL_ARRAY (nUsed+nUnused)) pData; + delete [] pData; pData = 0; nUsed = 0; nUnused = 0; @@ -428,7 +428,7 @@ if ( nNewUsed != nPos ) memmove( pNewData+nPos, pData+nPos+nLen, sizeof(char)*(nNewUsed-nPos) ); - __DELETE (DEL_ARRAY (nUsed+nUnused)) pData; + delete [] pData; pData = pNewData; nUsed = nNewUsed; nUnused = nNewSize - nNewUsed; @@ -497,7 +497,7 @@ { DBG_ASSERT( nUsed < nNewSize, "" ); memmove( pNewData, pData, sizeof(char)*nUsed ); - __DELETE (DEL_ARRAY (nUsed)) pData; + delete [] pData; } nUnused = nNewSize-nUsed; pData = pNewData; @@ -570,7 +570,7 @@ WordArr::~WordArr() { DBG_MEMTEST(); - __DELETE (DEL_ARRAY (nUsed+nUnused)) pData; + delete [] pData; } // ----------------------------------------------------------------------- @@ -579,7 +579,7 @@ { DBG_MEMTEST(); - __DELETE (DEL_ARRAY (nUsed+nUnused)) pData; + delete [] pData; nUsed = rOrig.nUsed; nGrow = rOrig.nGrow; @@ -609,7 +609,7 @@ { DBG_ASSERT( nUsed <= nNewSize, " " ); memmove( pNewData, pData, sizeof(short)*nUsed ); - __DELETE (DEL_ARRAY (nUsed)) pData; + delete [] pData; } nUnused = nNewSize-nUsed; pData = pNewData; @@ -636,7 +636,7 @@ // bleibt vielleicht keiner uebrig if ( (nUsed-nLen) == 0 ) { - __DELETE (DEL_ARRAY (nUsed+nUnused)) pData; + delete [] pData; pData = 0; nUsed = 0; nUnused = 0; @@ -660,7 +660,7 @@ if ( nNewUsed != nPos ) memmove( pNewData+nPos, pData+nPos+nLen, sizeof(short)*(nNewUsed-nPos) ); - __DELETE (DEL_ARRAY (nUsed+nUnused)) pData; + delete [] pData; pData = pNewData; nUsed = nNewUsed; nUnused = nNewSize - nNewUsed; @@ -729,7 +729,7 @@ { DBG_ASSERT( nUsed < nNewSize, "" ); memmove( pNewData, pData, sizeof(short)*nUsed ); - __DELETE (DEL_ARRAY (nUsed)) pData; + delete [] pData; } nUnused = nNewSize-nUsed; pData = pNewData; diff -Naur OOo_1.1.5-orig/sfx2/source/control/dispatch.cxx OOo_1.1.5/sfx2/source/control/dispatch.cxx --- OOo_1.1.5-orig/sfx2/source/control/dispatch.cxx 2003-03-27 05:27:53.000000000 -0600 +++ OOo_1.1.5/sfx2/source/control/dispatch.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -1294,7 +1294,7 @@ const SfxPoolItem* pRet = Execute( rItem.GetSlot(), rItem.GetCallMode(), pPtr, rItem.GetModifier() ); - __DELETE(rItem.Count() + 1) (SfxPoolItem**)pPtr; + delete [] (SfxPoolItem**)pPtr; return pRet; } diff -Naur OOo_1.1.5-orig/sfx2/source/inc/cfg.hxx OOo_1.1.5/sfx2/source/inc/cfg.hxx --- OOo_1.1.5-orig/sfx2/source/inc/cfg.hxx 2003-04-17 10:22:13.000000000 -0500 +++ OOo_1.1.5/sfx2/source/inc/cfg.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -343,7 +343,7 @@ class SfxAcceleratorConfigPage : public SfxTabPage { - friend SfxAccCfgTabListBox_Impl; + friend class SfxAccCfgTabListBox_Impl; private: const SfxMacroInfoItem* m_pMacroInfoItem; SfxAccCfgTabListBox_Impl aEntriesBox; diff -Naur OOo_1.1.5-orig/sfx2/source/inc/loadenv.hxx OOo_1.1.5/sfx2/source/inc/loadenv.hxx --- OOo_1.1.5-orig/sfx2/source/inc/loadenv.hxx 2001-07-03 07:14:51.000000000 -0500 +++ OOo_1.1.5/sfx2/source/inc/loadenv.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -89,6 +89,7 @@ class SfxFrame; class SfxFilterMatcher; class SfxErrorContext; +class SfxLoadEnvironment; class LoadEnvironment_Impl : public SvRefBase, public SfxListener { diff -Naur OOo_1.1.5-orig/sfx2/source/inc/scriptcont.hxx OOo_1.1.5/sfx2/source/inc/scriptcont.hxx --- OOo_1.1.5-orig/sfx2/source/inc/scriptcont.hxx 2003-03-27 05:28:30.000000000 -0600 +++ OOo_1.1.5/sfx2/source/inc/scriptcont.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -182,7 +182,7 @@ class SfxScriptLibrary : public SfxLibrary_Impl { - friend SfxScriptLibraryContainer; + friend class SfxScriptLibraryContainer; sal_Bool mbLoadedSource; sal_Bool mbLoadedBinary; diff -Naur OOo_1.1.5-orig/sfx2/source/inc/splitwin.hxx OOo_1.1.5/sfx2/source/inc/splitwin.hxx --- OOo_1.1.5-orig/sfx2/source/inc/splitwin.hxx 2001-09-06 02:46:05.000000000 -0500 +++ OOo_1.1.5/sfx2/source/inc/splitwin.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -69,6 +69,7 @@ class SfxWorkWindow; class SfxDockingWindow; class SfxDockArr_Impl; +class SfxEmptySplitWin_Impl; struct SfxDock_Impl; class SfxSplitWindow : public SplitWindow diff -Naur OOo_1.1.5-orig/sfx2/source/menu/virtmenu.cxx OOo_1.1.5/sfx2/source/menu/virtmenu.cxx --- OOo_1.1.5-orig/sfx2/source/menu/virtmenu.cxx 2003-05-28 08:25:16.000000000 -0500 +++ OOo_1.1.5/sfx2/source/menu/virtmenu.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -349,7 +349,7 @@ (pItems+n)->SfxMenuControl::~SfxMenuControl(); delete (void*) pItems; #else - __DELETE(nCount) pItems; + delete [] pItems; #endif } diff -Naur OOo_1.1.5-orig/sfx2/source/toolbox/tbxcust.cxx OOo_1.1.5/sfx2/source/toolbox/tbxcust.cxx --- OOo_1.1.5-orig/sfx2/source/toolbox/tbxcust.cxx 2003-05-15 05:54:28.000000000 -0500 +++ OOo_1.1.5/sfx2/source/toolbox/tbxcust.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -580,10 +580,14 @@ return 0; } -struct std::hash< SfxConfigManager* > +namespace std { +template<> struct hash< SfxConfigManager* > { size_t operator()(const SfxConfigManager* __s) const { return (size_t)__s; } }; + + +} // namespace std struct SfxConfigManagerPtrEqual { diff -Naur OOo_1.1.5-orig/sfx2/source/view/printer.cxx OOo_1.1.5/sfx2/source/view/printer.cxx --- OOo_1.1.5-orig/sfx2/source/view/printer.cxx 2003-05-28 07:26:31.000000000 -0500 +++ OOo_1.1.5/sfx2/source/view/printer.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -203,7 +203,7 @@ else { // statische Font-Sizes verwenden - __DELETE(nSizeCount) pSizes; + delete [] pSizes; nSizes = 0; } rDev.SetMapMode(aOldMapMode); @@ -222,7 +222,7 @@ SfxFontSizeInfo::~SfxFontSizeInfo() { - __DELETE(nSizes) pSizes; + delete [] pSizes; } //-------------------------------------------------------------------- diff -Naur OOo_1.1.5-orig/so3/inc/factory.hxx OOo_1.1.5/so3/inc/factory.hxx --- OOo_1.1.5-orig/so3/inc/factory.hxx 2003-04-17 12:18:34.000000000 -0500 +++ OOo_1.1.5/so3/inc/factory.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -83,6 +83,7 @@ *************************************************************************/ class SvObject; class SvStorage; +class SvFactory_Impl; class SvFactory; class ImpFactory; class SvClassManager; diff -Naur OOo_1.1.5-orig/so3/inc/lnkbase.hxx OOo_1.1.5/so3/inc/lnkbase.hxx --- OOo_1.1.5-orig/so3/inc/lnkbase.hxx 2001-07-31 03:13:19.000000000 -0500 +++ OOo_1.1.5/so3/inc/lnkbase.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -68,7 +68,7 @@ #include #endif #ifndef _LINKSOURCE_HXX -#include +#include "linksrc.hxx" #endif namespace com { namespace sun { namespace star { namespace uno @@ -97,7 +97,7 @@ #define OBJECT_CLIENT_FILE 0x90 #define OBJECT_CLIENT_GRF 0x91 -enum { +enum so3link { // Ole2 compatibel und persistent LINKUPDATE_ALWAYS = 1, LINKUPDATE_ONCALL = 3, diff -Naur OOo_1.1.5-orig/so3/source/inplace/applet2.cxx OOo_1.1.5/so3/source/inplace/applet2.cxx --- OOo_1.1.5-orig/so3/source/inplace/applet2.cxx 2003-03-27 05:28:14.000000000 -0600 +++ OOo_1.1.5/so3/source/inplace/applet2.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -95,6 +95,8 @@ #define SoResId( id ) ResId( id, SOAPP->GetResMgr() ) +class SvAppletEnvironment; + //========================================================================= //========================================================================= //========================================================================= diff -Naur OOo_1.1.5-orig/solenv/bin/gccinstlib.pl OOo_1.1.5/solenv/bin/gccinstlib.pl --- OOo_1.1.5-orig/solenv/bin/gccinstlib.pl 2004-08-27 04:55:21.000000000 -0500 +++ OOo_1.1.5/solenv/bin/gccinstlib.pl 2005-10-03 21:37:58.000000000 -0500 @@ -63,7 +63,7 @@ # #************************************************************************* -$ENV{'LC_MESSAGES'} = 'C'; +$ENV{'LC_ALL'} = 'C'; %SearchDirs = GetGccSearchDirs (); diff -Naur OOo_1.1.5-orig/solenv/inc/tg_compv.mk OOo_1.1.5/solenv/inc/tg_compv.mk --- OOo_1.1.5-orig/solenv/inc/tg_compv.mk 2004-01-09 12:59:11.000000000 -0600 +++ OOo_1.1.5/solenv/inc/tg_compv.mk 2005-10-03 21:37:58.000000000 -0500 @@ -134,6 +134,10 @@ SHORTSTDCPP3="5" .ENDIF +.IF "$(CCNUMVER)">="000300040000" +SHORTSTDCPP3="6" +.ENDIF + .ENDIF .ENDIF diff -Naur OOo_1.1.5-orig/soltools/inc/st_list.hxx OOo_1.1.5/soltools/inc/st_list.hxx --- OOo_1.1.5-orig/soltools/inc/st_list.hxx 2003-07-16 12:27:41.000000000 -0500 +++ OOo_1.1.5/soltools/inc/st_list.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -305,8 +305,8 @@ DynamicList::DynamicList( const DynamicList & i_rList ) : ST_List< XY* >(i_rList) { - for ( typename DynamicList::iterator it = begin(); - it != end(); + for ( typename DynamicList::iterator it = DynamicList::begin(); + it != DynamicList::end(); ++it ) { // Copying the contents the pointers point at: @@ -317,7 +317,7 @@ template DynamicList::~DynamicList() { - erase_all(); + DynamicList::erase_all(); } template @@ -338,24 +338,24 @@ void DynamicList::Insert(unsigned pos, XY * const & elem) { - if ( pos > len ) + if ( pos > DynamicList::len ) return; - checkSize(len+2); - memmove( inhalt+pos+1, inhalt+pos, (len-pos) * sizeof(XY*) ); - inhalt[pos] = elem; - len++; + checkSize(DynamicList::len+2); + memmove( DynamicList::inhalt+pos+1, DynamicList::inhalt+pos, (DynamicList::len-pos) * sizeof(XY*) ); + DynamicList::inhalt[pos] = elem; + DynamicList::len++; } template void DynamicList::Remove( unsigned pos ) { - if (!is_valid_index(pos) ) + if (!DynamicList::is_valid_index(pos) ) return; - len--; - delete inhalt[pos]; - memmove(inhalt+pos, inhalt+pos+1, (len-pos) * sizeof(XY*) ); + DynamicList::len--; + delete DynamicList::inhalt[pos]; + memmove(DynamicList::inhalt+pos, DynamicList::inhalt+pos+1, (DynamicList::len-pos) * sizeof(XY*) ); } diff -Naur OOo_1.1.5-orig/starmath/inc/symbol.hxx OOo_1.1.5/starmath/inc/symbol.hxx --- OOo_1.1.5-orig/starmath/inc/symbol.hxx 2001-10-02 07:57:44.000000000 -0500 +++ OOo_1.1.5/starmath/inc/symbol.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -121,6 +121,7 @@ //////////////////////////////////////////////////////////////////////////////// +class SmSymSetManager; class SmSym { friend class SmSymSetManager; diff -Naur OOo_1.1.5-orig/starmath/inc/view.hxx OOo_1.1.5/starmath/inc/view.hxx --- OOo_1.1.5-orig/starmath/inc/view.hxx 2003-04-24 12:29:12.000000000 -0500 +++ OOo_1.1.5/starmath/inc/view.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -100,6 +100,7 @@ class DataChangedEvent; class SmDocShell; class SmViewShell; +class SmClipboardChangeListener; /**************************************************************************/ diff -Naur OOo_1.1.5-orig/stoc/source/corereflection/lrucache.hxx OOo_1.1.5/stoc/source/corereflection/lrucache.hxx --- OOo_1.1.5-orig/stoc/source/corereflection/lrucache.hxx 2000-11-22 19:55:21.000000000 -0600 +++ OOo_1.1.5/stoc/source/corereflection/lrucache.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -189,7 +189,7 @@ inline sal_Bool LRU_Cache< t_Key, t_Val, t_KeyHash, t_KeyEqual >::hasValue( const t_Key & rKey ) const { ::osl::MutexGuard aGuard( _aCacheMutex ); - const t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) ); + const typename t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) ); return (iFind != _aKey2Element.end()); } //__________________________________________________________________________________________________ @@ -197,7 +197,7 @@ inline t_Val LRU_Cache< t_Key, t_Val, t_KeyHash, t_KeyEqual >::getValue( const t_Key & rKey ) const { ::osl::MutexGuard aGuard( _aCacheMutex ); - const t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) ); + const typename t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) ); if (iFind != _aKey2Element.end()) { CacheEntry * pEntry = (*iFind).second; @@ -219,7 +219,7 @@ if (_nCachedElements > 0) { ::osl::MutexGuard aGuard( _aCacheMutex ); - const t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) ); + const typename t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) ); CacheEntry * pEntry; if (iFind == _aKey2Element.end()) diff -Naur OOo_1.1.5-orig/stoc/source/defaultregistry/defaultregistry.cxx OOo_1.1.5/stoc/source/defaultregistry/defaultregistry.cxx --- OOo_1.1.5-orig/stoc/source/defaultregistry/defaultregistry.cxx 2001-12-07 09:37:29.000000000 -0600 +++ OOo_1.1.5/stoc/source/defaultregistry/defaultregistry.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -183,7 +183,7 @@ virtual Type SAL_CALL getElementType( ) throw (RuntimeException); virtual sal_Bool SAL_CALL hasElements( ) throw (RuntimeException); - friend NestedKeyImpl; + friend class NestedKeyImpl; protected: Mutex m_mutex; sal_uInt32 m_state; diff -Naur OOo_1.1.5-orig/stoc/source/inspect/introspection.cxx OOo_1.1.5/stoc/source/inspect/introspection.cxx --- OOo_1.1.5-orig/stoc/source/inspect/introspection.cxx 2003-03-27 06:00:42.000000000 -0600 +++ OOo_1.1.5/stoc/source/inspect/introspection.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -239,6 +239,7 @@ LowerToExactNameMap; +class ImplIntrospectionAccess; class IntrospectionAccessStatic_Impl { friend class ImplIntrospection; diff -Naur OOo_1.1.5-orig/stoc/source/invocation/invocation.cxx OOo_1.1.5/stoc/source/invocation/invocation.cxx --- OOo_1.1.5-orig/stoc/source/invocation/invocation.cxx 2003-03-27 06:00:44.000000000 -0600 +++ OOo_1.1.5/stoc/source/invocation/invocation.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -805,7 +805,7 @@ OUString aName; // Defines where the member comes from - enum { NAMEACCESS, PROPERTYSET, METHOD } eMode; + enum Mode { NAMEACCESS, PROPERTYSET, METHOD } eMode; // Index to respective sequence // (Index to NameAccess sequence for eMode==NAMEACCESS etc.) diff -Naur OOo_1.1.5-orig/stoc/source/security/access_controller.cxx OOo_1.1.5/stoc/source/security/access_controller.cxx --- OOo_1.1.5-orig/stoc/source/security/access_controller.cxx 2002-04-19 10:16:45.000000000 -0500 +++ OOo_1.1.5/stoc/source/security/access_controller.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -445,7 +445,7 @@ SAL_THROW( (RuntimeException) ); // mode - enum { OFF, ON, DYNAMIC_ONLY, SINGLE_USER, SINGLE_DEFAULT_USER } m_mode; + enum mode { OFF, ON, DYNAMIC_ONLY, SINGLE_USER, SINGLE_DEFAULT_USER } m_mode; PermissionCollection m_defaultPermissions; // for single-user mode diff -Naur OOo_1.1.5-orig/stoc/source/security/lru_cache.h OOo_1.1.5/stoc/source/security/lru_cache.h --- OOo_1.1.5-orig/stoc/source/security/lru_cache.h 2002-03-04 11:43:21.000000000 -0600 +++ OOo_1.1.5/stoc/source/security/lru_cache.h 2005-10-03 21:37:58.000000000 -0500 @@ -214,7 +214,7 @@ inline bool lru_cache< t_key, t_val, t_hashKey, t_equalKey >::has( t_key const & key ) const SAL_THROW( () ) { - t_key2element::const_iterator const iFind( m_key2element.find( key ) ); + typename t_key2element::const_iterator const iFind( m_key2element.find( key ) ); return (iFind != m_key2element.end()); } //__________________________________________________________________________________________________ @@ -224,7 +224,7 @@ { if (0 < m_size) { - t_key2element::const_iterator const iFind( m_key2element.find( key ) ); + typename t_key2element::const_iterator const iFind( m_key2element.find( key ) ); if (iFind != m_key2element.end()) { Entry * entry = iFind->second; @@ -250,7 +250,7 @@ { if (0 < m_size) { - t_key2element::const_iterator const iFind( m_key2element.find( key ) ); + typename t_key2element::const_iterator const iFind( m_key2element.find( key ) ); Entry * entry; if (iFind == m_key2element.end()) @@ -270,8 +270,8 @@ #endif m_key2element.erase( entry->m_key ); entry->m_key = key; - ::std::pair< t_key2element::iterator, bool > insertion( - m_key2element.insert( t_key2element::value_type( key, entry ) ) ); + ::std::pair< typename t_key2element::iterator, bool > insertion( + m_key2element.insert( typename t_key2element::value_type( key, entry ) ) ); #ifdef __CACHE_DIAGNOSE OSL_ENSURE( insertion.second, "### inserting new cache entry failed?!" ); #endif diff -Naur OOo_1.1.5-orig/stoc/source/simpleregistry/simpleregistry.cxx OOo_1.1.5/stoc/source/simpleregistry/simpleregistry.cxx --- OOo_1.1.5-orig/stoc/source/simpleregistry/simpleregistry.cxx 2002-10-21 10:26:05.000000000 -0500 +++ OOo_1.1.5/stoc/source/simpleregistry/simpleregistry.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -175,7 +175,7 @@ virtual sal_Bool SAL_CALL isReadOnly( ) throw(InvalidRegistryException, RuntimeException); virtual void SAL_CALL mergeKey( const OUString& aKeyName, const OUString& aUrl ) throw(InvalidRegistryException, MergeConflictException, RuntimeException); - friend RegistryKeyImpl; + friend class RegistryKeyImpl; protected: Mutex m_mutex; OUString m_url; diff -Naur OOo_1.1.5-orig/stoc/source/tdmanager/lrucache.hxx OOo_1.1.5/stoc/source/tdmanager/lrucache.hxx --- OOo_1.1.5-orig/stoc/source/tdmanager/lrucache.hxx 2001-05-10 09:35:25.000000000 -0500 +++ OOo_1.1.5/stoc/source/tdmanager/lrucache.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -191,7 +191,7 @@ t_Key const & rKey ) const { ::osl::MutexGuard aGuard( _aCacheMutex ); - t_Key2Element::const_iterator const iFind( _aKey2Element.find( rKey ) ); + typename t_Key2Element::const_iterator const iFind( _aKey2Element.find( rKey ) ); return (iFind != _aKey2Element.end()); } //__________________________________________________________________________________________________ @@ -200,7 +200,7 @@ t_Key const & rKey ) const { ::osl::MutexGuard aGuard( _aCacheMutex ); - const t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) ); + const typename t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) ); if (iFind != _aKey2Element.end()) { CacheEntry * pEntry = (*iFind).second; @@ -222,7 +222,7 @@ if (_nCachedElements > 0) { ::osl::MutexGuard aGuard( _aCacheMutex ); - t_Key2Element::const_iterator const iFind( _aKey2Element.find( rKey ) ); + typename t_Key2Element::const_iterator const iFind( _aKey2Element.find( rKey ) ); CacheEntry * pEntry; if (iFind == _aKey2Element.end()) diff -Naur OOo_1.1.5-orig/stoc/source/tdmanager/tdmgr.cxx OOo_1.1.5/stoc/source/tdmanager/tdmgr.cxx --- OOo_1.1.5-orig/stoc/source/tdmanager/tdmgr.cxx 2002-11-11 02:33:38.000000000 -0600 +++ OOo_1.1.5/stoc/source/tdmanager/tdmgr.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -199,8 +199,8 @@ XTypeDescriptionEnumerationAccess, XInitialization > { - friend EnumerationImpl; - friend EventListenerImpl; + friend class EnumerationImpl; + friend class EventListenerImpl; Mutex _aComponentMutex; Reference< XComponentContext > _xContext; diff -Naur OOo_1.1.5-orig/store/inc/store/object.hxx OOo_1.1.5/store/inc/store/object.hxx --- OOo_1.1.5-orig/store/inc/store/object.hxx 2001-03-13 14:37:59.000000000 -0600 +++ OOo_1.1.5/store/inc/store/object.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -97,25 +97,6 @@ store_handle_type * SAL_CALL query ( IStoreHandle * pHandle, store_handle_type *); - -/** Template helper class as type safe Reference to store_handle_type. - */ -template -class OStoreHandle : public rtl::Reference -{ -public: - OStoreHandle (store_handle_type * pHandle) - : rtl::Reference (pHandle) - {} - - static store_handle_type * SAL_CALL query (void * pHandle) - { - return store::query ( - static_cast(pHandle), - static_cast(0)); - } -}; - /*======================================================================== * * OStoreObject interface. diff -Naur OOo_1.1.5-orig/store/source/store.cxx OOo_1.1.5/store/source/store.cxx --- OOo_1.1.5-orig/store/source/store.cxx 2001-03-13 14:49:56.000000000 -0600 +++ OOo_1.1.5/store/source/store.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -101,6 +101,28 @@ using rtl::Reference; using rtl::OString; +namespace store +{ +/** Template helper class as type safe Reference to store_handle_type. + */ +template +class OStoreHandle : public rtl::Reference +{ +public: + OStoreHandle (store_handle_type * pHandle) + : rtl::Reference (pHandle) + {} + + static store_handle_type * SAL_CALL query (void * pHandle) + { + return store::query ( + static_cast(pHandle), + static_cast(0)); + } +}; +} + + using namespace store; /*======================================================================== diff -Naur OOo_1.1.5-orig/svtools/inc/communi.hxx OOo_1.1.5/svtools/inc/communi.hxx --- OOo_1.1.5-orig/svtools/inc/communi.hxx 2003-03-27 08:36:07.000000000 -0600 +++ OOo_1.1.5/svtools/inc/communi.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -141,7 +141,7 @@ class CommunicationManagerServerViaSocket : public CommunicationManagerServer { - friend CommunicationManagerServerAcceptThread; + friend class CommunicationManagerServerAcceptThread; public: CommunicationManagerServerViaSocket( ULONG nPort, USHORT nMaxCon, BOOL bUseMultiChannel = FALSE ); virtual ~CommunicationManagerServerViaSocket(); diff -Naur OOo_1.1.5-orig/svtools/inc/ctrltool.hxx OOo_1.1.5/svtools/inc/ctrltool.hxx --- OOo_1.1.5-orig/svtools/inc/ctrltool.hxx 2004-09-24 04:04:01.000000000 -0500 +++ OOo_1.1.5/svtools/inc/ctrltool.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -73,6 +73,7 @@ #endif class ImplFontListNameInfo; +class OutputDevice; /************************************************************************* diff -Naur OOo_1.1.5-orig/svtools/inc/inettbc.hxx OOo_1.1.5/svtools/inc/inettbc.hxx --- OOo_1.1.5-orig/svtools/inc/inettbc.hxx 2003-10-31 09:33:12.000000000 -0600 +++ OOo_1.1.5/svtools/inc/inettbc.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -71,6 +71,8 @@ #endif class IUrlFilter; +class SvtMatchContext_Impl; +class SvtURLBox_Impl; class SvtURLBox : public ComboBox { friend class SvtMatchContext_Impl; diff -Naur OOo_1.1.5-orig/svtools/inc/poolitem.hxx OOo_1.1.5/svtools/inc/poolitem.hxx --- OOo_1.1.5-orig/svtools/inc/poolitem.hxx 2003-03-27 08:36:25.000000000 -0600 +++ OOo_1.1.5/svtools/inc/poolitem.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -212,6 +212,8 @@ DBG_NAMEEX(SfxItemHandle); class SvXMLUnitConverter; +class SfxItemPool; +class SfxItemSet; class String; namespace rtl diff -Naur OOo_1.1.5-orig/svtools/source/contnr/svlbox.cxx OOo_1.1.5/svtools/source/contnr/svlbox.cxx --- OOo_1.1.5-orig/svtools/source/contnr/svlbox.cxx 2003-05-27 06:23:39.000000000 -0500 +++ OOo_1.1.5/svtools/source/contnr/svlbox.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -724,7 +724,7 @@ SvViewDataEntry::~SvViewDataEntry() { DBG_DTOR(SvViewDataEntry,0); - __DELETE(nItmCnt) pItemData; + delete [] pItemData; } // *************************************************************** diff -Naur OOo_1.1.5-orig/svtools/source/contnr/svtabbx.cxx OOo_1.1.5/svtools/source/contnr/svtabbx.cxx --- OOo_1.1.5-orig/svtools/source/contnr/svtabbx.cxx 2003-05-19 08:06:41.000000000 -0500 +++ OOo_1.1.5/svtools/source/contnr/svtabbx.cxx 2005-10-03 21:37:58.000000000 -0500 @@ -186,7 +186,7 @@ SvTabListBox::~SvTabListBox() { // array-delete - __DELETE(nTabCount) pTabList; + delete [] pTabList; #ifdef DBG_UTIL pTabList = 0; nTabCount = 0; @@ -199,7 +199,7 @@ if( !pTabs ) return; - __DELETE(nTabCount) pTabList; + delete [] pTabList; USHORT nCount = (USHORT)(*pTabs); pTabList = new SvLBoxTab[ nCount ]; nTabCount = nCount; diff -Naur OOo_1.1.5-orig/svtools/source/dialogs/mcvmath.hxx OOo_1.1.5/svtools/source/dialogs/mcvmath.hxx --- OOo_1.1.5-orig/svtools/source/dialogs/mcvmath.hxx 2000-09-18 11:58:58.000000000 -0500 +++ OOo_1.1.5/svtools/source/dialogs/mcvmath.hxx 2005-10-03 21:37:58.000000000 -0500 @@ -107,8 +107,8 @@ class Fix { private: - friend FixCpx; - friend ColWheel; + friend class FixCpx; + friend class ColWheel; // friend Fix ImpMultBig2( const Fix& a, const Fix& b ); diff -Naur OOo_1.1.5-orig/svtools/source/numbers/zformat.cxx OOo_1.1.5/svtools/source/numbers/zformat.cxx --- OOo_1.1.5-orig/svtools/source/numbers/zformat.cxx 2004-02-05 06:46:31.000000000 -0600 +++ OOo_1.1.5/svtools/source/numbers/zformat.cxx 2005-10-03 21:37:59.000000000 -0500 @@ -380,8 +380,8 @@ { for (USHORT i = 0; i < nAnzStrings; i++) aI.sStrArray[i].Erase(); - __DELETE(nAnzStrings) aI.sStrArray; - __DELETE(nAnzStrings) aI.nTypeArray; + delete [] aI.sStrArray; + delete [] aI.nTypeArray; } void ImpSvNumFor::Enlarge(USHORT nAnz) diff -Naur OOo_1.1.5-orig/svtools/source/svrtf/svparser.cxx OOo_1.1.5/svtools/source/svrtf/svparser.cxx --- OOo_1.1.5-orig/svtools/source/svrtf/svparser.cxx 2003-03-27 08:39:43.000000000 -0600 +++ OOo_1.1.5/svtools/source/svrtf/svparser.cxx 2005-10-03 21:37:59.000000000 -0500 @@ -166,14 +166,7 @@ delete pImplData; -#ifdef MPW - // der MPW-Compiler ruft sonst keine Dtoren! - for (int n = 0; n < nTokenStackSize; ++n ) - (pTokenStack+n)->TokenStackType::~TokenStackType(); - delete (void*) pTokenStack; -#else - __DELETE(nTokenStackSize) pTokenStack; -#endif + delete [] pTokenStack; } void SvParser::ClearTxtConvContext() diff -Naur OOo_1.1.5-orig/svx/inc/AccessibleShapeInfo.hxx OOo_1.1.5/svx/inc/AccessibleShapeInfo.hxx --- OOo_1.1.5-orig/svx/inc/AccessibleShapeInfo.hxx 2003-04-24 11:50:00.000000000 -0500 +++ OOo_1.1.5/svx/inc/AccessibleShapeInfo.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -139,10 +139,10 @@ ~AccessibleShapeInfo (void); + AccessibleShapeInfo (const AccessibleShapeInfo&); private: // Don't use these three methods. explicit AccessibleShapeInfo (void); - explicit AccessibleShapeInfo (const AccessibleShapeInfo&); AccessibleShapeInfo& operator= (const AccessibleShapeInfo&); }; diff -Naur OOo_1.1.5-orig/svx/inc/ShapeTypeHandler.hxx OOo_1.1.5/svx/inc/ShapeTypeHandler.hxx --- OOo_1.1.5-orig/svx/inc/ShapeTypeHandler.hxx 2003-04-24 11:50:54.000000000 -0500 +++ OOo_1.1.5/svx/inc/ShapeTypeHandler.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -205,7 +205,8 @@ ::com::sun::star::accessibility::XAccessible>& rxParent, const AccessibleShapeTreeInfo& rShapeTreeInfo) const { - return CreateAccessibleObject (AccessibleShapeInfo (rxShape,rxParent),rShapeTreeInfo); + AccessibleShapeInfo aShapeInfo(rxShape, rxParent); + return CreateAccessibleObject (aShapeInfo, rShapeTreeInfo); } /** Add new shape types to the internal tables. Each new shape type is diff -Naur OOo_1.1.5-orig/svx/inc/float3d.hxx OOo_1.1.5/svx/inc/float3d.hxx --- OOo_1.1.5-orig/svx/inc/float3d.hxx 2003-03-27 08:59:42.000000000 -0600 +++ OOo_1.1.5/svx/inc/float3d.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -109,6 +109,7 @@ class VirtualDevice; class E3dView; class SdrPageView; +class Svx3DCtrlItem; class SvxConvertTo3DItem; //------------------------------------------------------------------------ diff -Naur OOo_1.1.5-orig/svx/inc/fmgridcl.hxx OOo_1.1.5/svx/inc/fmgridcl.hxx --- OOo_1.1.5-orig/svx/inc/fmgridcl.hxx 2002-10-31 06:51:11.000000000 -0600 +++ OOo_1.1.5/svx/inc/fmgridcl.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -145,6 +145,7 @@ //================================================================== // FmGridControl //================================================================== +class FmXGridPeer; class FmGridControl : public DbGridControl { diff -Naur OOo_1.1.5-orig/svx/inc/fmpage.hxx OOo_1.1.5/svx/inc/fmpage.hxx --- OOo_1.1.5-orig/svx/inc/fmpage.hxx 2001-12-21 05:39:38.000000000 -0600 +++ OOo_1.1.5/svx/inc/fmpage.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -79,6 +79,7 @@ class SfxJSArray; class HelpEvent; +class SdrView; class FmFormPage : #if SUPD < 396 diff -Naur OOo_1.1.5-orig/svx/inc/fmview.hxx OOo_1.1.5/svx/inc/fmview.hxx --- OOo_1.1.5-orig/svx/inc/fmview.hxx 2003-03-27 08:59:42.000000000 -0600 +++ OOo_1.1.5/svx/inc/fmview.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -82,6 +82,9 @@ class FmFormModel; class FmPageViewWinRec; class FmFormPage; +class FmXFormView; +class FmFormShell; +class FmFormObj; namespace svx { class ODataAccessDescriptor; diff -Naur OOo_1.1.5-orig/svx/inc/frmsel.hxx OOo_1.1.5/svx/inc/frmsel.hxx --- OOo_1.1.5-orig/svx/inc/frmsel.hxx 2003-04-24 11:51:37.000000000 -0500 +++ OOo_1.1.5/svx/inc/frmsel.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -172,8 +172,8 @@ class SvxFrameSelector : public Control { - friend SvxFrameSelectorAccessible_Impl; - friend SvxFrameSelector_Impl; + friend class SvxFrameSelectorAccessible_Impl; + friend class SvxFrameSelector_Impl; SvxFrameShadow eShadow; // Schattenposition Color aShadowCol; // aktuelle Schattenfarbe diff -Naur OOo_1.1.5-orig/svx/inc/graphctl.hxx OOo_1.1.5/svx/inc/graphctl.hxx --- OOo_1.1.5-orig/svx/inc/graphctl.hxx 2003-04-24 11:51:47.000000000 -0500 +++ OOo_1.1.5/svx/inc/graphctl.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -80,6 +80,7 @@ \************************************************************************/ class SvxGraphCtrlAccessibleContext; +class GraphCtrlUserCall; #define WB_SDRMODE ((WinBits)0x0080) #define WB_ANIMATION ((WinBits)0x0100) diff -Naur OOo_1.1.5-orig/svx/inc/imapdlg.hxx OOo_1.1.5/svx/inc/imapdlg.hxx --- OOo_1.1.5-orig/svx/inc/imapdlg.hxx 2002-07-11 05:56:24.000000000 -0500 +++ OOo_1.1.5/svx/inc/imapdlg.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -113,6 +113,8 @@ class Graphic; class TargetList; +class IMapWindow; +class IMapOwnData; class SvxIMapDlgChildWindow : public SfxChildWindow { diff -Naur OOo_1.1.5-orig/svx/inc/srchdlg.hxx OOo_1.1.5/svx/inc/srchdlg.hxx --- OOo_1.1.5-orig/svx/inc/srchdlg.hxx 2002-06-24 03:21:50.000000000 -0500 +++ OOo_1.1.5/svx/inc/srchdlg.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -113,6 +113,7 @@ class SvxSearchItem; class MoreButton; +class SvxSearchController; class SfxStyleSheetBasePool; class SvxJSearchOptionsPage; @@ -297,7 +298,7 @@ SvxSearchController* pSearchSetController; SvxSearchController* pReplaceSetController; - INT32 nTransliterationFlags; + mutable INT32 nTransliterationFlags; #ifdef _SVX_SRCHDLG_CXX DECL_LINK( ModifyHdl_Impl, ComboBox* pEdit ); diff -Naur OOo_1.1.5-orig/svx/inc/svdedxv.hxx OOo_1.1.5/svx/inc/svdedxv.hxx --- OOo_1.1.5-orig/svx/inc/svdedxv.hxx 2002-04-26 07:12:18.000000000 -0500 +++ OOo_1.1.5/svx/inc/svdedxv.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -78,6 +78,7 @@ class OutlinerView; class EditStatus; class EditFieldInfo; +class ImpSdrEditPara; //************************************************************ // Defines diff -Naur OOo_1.1.5-orig/svx/inc/svdetc.hxx OOo_1.1.5/svx/inc/svdetc.hxx --- OOo_1.1.5-orig/svx/inc/svdetc.hxx 2001-11-23 13:20:49.000000000 -0600 +++ OOo_1.1.5/svx/inc/svdetc.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -194,26 +194,17 @@ #endif // __PRIVATE public: ContainerSorter(Container& rNewCont): rCont(rNewCont) {} -#if SUPD>358 void DoSort(ULONG a=0, ULONG b=0xFFFFFFFF) const; -#else - void DoSort(); - void DoSort(ULONG a, ULONG b=0xFFFFFFFF) const; -#endif #ifdef This_Is_Just_For_A_Comment Compare() muss returnieren: -1 falls *pElem1<*pElem2 0 falls *pElem1=*pElem2 +1 falls *pElem1>*pElem2 #endif - virtual int Compare(const void* pElem1, const void* pElem2) const=NULL; + virtual int Compare(const void* pElem1, const void* pElem2) const=0; private: // damit keiner vergessen wird virtual -#if SUPD <= 355 - FASTBOOL -#else void -#endif Is1stLessThan2nd(const void* pElem1, const void* pElem2) const; // virtual FASTBOOL Is1stLessThan2nd(const void* pElem1, const void* pElem2) const=NULL; }; diff -Naur OOo_1.1.5-orig/svx/inc/svdfppt.hxx OOo_1.1.5/svx/inc/svdfppt.hxx --- OOo_1.1.5-orig/svx/inc/svdfppt.hxx 2004-01-19 10:34:32.000000000 -0600 +++ OOo_1.1.5/svx/inc/svdfppt.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -121,6 +121,7 @@ class Graphic; class SvxMSDffManager; class PptTextMetaCharList; +class PPTTextObj; class DffRecordHeader; struct PptCharAttrSet; class SvxBulletItem; @@ -445,6 +446,7 @@ friend class PPTTextObj; friend class PPTPortionObj; friend struct PPTStyleTextPropReader; + friend class ImplSdPPTImport; PptDocumentAtom aDocAtom; DffRecordManager aPptRecManager; // contains all first level container and atoms @@ -484,6 +486,7 @@ void* pSdrEscherDummy4; SdrEscherImport( PowerPointImportParam& ); + // SdrEscherImport( PowerPointImportParam&, const String& rBaseURL ); virtual ~SdrEscherImport(); virtual FASTBOOL GetColorFromPalette( USHORT nNum, Color& rColor ) const; virtual BOOL SeekToShape( SvStream& rSt, void* pClientData, UINT32 nId ) const; diff -Naur OOo_1.1.5-orig/svx/inc/svdhdl.hxx OOo_1.1.5/svx/inc/svdhdl.hxx --- OOo_1.1.5-orig/svx/inc/svdhdl.hxx 2002-09-13 07:16:31.000000000 -0500 +++ OOo_1.1.5/svx/inc/svdhdl.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -463,6 +463,7 @@ // #97016# II class ImplHdlListData; +class SdrMarkView; class SdrHdlList { diff -Naur OOo_1.1.5-orig/svx/inc/svdio.hxx OOo_1.1.5/svx/inc/svdio.hxx --- OOo_1.1.5-orig/svx/inc/svdio.hxx 2001-03-02 05:46:36.000000000 -0600 +++ OOo_1.1.5/svx/inc/svdio.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -86,16 +86,16 @@ const char SdrIOEndeID[2]={'X','X'}; // Ende const char SdrIOJoeMagic[4]={'J','o','e','M'}; // Um meine eigenen SubRecords zu erkennen -const nAktSdrFileMajorVersion = 0; +const int nAktSdrFileMajorVersion = 0; // #84529# increase fileversion to be able to correct gradient rotation for 5.2 and earlierl -const nAktSdrFileMinorVersion = 17; // = 16; +const int nAktSdrFileMinorVersion = 17; // = 16; -const nAktSdrFileVersion = (nAktSdrFileMajorVersion <<8) + (nAktSdrFileMinorVersion); -const nSdrFileVersion31 = 12; // Fileversion des Office 3.1 -const nSdrFileVersion40 = 13; // Fileversion des Office 4.0 -const nSdrFileVersion50 = 14; // Fileversion des Office 5.0 -const nSdrFileVersion51 = 15; // Fileversion des Office 5.1 +const int nAktSdrFileVersion = (nAktSdrFileMajorVersion <<8) + (nAktSdrFileMinorVersion); +const int nSdrFileVersion31 = 12; // Fileversion des Office 3.1 +const int nSdrFileVersion40 = 13; // Fileversion des Office 4.0 +const int nSdrFileVersion50 = 14; // Fileversion des Office 5.0 +const int nSdrFileVersion51 = 15; // Fileversion des Office 5.1 // Fileversionen: // 0= ??-04-1995 Initialversion. diff -Naur OOo_1.1.5-orig/svx/inc/svdobj.hxx OOo_1.1.5/svx/inc/svdobj.hxx --- OOo_1.1.5-orig/svx/inc/svdobj.hxx 2002-10-31 03:54:40.000000000 -0600 +++ OOo_1.1.5/svx/inc/svdobj.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -133,6 +133,7 @@ class SdrPageView; class SdrShadowSetItem; class SdrView; +class SdrVirtObj; class SfxItemSet; class SfxSetItem; class SfxStyleSheet; diff -Naur OOo_1.1.5-orig/svx/inc/svdograf.hxx OOo_1.1.5/svx/inc/svdograf.hxx --- OOo_1.1.5-orig/svx/inc/svdograf.hxx 2003-04-24 09:44:57.000000000 -0500 +++ OOo_1.1.5/svx/inc/svdograf.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -104,6 +104,7 @@ class GraphicObject; class SdrGrafSetItem; +class SdrGraphicLink; class SdrGrafObj: public SdrRectObj { diff -Naur OOo_1.1.5-orig/svx/inc/svdotext.hxx OOo_1.1.5/svx/inc/svdotext.hxx --- OOo_1.1.5-orig/svx/inc/svdotext.hxx 2003-07-04 08:29:19.000000000 -0500 +++ OOo_1.1.5/svx/inc/svdotext.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -94,6 +94,7 @@ class OutlinerParaObject; class SdrOutliner; +class SdrTextObj; class SvxFieldItem; class ImpSdrObjTextLink; diff -Naur OOo_1.1.5-orig/svx/inc/svdpagv.hxx OOo_1.1.5/svx/inc/svdpagv.hxx --- OOo_1.1.5-orig/svx/inc/svdpagv.hxx 2003-07-11 05:17:58.000000000 -0500 +++ OOo_1.1.5/svx/inc/svdpagv.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -116,6 +116,7 @@ class SdrModel; class SdrPage; class SdrUnoObj; +class SdrView; class SdrPageObj; //////////////////////////////////////////////////////////////////////////////////////////////////// @@ -128,6 +129,7 @@ #define SDRUNOCONTROL_NOTFOUND USHRT_MAX class SdrUnoControlList; +class SdrView; // Listener an den UnoControls class SdrUnoControlRec : public ::cppu::WeakImplHelper4< diff -Naur OOo_1.1.5-orig/svx/inc/svdpntv.hxx OOo_1.1.5/svx/inc/svdpntv.hxx --- OOo_1.1.5-orig/svx/inc/svdpntv.hxx 2003-06-30 11:33:14.000000000 -0500 +++ OOo_1.1.5/svx/inc/svdpntv.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -127,7 +127,10 @@ class SdrPageViewWinRec; class OutputDevice; class VirtualDevice; +class SdrGrafObj; +class SdrPage; class SdrView; +class SdrViewUserMarker; class SfxItemSet; class SfxStyleSheet; class ExtOutputDevice; @@ -139,6 +142,7 @@ class SdrObject; class B2dIAOManager; + //************************************************************ // Defines for cache modes //************************************************************ diff -Naur OOo_1.1.5-orig/svx/inc/svdtrans.hxx OOo_1.1.5/svx/inc/svdtrans.hxx --- OOo_1.1.5-orig/svx/inc/svdtrans.hxx 2001-10-12 11:05:54.000000000 -0500 +++ OOo_1.1.5/svx/inc/svdtrans.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -87,7 +87,7 @@ //////////////////////////////////////////////////////////////////////////////////////////////////// // Winkelangaben der DrawingEngine sind 1/100 Degree -const nWinkDiv=100; +const int nWinkDiv=100; // Um Winkel der DrawingEngine mit den Trigonometrischen Funktionen // verarbeiten zu koennen, muessen sie zunaest ins Bogenmass umgerechnet // werden. Dies gestaltet sich recht einfach mit der folgenden Konstanten diff -Naur OOo_1.1.5-orig/svx/inc/svdvmark.hxx OOo_1.1.5/svx/inc/svdvmark.hxx --- OOo_1.1.5-orig/svx/inc/svdvmark.hxx 2000-09-18 12:01:01.000000000 -0500 +++ OOo_1.1.5/svx/inc/svdvmark.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -77,6 +77,7 @@ class XPolygon; class XPolyPolygon; class SdrObject; +class SdrPaintView; class SdrPageView; //************************************************************ diff -Naur OOo_1.1.5-orig/svx/inc/unoedsrc.hxx OOo_1.1.5/svx/inc/unoedsrc.hxx --- OOo_1.1.5-orig/svx/inc/unoedsrc.hxx 2003-04-24 11:52:28.000000000 -0500 +++ OOo_1.1.5/svx/inc/unoedsrc.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -103,6 +103,7 @@ class SvxFieldItem; class SfxBroadcaster; class EECharAttribArray; +class OutputDevice; /** Wrapper class for unified EditEngine/Outliner access diff -Naur OOo_1.1.5-orig/svx/inc/unomaster.hxx OOo_1.1.5/svx/inc/unomaster.hxx --- OOo_1.1.5-orig/svx/inc/unomaster.hxx 2001-12-07 11:59:33.000000000 -0600 +++ OOo_1.1.5/svx/inc/unomaster.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -84,7 +84,7 @@ class SvxShapeMaster { public: - virtual sal_Bool queryAggregation( const com::sun::star::uno::Type & rType, com::sun::star::uno::Any& aAny ) = NULL; + virtual sal_Bool queryAggregation( const com::sun::star::uno::Type & rType, com::sun::star::uno::Any& aAny ) = 0; virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw(::com::sun::star::uno::RuntimeException) = 0; virtual void SAL_CALL setPropertyValue( const ::rtl::OUString& aPropertyName, const ::com::sun::star::uno::Any& aValue ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException) = 0; @@ -98,7 +98,7 @@ virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException) = 0; - virtual void dispose() = NULL; + virtual void dispose() = 0; }; #endif diff -Naur OOo_1.1.5-orig/svx/inc/unoshape.hxx OOo_1.1.5/svx/inc/unoshape.hxx --- OOo_1.1.5-orig/svx/inc/unoshape.hxx 2003-03-27 08:59:53.000000000 -0600 +++ OOo_1.1.5/svx/inc/unoshape.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -141,6 +141,7 @@ class SfxItemSet; class SdrObject; class SdrModel; +class SvxDrawPage; class SvxShapeList; class SvGlobalName; diff -Naur OOo_1.1.5-orig/svx/source/accessibility/AccessibleShapeInfo.cxx OOo_1.1.5/svx/source/accessibility/AccessibleShapeInfo.cxx --- OOo_1.1.5-orig/svx/source/accessibility/AccessibleShapeInfo.cxx 2003-04-24 11:55:01.000000000 -0500 +++ OOo_1.1.5/svx/source/accessibility/AccessibleShapeInfo.cxx 2005-10-03 21:37:59.000000000 -0500 @@ -99,7 +99,14 @@ // empty. } - +AccessibleShapeInfo::AccessibleShapeInfo (const AccessibleShapeInfo &rOther) + : mxShape (rOther.mxShape), + mxParent (rOther.mxParent), + mpChildrenManager (rOther.mpChildrenManager), + mnIndex (rOther.mnIndex) +{ + // empty. +} AccessibleShapeInfo::~AccessibleShapeInfo (void) diff -Naur OOo_1.1.5-orig/svx/source/accessibility/AccessibleTextEventQueue.hxx OOo_1.1.5/svx/source/accessibility/AccessibleTextEventQueue.hxx --- OOo_1.1.5-orig/svx/source/accessibility/AccessibleTextEventQueue.hxx 2003-06-24 02:39:24.000000000 -0500 +++ OOo_1.1.5/svx/source/accessibility/AccessibleTextEventQueue.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -64,6 +64,7 @@ #include #include +#include #ifndef _SOLAR_H #include diff -Naur OOo_1.1.5-orig/svx/source/accessibility/ChildrenManagerImpl.cxx OOo_1.1.5/svx/source/accessibility/ChildrenManagerImpl.cxx --- OOo_1.1.5-orig/svx/source/accessibility/ChildrenManagerImpl.cxx 2003-04-28 10:27:00.000000000 -0500 +++ OOo_1.1.5/svx/source/accessibility/ChildrenManagerImpl.cxx 2005-10-03 21:37:59.000000000 -0500 @@ -195,15 +195,16 @@ // created while locking the global mutex. if ( ! rChildDescriptor.mxAccessibleShape.is()) { + AccessibleShapeInfo aShapeInfo( + rChildDescriptor.mxShape, + mxParent, + this, + mnNewNameIndex++); // Create accessible object that corresponds to the descriptor's // shape. AccessibleShape* pShape = ShapeTypeHandler::Instance().CreateAccessibleObject ( - AccessibleShapeInfo ( - rChildDescriptor.mxShape, - mxParent, - this, - mnNewNameIndex++), + aShapeInfo, maShapeTreeInfo); rChildDescriptor.mxAccessibleShape = uno::Reference ( static_cast(pShape), @@ -796,9 +797,10 @@ const AccessibleShapeTreeInfo& _rShapeTreeInfo) throw (uno::RuntimeException) { + AccessibleShapeInfo aShapeInfo( _rxShape, pCurrentChild->getAccessibleParent(), this, _nIndex ); // create the new child AccessibleShape* pNewChild = ShapeTypeHandler::Instance().CreateAccessibleObject ( - AccessibleShapeInfo ( _rxShape, pCurrentChild->getAccessibleParent(), this, _nIndex ), + aShapeInfo, _rShapeTreeInfo ); Reference< XAccessible > xNewChild( pNewChild ); // keep this alive (do this before calling Init!) diff -Naur OOo_1.1.5-orig/svx/source/accessibility/GraphCtlAccessibleContext.cxx OOo_1.1.5/svx/source/accessibility/GraphCtlAccessibleContext.cxx --- OOo_1.1.5-orig/svx/source/accessibility/GraphCtlAccessibleContext.cxx 2003-06-26 06:10:07.000000000 -0500 +++ OOo_1.1.5/svx/source/accessibility/GraphCtlAccessibleContext.cxx 2005-10-03 21:37:59.000000000 -0500 @@ -251,9 +251,10 @@ // create a new one and remember in our internal map Reference< XShape > xShape( Reference< XShape >::query( (const_cast(pObj))->getUnoShape() ) ); + AccessibleShapeInfo aShapeInfo (xShape,mxParent); // Create accessible object that corresponds to the descriptor's shape. AccessibleShape* pAcc = ShapeTypeHandler::Instance().CreateAccessibleObject( - AccessibleShapeInfo (xShape,mxParent), maTreeInfo); + aShapeInfo, maTreeInfo); xAccessibleShape = pAcc; if (pAcc != NULL) { diff -Naur OOo_1.1.5-orig/svx/source/dialog/srchdlg.cxx OOo_1.1.5/svx/source/dialog/srchdlg.cxx --- OOo_1.1.5-orig/svx/source/dialog/srchdlg.cxx 2003-04-08 10:24:47.000000000 -0500 +++ OOo_1.1.5/svx/source/dialog/srchdlg.cxx 2005-10-03 21:37:59.000000000 -0500 @@ -582,15 +582,14 @@ INT32 SvxSearchDialog::GetTransliterationFlags() const { - INT32 &rFlags = (INT32) nTransliterationFlags; if (!aMatchCaseCB.IsChecked()) - rFlags |= TransliterationModules_IGNORE_CASE; + nTransliterationFlags |= TransliterationModules_IGNORE_CASE; else - rFlags &= ~TransliterationModules_IGNORE_CASE; + nTransliterationFlags &= ~TransliterationModules_IGNORE_CASE; if ( !aJapMatchFullHalfWidthCB.IsChecked()) - rFlags |= TransliterationModules_IGNORE_WIDTH; + nTransliterationFlags |= TransliterationModules_IGNORE_WIDTH; else - rFlags &= ~TransliterationModules_IGNORE_WIDTH; + nTransliterationFlags &= ~TransliterationModules_IGNORE_WIDTH; return nTransliterationFlags; } diff -Naur OOo_1.1.5-orig/svx/source/engine3d/scene3d.cxx OOo_1.1.5/svx/source/engine3d/scene3d.cxx --- OOo_1.1.5-orig/svx/source/engine3d/scene3d.cxx 2002-06-07 07:06:28.000000000 -0500 +++ OOo_1.1.5/svx/source/engine3d/scene3d.cxx 2005-10-03 21:37:59.000000000 -0500 @@ -1383,7 +1383,7 @@ // ambientes licht, auf globales aufaddieren B3dColor aCol(pLight->GetColor().GetColor()); aCol *= pLight->GetIntensity(); - aCol += (B3dColor &)aLightGroup.GetGlobalAmbientLight(); + aCol += (const B3dColor &)aLightGroup.GetGlobalAmbientLight(); aLightGroup.SetGlobalAmbientLight(aCol); } } diff -Naur OOo_1.1.5-orig/svx/source/fmcomp/gridcell.cxx OOo_1.1.5/svx/source/fmcomp/gridcell.cxx --- OOo_1.1.5-orig/svx/source/fmcomp/gridcell.cxx 2003-04-15 12:30:38.000000000 -0500 +++ OOo_1.1.5/svx/source/fmcomp/gridcell.cxx 2005-10-03 21:37:59.000000000 -0500 @@ -3040,9 +3040,6 @@ /*************************************************************************/ -SMART_UNO_IMPLEMENTATION(FmXEditCell, FmXTextCell); - - DBG_NAME(FmXEditCell); //------------------------------------------------------------------------------ FmXEditCell::FmXEditCell(DbGridColumn* pColumn, DbCellControl* pControl) @@ -3248,9 +3245,6 @@ } /*************************************************************************/ -SMART_UNO_IMPLEMENTATION(FmXCheckBoxCell, FmXDataCell); - - DBG_NAME(FmXCheckBoxCell); //------------------------------------------------------------------------------ FmXCheckBoxCell::FmXCheckBoxCell(DbGridColumn* pColumn, DbCellControl* pControl) @@ -3394,9 +3388,6 @@ } /*************************************************************************/ -SMART_UNO_IMPLEMENTATION(FmXListBoxCell, FmXTextCell); - - DBG_NAME(FmXListBoxCell); //------------------------------------------------------------------------------ FmXListBoxCell::FmXListBoxCell(DbGridColumn* pColumn, DbCellControl* pControl) diff -Naur OOo_1.1.5-orig/svx/source/inc/fmpgeimp.hxx OOo_1.1.5/svx/source/inc/fmpgeimp.hxx --- OOo_1.1.5-orig/svx/source/inc/fmpgeimp.hxx 2002-09-09 09:23:01.000000000 -0500 +++ OOo_1.1.5/svx/source/inc/fmpgeimp.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -103,7 +103,7 @@ FORWARD_DECLARE_INTERFACE(container,XIndexContainer) class SdrObjList; - +class FmFormPage; DECLARE_LIST(FmObjectList, FmFormObj*); //================================================================== diff -Naur OOo_1.1.5-orig/svx/source/inc/fmshimp.hxx OOo_1.1.5/svx/source/inc/fmshimp.hxx --- OOo_1.1.5-orig/svx/source/inc/fmshimp.hxx 2002-11-12 05:26:24.000000000 -0600 +++ OOo_1.1.5/svx/source/inc/fmshimp.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -322,6 +322,7 @@ typedef FmXFormShell_Base_Disambiguation FmXFormShell_BASE; typedef ::utl::ConfigItem FmXFormShell_CFGBASE; +class FmFormShell; class FmXFormShell :public FmXFormShell_BASE ,public FmXFormShell_CFGBASE ,public FmDispatchInterceptor diff -Naur OOo_1.1.5-orig/svx/source/inc/fmvwimp.hxx OOo_1.1.5/svx/source/inc/fmvwimp.hxx --- OOo_1.1.5-orig/svx/source/inc/fmvwimp.hxx 2003-03-27 09:03:18.000000000 -0600 +++ OOo_1.1.5/svx/source/inc/fmvwimp.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -119,6 +119,9 @@ class SdrObject; class FmFormObj; class FmFormModel; +class FmFormShell; +class FmFormView; +class FmXFormView; class Window; class OutputDevice; diff -Naur OOo_1.1.5-orig/svx/source/inc/hlmarkwn.hxx OOo_1.1.5/svx/source/inc/hlmarkwn.hxx --- OOo_1.1.5-orig/svx/source/inc/hlmarkwn.hxx 2001-05-08 10:21:39.000000000 -0500 +++ OOo_1.1.5/svx/source/inc/hlmarkwn.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -114,7 +114,7 @@ class SvxHlinkDlgMarkWnd : public ModalDialog //FloatingWindow { private: - friend SvxHlmarkTreeLBox; + friend class SvxHlmarkTreeLBox; PushButton maBtApply; PushButton maBtClose; diff -Naur OOo_1.1.5-orig/sw/inc/fchrfmt.hxx OOo_1.1.5/sw/inc/fchrfmt.hxx --- OOo_1.1.5-orig/sw/inc/fchrfmt.hxx 2001-07-09 15:10:42.000000000 -0500 +++ OOo_1.1.5/sw/inc/fchrfmt.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -73,6 +73,7 @@ #endif class SwCharFmt; +class SwTxtCharFmt; class IntlWrapper; // ATT_CHARFMT ********************************************* diff -Naur OOo_1.1.5-orig/sw/inc/fmtflcnt.hxx OOo_1.1.5/sw/inc/fmtflcnt.hxx --- OOo_1.1.5-orig/sw/inc/fmtflcnt.hxx 2003-07-04 08:19:06.000000000 -0500 +++ OOo_1.1.5/sw/inc/fmtflcnt.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -66,6 +66,7 @@ #include #endif +class SwTxtFlyCnt; class SwFrmFmt; // ATT_FLYCNT ******************************************************* diff -Naur OOo_1.1.5-orig/sw/inc/fmtfld.hxx OOo_1.1.5/sw/inc/fmtfld.hxx --- OOo_1.1.5-orig/sw/inc/fmtfld.hxx 2000-09-18 12:14:26.000000000 -0500 +++ OOo_1.1.5/sw/inc/fmtfld.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -70,6 +70,7 @@ #endif class SwField; +class SwTxtFld; // ATT_FLD *********************************** class SwFmtFld : public SfxPoolItem, public SwClient diff -Naur OOo_1.1.5-orig/sw/inc/fmtftn.hxx OOo_1.1.5/sw/inc/fmtftn.hxx --- OOo_1.1.5-orig/sw/inc/fmtftn.hxx 2000-09-18 12:14:26.000000000 -0500 +++ OOo_1.1.5/sw/inc/fmtftn.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -70,6 +70,7 @@ #endif class SwDoc; +class SwTxtFtn; // ATT_FTN ********************************************************** diff -Naur OOo_1.1.5-orig/sw/inc/fmtinfmt.hxx OOo_1.1.5/sw/inc/fmtinfmt.hxx --- OOo_1.1.5-orig/sw/inc/fmtinfmt.hxx 2002-06-27 03:26:16.000000000 -0500 +++ OOo_1.1.5/sw/inc/fmtinfmt.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -72,6 +72,7 @@ class SvxMacro; class SvxMacroTableDtor; class IntlWrapper; +class SwTxtINetFmt; // ATT_INETFMT ********************************************* class SwFmtINetFmt: public SfxPoolItem diff -Naur OOo_1.1.5-orig/sw/inc/fmtrfmrk.hxx OOo_1.1.5/sw/inc/fmtrfmrk.hxx --- OOo_1.1.5-orig/sw/inc/fmtrfmrk.hxx 2000-09-18 12:14:26.000000000 -0500 +++ OOo_1.1.5/sw/inc/fmtrfmrk.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -70,7 +70,7 @@ #endif // ATT_REFMARK ******************************************************* - +class SwTxtRefMark; class SwFmtRefMark : public SfxPoolItem { friend class SwTxtRefMark; diff -Naur OOo_1.1.5-orig/sw/inc/fmtruby.hxx OOo_1.1.5/sw/inc/fmtruby.hxx --- OOo_1.1.5-orig/sw/inc/fmtruby.hxx 2001-05-12 22:32:47.000000000 -0500 +++ OOo_1.1.5/sw/inc/fmtruby.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -69,7 +69,7 @@ #include #endif - +class SwTxtRuby; class SwFmtRuby : public SfxPoolItem { friend class SwTxtRuby; diff -Naur OOo_1.1.5-orig/sw/inc/section.hxx OOo_1.1.5/sw/inc/section.hxx --- OOo_1.1.5-orig/sw/inc/section.hxx 2002-12-05 07:08:00.000000000 -0600 +++ OOo_1.1.5/sw/inc/section.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -87,6 +87,7 @@ class SwDoc; class SwSection; class SwTOXBase; +class SwSectionNode; #ifndef SW_DECL_SWSERVEROBJECT_DEFINED #define SW_DECL_SWSERVEROBJECT_DEFINED diff -Naur OOo_1.1.5-orig/sw/source/core/access/accfrmobjslist.hxx OOo_1.1.5/sw/source/core/access/accfrmobjslist.hxx --- OOo_1.1.5-orig/sw/source/core/access/accfrmobjslist.hxx 2002-04-11 08:45:32.000000000 -0500 +++ OOo_1.1.5/sw/source/core/access/accfrmobjslist.hxx 2005-10-03 21:37:59.000000000 -0500 @@ -65,6 +65,7 @@ #include #endif +class SwFrmOrObjSList; class SwFrmOrObjSList_const_iterator { friend class SwFrmOrObjSList; diff -Naur OOo_1.1.5-orig/sw/source/core/bastyp/calc.cxx OOo_1.1.5/sw/source/core/bastyp/calc.cxx --- OOo_1.1.5-orig/sw/source/core/bastyp/calc.cxx 2004-01-09 08:31:20.000000000 -0600 +++ OOo_1.1.5/sw/source/core/bastyp/calc.cxx 2005-10-03 21:37:59.000000000 -0500 @@ -1745,7 +1745,7 @@ { for ( USHORT i = 0; i < nCount; ++i ) delete *(ppHashTable+i); - __DELETE(nCount) ppHashTable; + delete [] ppHashTable; } SwCalcExp::SwCalcExp( const String& rStr, const SwSbxValue& rVal, diff -Naur OOo_1.1.5-orig/sw/source/core/doc/doclay.cxx OOo_1.1.5/sw/source/core/doc/doclay.cxx --- OOo_1.1.5-orig/sw/source/core/doc/doclay.cxx 2003-07-04 08:19:41.000000000 -0500 +++ OOo_1.1.5/sw/source/core/doc/doclay.cxx 2005-10-03 21:37:59.000000000 -0500 @@ -1883,7 +1883,7 @@ break; } - __DELETE( nFlagSize ) pSetFlags; + delete [] pSetFlags; return aName += String::CreateFromInt32( ++nNum ); } diff -Naur OOo_1.1.5-orig/sw/source/core/doc/docnum.cxx OOo_1.1.5/sw/source/core/doc/docnum.cxx --- OOo_1.1.5-orig/sw/source/core/doc/docnum.cxx 2004-10-12 04:40:35.000000000 -0500 +++ OOo_1.1.5/sw/source/core/doc/docnum.cxx 2005-10-03 21:38:00.000000000 -0500 @@ -1942,7 +1942,8 @@ if( !pOwnRedl && !IsIgnoreRedline() && GetRedlineTbl().Count() ) { - SplitRedline( SwPaM( aIdx )); + SwPaM aTemp(aIdx); + SplitRedline(aTemp); } ULONG nRedlSttNd, nRedlEndNd; @@ -2183,7 +2184,7 @@ } } - __DELETE( nFlagSize ) pSetFlags; + delete [] pSetFlags; if( pChkStr && pChkStr->Len() ) return *pChkStr; return aName += String::CreateFromInt32( ++nNum ); diff -Naur OOo_1.1.5-orig/sw/source/core/doc/docredln.cxx OOo_1.1.5/sw/source/core/doc/docredln.cxx --- OOo_1.1.5-orig/sw/source/core/doc/docredln.cxx 2004-01-09 08:31:25.000000000 -0600 +++ OOo_1.1.5/sw/source/core/doc/docredln.cxx 2005-10-03 21:38:00.000000000 -0500 @@ -1315,8 +1315,8 @@ BOOL SwDoc::DeleteRedline( const SwStartNode& rNode, BOOL bSaveInUndo, USHORT nDelType ) { - return DeleteRedline( SwPaM( *rNode.EndOfSectionNode(), rNode ), - bSaveInUndo, nDelType ); + SwPaM aTemp(*rNode.EndOfSectionNode(), rNode); + return DeleteRedline(aTemp, bSaveInUndo, nDelType); } void SwDoc::DeleteRedline( USHORT nPos ) diff -Naur OOo_1.1.5-orig/sw/source/core/doc/docsort.cxx OOo_1.1.5/sw/source/core/doc/docsort.cxx --- OOo_1.1.5-orig/sw/source/core/doc/docsort.cxx 2003-04-17 08:51:40.000000000 -0500 +++ OOo_1.1.5/sw/source/core/doc/docsort.cxx 2005-10-03 21:38:00.000000000 -0500 @@ -887,10 +887,10 @@ FlatFndBox::~FlatFndBox() { _FndBox** ppTmp = (_FndBox**)pArr; - __DELETE(nRows * nCols * sizeof(_FndBoxPtr)) ppTmp; + delete [] ppTmp; if( ppItemSets ) - __DELETE(nRows * nCols * sizeof(SfxItemSet*)) ppItemSets; + delete [] ppItemSets; } /*-------------------------------------------------------------------- diff -Naur OOo_1.1.5-orig/sw/source/core/doc/doctxm.cxx OOo_1.1.5/sw/source/core/doc/doctxm.cxx --- OOo_1.1.5-orig/sw/source/core/doc/doctxm.cxx 2004-01-09 08:31:26.000000000 -0600 +++ OOo_1.1.5/sw/source/core/doc/doctxm.cxx 2005-10-03 21:38:00.000000000 -0500 @@ -848,7 +848,7 @@ break; } } - __DELETE( nFlagSize ) pSetFlags; + delete [] pSetFlags; if( pChkStr ) return *pChkStr; return aName += String::CreateFromInt32( ++nNum ); diff -Naur OOo_1.1.5-orig/sw/source/core/doc/swtable.cxx OOo_1.1.5/sw/source/core/doc/swtable.cxx --- OOo_1.1.5-orig/sw/source/core/doc/swtable.cxx 2003-04-17 11:05:04.000000000 -0500 +++ OOo_1.1.5/sw/source/core/doc/swtable.cxx 2005-10-03 21:38:00.000000000 -0500 @@ -1691,18 +1691,18 @@ if( !pDoc->IsIgnoreRedline() && pDoc->GetRedlineTbl().Count() ) { - pDoc->DeleteRedline( SwPaM( *pTNd, 0, *pTNd, rOrig.Len() ), - sal_True ); + SwPaM aTemp(*pTNd, 0, *pTNd, rOrig.Len()); + pDoc->DeleteRedline(aTemp, sal_True); } pTNd->Erase( aIdx, n, INS_EMPTYEXPAND ); pTNd->Insert( rTxt, aIdx, INS_EMPTYEXPAND ); if( pDoc->IsRedlineOn() ) - { - pDoc->AppendRedline( - new SwRedline( REDLINE_INSERT, - SwPaM( *pTNd, 0, *pTNd, rTxt.Len() ) ) ); + { + SwPaM aTemp(*pTNd, 0, *pTNd, rTxt.Len()); + pDoc->AppendRedline(new SwRedline(REDLINE_INSERT, aTemp)); + } } diff -Naur OOo_1.1.5-orig/sw/source/core/docnode/ndsect.cxx OOo_1.1.5/sw/source/core/docnode/ndsect.cxx --- OOo_1.1.5-orig/sw/source/core/docnode/ndsect.cxx 2004-01-09 08:31:28.000000000 -0600 +++ OOo_1.1.5/sw/source/core/docnode/ndsect.cxx 2005-10-03 21:38:01.000000000 -0500 @@ -1454,7 +1454,7 @@ } } - __DELETE( nFlagSize ) pSetFlags; + delete [] pSetFlags; if( pChkStr ) return *pChkStr; return aName += String::CreateFromInt32( ++nNum ); diff -Naur OOo_1.1.5-orig/sw/source/core/docnode/ndtbl.cxx OOo_1.1.5/sw/source/core/docnode/ndtbl.cxx --- OOo_1.1.5-orig/sw/source/core/docnode/ndtbl.cxx 2004-10-12 04:35:13.000000000 -0500 +++ OOo_1.1.5/sw/source/core/docnode/ndtbl.cxx 2005-10-03 21:38:01.000000000 -0500 @@ -3321,7 +3321,7 @@ break; } - __DELETE( nFlagSize ) pSetFlags; + delete [] pSetFlags; return aName += String::CreateFromInt32( ++nNum ); } diff -Naur OOo_1.1.5-orig/sw/source/core/draw/dpage.cxx OOo_1.1.5/sw/source/core/draw/dpage.cxx --- OOo_1.1.5-orig/sw/source/core/draw/dpage.cxx 2003-04-17 08:58:52.000000000 -0500 +++ OOo_1.1.5/sw/source/core/draw/dpage.cxx 2005-10-03 21:38:01.000000000 -0500 @@ -341,8 +341,8 @@ aPt -= pFly->Frm().Pos(); // ohne MapMode-Offset !!!!! // ohne MapMode-Offset, ohne Offset, o ... !!!!! - aPt = (Point&)(Size&)pWindow->LogicToPixel( - (Size&)aPt, MapMode( MAP_TWIP ) ); + aPt = (Point&)(const Size&)pWindow->LogicToPixel( + (const Size&)aPt, MapMode( MAP_TWIP ) ); ((( sTxt += '?' ) += String::CreateFromInt32( aPt.X() )) += ',' ) += String::CreateFromInt32( aPt.Y() ); } diff -Naur OOo_1.1.5-orig/sw/source/core/edit/edlingu.cxx OOo_1.1.5/sw/source/core/edit/edlingu.cxx --- OOo_1.1.5-orig/sw/source/core/edit/edlingu.cxx 2004-01-09 08:31:33.000000000 -0600 +++ OOo_1.1.5/sw/source/core/edit/edlingu.cxx 2005-10-03 21:38:01.000000000 -0500 @@ -216,7 +216,7 @@ /************************************************************************* * class SwHyphIter *************************************************************************/ - +class SwTxtFrm; class SwHyphIter : public SwLinguIter { sal_Bool bOldIdle; diff -Naur OOo_1.1.5-orig/sw/source/core/frmedt/fecopy.cxx OOo_1.1.5/sw/source/core/frmedt/fecopy.cxx --- OOo_1.1.5-orig/sw/source/core/frmedt/fecopy.cxx 2005-04-29 10:43:24.000000000 -0500 +++ OOo_1.1.5/sw/source/core/frmedt/fecopy.cxx 2005-10-03 21:38:01.000000000 -0500 @@ -391,8 +391,9 @@ SdrObject* pNew = pClpDoc->CloneSdrObj( *pObj, FALSE, TRUE ); //JP 07.01.00: why move?? -// pNew->NbcMove( aSiz ); - pClpDoc->Insert( SwPaM( aPos ), *pNew, &aSet ); +// pNew->NbcMove(aSiz); + SwPaM aTemp(aPos); + pClpDoc->Insert(aTemp, *pNew, &aSet); } else { diff -Naur OOo_1.1.5-orig/sw/source/core/frmedt/fefly1.cxx OOo_1.1.5/sw/source/core/frmedt/fefly1.cxx --- OOo_1.1.5-orig/sw/source/core/frmedt/fefly1.cxx 2003-07-24 03:57:18.000000000 -0500 +++ OOo_1.1.5/sw/source/core/frmedt/fefly1.cxx 2005-10-03 21:38:01.000000000 -0500 @@ -1693,8 +1693,8 @@ Point aPt( rPt ); aPt -= pFly->Frm().Pos(); // ohne MapMode-Offset, ohne Offset, o ... !!!!! - aPt = (Point&)(Size&)GetOut()->LogicToPixel( - (Size&)aPt, MapMode( MAP_TWIP ) ); + aPt = (Point&)(const Size&)GetOut()->LogicToPixel( + (const Size&)aPt, MapMode( MAP_TWIP ) ); ((( *pURL += '?' ) += String::CreateFromInt32( aPt.X() )) += ',' ) += String::CreateFromInt32(aPt.Y() ); } diff -Naur OOo_1.1.5-orig/sw/source/core/inc/doctxm.hxx OOo_1.1.5/sw/source/core/inc/doctxm.hxx --- OOo_1.1.5-orig/sw/source/core/inc/doctxm.hxx 2003-04-17 05:11: