Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 50233 | Differences between
and this patch

Collapse All | Expand All

(-)connectivity/source/drivers/jdbc/Connection.cxx.conn31464 (-3 / +9 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: Connection.cxx,v $
3
 *  $RCSfile: Connection.cxx,v $
4
 *
4
 *
5
 *  $Revision: 1.17 $
5
 *  $Revision: 1.17.110.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2003/06/06 10:50:29 $
7
 *  last change: $Author: hr $ $Date: 2004/07/20 10:52:34 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 674-680 Link Here
674
		} //mID
674
		} //mID
675
	} //t.pEnv
675
	} //t.pEnv
676
	// ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!!
676
	// ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!!
677
	return out ? makeAny(java_sql_SQLWarning(java_sql_SQLWarning_BASE( t.pEnv, out ),*this)) : Any();
677
	if( out )
678
	{
679
		java_sql_SQLWarning_BASE		warn_base(t.pEnv, out);
680
		return makeAny(java_sql_SQLWarning(warn_base,*this));
681
	}
682
683
	return Any();
678
}
684
}
679
// -----------------------------------------------------------------------------
685
// -----------------------------------------------------------------------------
680
void java_sql_Connection::loadDriverFromProperties(const Sequence< PropertyValue >& info,
686
void java_sql_Connection::loadDriverFromProperties(const Sequence< PropertyValue >& info,
(-)connectivity/source/drivers/jdbc/DatabaseMetaData.cxx.conn31464 (-53 / +53 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: DatabaseMetaData.cxx,v $
3
 *  $RCSfile: DatabaseMetaData.cxx,v $
4
 *
4
 *
5
 *  $Revision: 1.16 $
5
 *  $Revision: 1.16.128.1 $
6
 *
6
 *
7
 *  last change: $Author: rt $ $Date: 2003/04/24 13:20:00 $
7
 *  last change: $Author: hr $ $Date: 2004/07/20 10:52:34 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 1627-1633 Link Here
1627
// -------------------------------------------------------------------------
1627
// -------------------------------------------------------------------------
1628
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsIntegrityEnhancementFacility(  ) throw(SQLException, RuntimeException)
1628
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsIntegrityEnhancementFacility(  ) throw(SQLException, RuntimeException)
1629
{
1629
{
1630
	jboolean out;
1630
	jboolean out(sal_False);
1631
	SDBThreadAttach t;
1631
	SDBThreadAttach t;
1632
	if( t.pEnv ){
1632
	if( t.pEnv ){
1633
1633
Lines 1856-1862 Link Here
1856
// -------------------------------------------------------------------------
1856
// -------------------------------------------------------------------------
1857
sal_Bool SAL_CALL java_sql_DatabaseMetaData::allProceduresAreCallable(  ) throw(SQLException, RuntimeException)
1857
sal_Bool SAL_CALL java_sql_DatabaseMetaData::allProceduresAreCallable(  ) throw(SQLException, RuntimeException)
1858
{
1858
{
1859
	jboolean out;
1859
	jboolean out(sal_False);
1860
	SDBThreadAttach t;
1860
	SDBThreadAttach t;
1861
	if( t.pEnv ){
1861
	if( t.pEnv ){
1862
1862
Lines 1875-1881 Link Here
1875
// -------------------------------------------------------------------------
1875
// -------------------------------------------------------------------------
1876
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsStoredProcedures(  ) throw(SQLException, RuntimeException)
1876
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsStoredProcedures(  ) throw(SQLException, RuntimeException)
1877
{
1877
{
1878
	jboolean out;
1878
	jboolean out(sal_False);
1879
	SDBThreadAttach t;
1879
	SDBThreadAttach t;
1880
	if( t.pEnv ){
1880
	if( t.pEnv ){
1881
1881
Lines 1894-1900 Link Here
1894
// -------------------------------------------------------------------------
1894
// -------------------------------------------------------------------------
1895
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSelectForUpdate(  ) throw(SQLException, RuntimeException)
1895
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSelectForUpdate(  ) throw(SQLException, RuntimeException)
1896
{
1896
{
1897
	jboolean out;
1897
	jboolean out(sal_False);
1898
	SDBThreadAttach t;
1898
	SDBThreadAttach t;
1899
	if( t.pEnv ){
1899
	if( t.pEnv ){
1900
1900
Lines 1913-1919 Link Here
1913
// -------------------------------------------------------------------------
1913
// -------------------------------------------------------------------------
1914
sal_Bool SAL_CALL java_sql_DatabaseMetaData::allTablesAreSelectable(  ) throw(SQLException, RuntimeException)
1914
sal_Bool SAL_CALL java_sql_DatabaseMetaData::allTablesAreSelectable(  ) throw(SQLException, RuntimeException)
1915
{
1915
{
1916
	jboolean out;
1916
	jboolean out(sal_False);
1917
	SDBThreadAttach t;
1917
	SDBThreadAttach t;
1918
	if( t.pEnv ){
1918
	if( t.pEnv ){
1919
1919
Lines 1932-1938 Link Here
1932
// -------------------------------------------------------------------------
1932
// -------------------------------------------------------------------------
1933
sal_Bool SAL_CALL java_sql_DatabaseMetaData::isReadOnly(  ) throw(SQLException, RuntimeException)
1933
sal_Bool SAL_CALL java_sql_DatabaseMetaData::isReadOnly(  ) throw(SQLException, RuntimeException)
1934
{
1934
{
1935
	jboolean out;
1935
	jboolean out(sal_True);
1936
	SDBThreadAttach t;
1936
	SDBThreadAttach t;
1937
	if( t.pEnv ){
1937
	if( t.pEnv ){
1938
1938
Lines 1951-1957 Link Here
1951
// -------------------------------------------------------------------------
1951
// -------------------------------------------------------------------------
1952
sal_Bool SAL_CALL java_sql_DatabaseMetaData::usesLocalFiles(  ) throw(SQLException, RuntimeException)
1952
sal_Bool SAL_CALL java_sql_DatabaseMetaData::usesLocalFiles(  ) throw(SQLException, RuntimeException)
1953
{
1953
{
1954
	jboolean out;
1954
	jboolean out(sal_False);
1955
	SDBThreadAttach t;
1955
	SDBThreadAttach t;
1956
	if( t.pEnv ){
1956
	if( t.pEnv ){
1957
1957
Lines 1970-1976 Link Here
1970
// -------------------------------------------------------------------------
1970
// -------------------------------------------------------------------------
1971
sal_Bool SAL_CALL java_sql_DatabaseMetaData::usesLocalFilePerTable(  ) throw(SQLException, RuntimeException)
1971
sal_Bool SAL_CALL java_sql_DatabaseMetaData::usesLocalFilePerTable(  ) throw(SQLException, RuntimeException)
1972
{
1972
{
1973
	jboolean out;
1973
	jboolean out(sal_False);
1974
	SDBThreadAttach t;
1974
	SDBThreadAttach t;
1975
	if( t.pEnv ){
1975
	if( t.pEnv ){
1976
1976
Lines 1989-1995 Link Here
1989
// -------------------------------------------------------------------------
1989
// -------------------------------------------------------------------------
1990
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsTypeConversion(  ) throw(SQLException, RuntimeException)
1990
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsTypeConversion(  ) throw(SQLException, RuntimeException)
1991
{
1991
{
1992
	jboolean out;
1992
	jboolean out(sal_False);
1993
	SDBThreadAttach t;
1993
	SDBThreadAttach t;
1994
	if( t.pEnv ){
1994
	if( t.pEnv ){
1995
1995
Lines 2008-2014 Link Here
2008
// -------------------------------------------------------------------------
2008
// -------------------------------------------------------------------------
2009
sal_Bool SAL_CALL java_sql_DatabaseMetaData::nullPlusNonNullIsNull(  ) throw(SQLException, RuntimeException)
2009
sal_Bool SAL_CALL java_sql_DatabaseMetaData::nullPlusNonNullIsNull(  ) throw(SQLException, RuntimeException)
2010
{
2010
{
2011
	jboolean out;
2011
	jboolean out(sal_False);
2012
	SDBThreadAttach t;
2012
	SDBThreadAttach t;
2013
	if( t.pEnv ){
2013
	if( t.pEnv ){
2014
2014
Lines 2027-2033 Link Here
2027
// -------------------------------------------------------------------------
2027
// -------------------------------------------------------------------------
2028
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsColumnAliasing(  ) throw(SQLException, RuntimeException)
2028
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsColumnAliasing(  ) throw(SQLException, RuntimeException)
2029
{
2029
{
2030
	jboolean out;
2030
	jboolean out(sal_False);
2031
	SDBThreadAttach t;
2031
	SDBThreadAttach t;
2032
	if( t.pEnv ){
2032
	if( t.pEnv ){
2033
2033
Lines 2046-2052 Link Here
2046
// -------------------------------------------------------------------------
2046
// -------------------------------------------------------------------------
2047
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsTableCorrelationNames(  ) throw(SQLException, RuntimeException)
2047
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsTableCorrelationNames(  ) throw(SQLException, RuntimeException)
2048
{
2048
{
2049
	jboolean out;
2049
	jboolean out(sal_False);
2050
	SDBThreadAttach t;
2050
	SDBThreadAttach t;
2051
	if( t.pEnv ){
2051
	if( t.pEnv ){
2052
2052
Lines 2065-2071 Link Here
2065
// -------------------------------------------------------------------------
2065
// -------------------------------------------------------------------------
2066
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsConvert( sal_Int32 fromType, sal_Int32 toType ) throw(SQLException, RuntimeException)
2066
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsConvert( sal_Int32 fromType, sal_Int32 toType ) throw(SQLException, RuntimeException)
2067
{
2067
{
2068
	jboolean out;
2068
	jboolean out(sal_False);
2069
	SDBThreadAttach t;
2069
	SDBThreadAttach t;
2070
	if( t.pEnv ){
2070
	if( t.pEnv ){
2071
	jvalue args[2];
2071
	jvalue args[2];
Lines 2088-2094 Link Here
2088
// -------------------------------------------------------------------------
2088
// -------------------------------------------------------------------------
2089
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsExpressionsInOrderBy(  ) throw(SQLException, RuntimeException)
2089
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsExpressionsInOrderBy(  ) throw(SQLException, RuntimeException)
2090
{
2090
{
2091
	jboolean out;
2091
	jboolean out(sal_False);
2092
	SDBThreadAttach t;
2092
	SDBThreadAttach t;
2093
	if( t.pEnv ){
2093
	if( t.pEnv ){
2094
2094
Lines 2107-2113 Link Here
2107
// -------------------------------------------------------------------------
2107
// -------------------------------------------------------------------------
2108
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsGroupBy(  ) throw(SQLException, RuntimeException)
2108
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsGroupBy(  ) throw(SQLException, RuntimeException)
2109
{
2109
{
2110
	jboolean out;
2110
	jboolean out(sal_False);
2111
	SDBThreadAttach t;
2111
	SDBThreadAttach t;
2112
	if( t.pEnv ){
2112
	if( t.pEnv ){
2113
2113
Lines 2126-2132 Link Here
2126
// -------------------------------------------------------------------------
2126
// -------------------------------------------------------------------------
2127
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsGroupByBeyondSelect(  ) throw(SQLException, RuntimeException)
2127
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsGroupByBeyondSelect(  ) throw(SQLException, RuntimeException)
2128
{
2128
{
2129
	jboolean out;
2129
	jboolean out(sal_False);
2130
	SDBThreadAttach t;
2130
	SDBThreadAttach t;
2131
	if( t.pEnv ){
2131
	if( t.pEnv ){
2132
2132
Lines 2145-2151 Link Here
2145
// -------------------------------------------------------------------------
2145
// -------------------------------------------------------------------------
2146
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsGroupByUnrelated(  ) throw(SQLException, RuntimeException)
2146
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsGroupByUnrelated(  ) throw(SQLException, RuntimeException)
2147
{
2147
{
2148
	jboolean out;
2148
	jboolean out(sal_False);
2149
	SDBThreadAttach t;
2149
	SDBThreadAttach t;
2150
	if( t.pEnv ){
2150
	if( t.pEnv ){
2151
2151
Lines 2164-2170 Link Here
2164
// -------------------------------------------------------------------------
2164
// -------------------------------------------------------------------------
2165
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsMultipleTransactions(  ) throw(SQLException, RuntimeException)
2165
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsMultipleTransactions(  ) throw(SQLException, RuntimeException)
2166
{
2166
{
2167
	jboolean out;
2167
	jboolean out(sal_False);
2168
	SDBThreadAttach t;
2168
	SDBThreadAttach t;
2169
	if( t.pEnv ){
2169
	if( t.pEnv ){
2170
2170
Lines 2183-2189 Link Here
2183
// -------------------------------------------------------------------------
2183
// -------------------------------------------------------------------------
2184
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsMultipleResultSets(  ) throw(SQLException, RuntimeException)
2184
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsMultipleResultSets(  ) throw(SQLException, RuntimeException)
2185
{
2185
{
2186
	jboolean out;
2186
	jboolean out(sal_False);
2187
	SDBThreadAttach t;
2187
	SDBThreadAttach t;
2188
	if( t.pEnv ){
2188
	if( t.pEnv ){
2189
2189
Lines 2202-2208 Link Here
2202
// -------------------------------------------------------------------------
2202
// -------------------------------------------------------------------------
2203
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsLikeEscapeClause(  ) throw(SQLException, RuntimeException)
2203
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsLikeEscapeClause(  ) throw(SQLException, RuntimeException)
2204
{
2204
{
2205
	jboolean out;
2205
	jboolean out(sal_False);
2206
	SDBThreadAttach t;
2206
	SDBThreadAttach t;
2207
	if( t.pEnv ){
2207
	if( t.pEnv ){
2208
2208
Lines 2221-2227 Link Here
2221
// -------------------------------------------------------------------------
2221
// -------------------------------------------------------------------------
2222
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsOrderByUnrelated(  ) throw(SQLException, RuntimeException)
2222
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsOrderByUnrelated(  ) throw(SQLException, RuntimeException)
2223
{
2223
{
2224
	jboolean out;
2224
	jboolean out(sal_False);
2225
	SDBThreadAttach t;
2225
	SDBThreadAttach t;
2226
	if( t.pEnv ){
2226
	if( t.pEnv ){
2227
2227
Lines 2240-2246 Link Here
2240
// -------------------------------------------------------------------------
2240
// -------------------------------------------------------------------------
2241
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsUnion(  ) throw(SQLException, RuntimeException)
2241
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsUnion(  ) throw(SQLException, RuntimeException)
2242
{
2242
{
2243
	jboolean out;
2243
	jboolean out(sal_False);
2244
	SDBThreadAttach t;
2244
	SDBThreadAttach t;
2245
	if( t.pEnv ){
2245
	if( t.pEnv ){
2246
2246
Lines 2259-2265 Link Here
2259
// -------------------------------------------------------------------------
2259
// -------------------------------------------------------------------------
2260
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsUnionAll(  ) throw(SQLException, RuntimeException)
2260
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsUnionAll(  ) throw(SQLException, RuntimeException)
2261
{
2261
{
2262
	jboolean out;
2262
	jboolean out(sal_False);
2263
	SDBThreadAttach t;
2263
	SDBThreadAttach t;
2264
	if( t.pEnv ){
2264
	if( t.pEnv ){
2265
2265
Lines 2278-2284 Link Here
2278
// -------------------------------------------------------------------------
2278
// -------------------------------------------------------------------------
2279
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsMixedCaseIdentifiers(  ) throw(SQLException, RuntimeException)
2279
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsMixedCaseIdentifiers(  ) throw(SQLException, RuntimeException)
2280
{
2280
{
2281
	jboolean out;
2281
	jboolean out(sal_False);
2282
	SDBThreadAttach t;
2282
	SDBThreadAttach t;
2283
	if( t.pEnv ){
2283
	if( t.pEnv ){
2284
2284
Lines 2297-2303 Link Here
2297
// -------------------------------------------------------------------------
2297
// -------------------------------------------------------------------------
2298
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsMixedCaseQuotedIdentifiers(  ) throw(SQLException, RuntimeException)
2298
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsMixedCaseQuotedIdentifiers(  ) throw(SQLException, RuntimeException)
2299
{
2299
{
2300
	jboolean out;
2300
	jboolean out(sal_False);
2301
	SDBThreadAttach t;
2301
	SDBThreadAttach t;
2302
	if( t.pEnv ){
2302
	if( t.pEnv ){
2303
2303
Lines 2316-2322 Link Here
2316
// -------------------------------------------------------------------------
2316
// -------------------------------------------------------------------------
2317
sal_Bool SAL_CALL java_sql_DatabaseMetaData::nullsAreSortedAtEnd(  ) throw(SQLException, RuntimeException)
2317
sal_Bool SAL_CALL java_sql_DatabaseMetaData::nullsAreSortedAtEnd(  ) throw(SQLException, RuntimeException)
2318
{
2318
{
2319
	jboolean out;
2319
	jboolean out(sal_False);
2320
	SDBThreadAttach t;
2320
	SDBThreadAttach t;
2321
	if( t.pEnv ){
2321
	if( t.pEnv ){
2322
2322
Lines 2335-2341 Link Here
2335
// -------------------------------------------------------------------------
2335
// -------------------------------------------------------------------------
2336
sal_Bool SAL_CALL java_sql_DatabaseMetaData::nullsAreSortedAtStart(  ) throw(SQLException, RuntimeException)
2336
sal_Bool SAL_CALL java_sql_DatabaseMetaData::nullsAreSortedAtStart(  ) throw(SQLException, RuntimeException)
2337
{
2337
{
2338
	jboolean out;
2338
	jboolean out(sal_False);
2339
	SDBThreadAttach t;
2339
	SDBThreadAttach t;
2340
	if( t.pEnv ){
2340
	if( t.pEnv ){
2341
2341
Lines 2354-2360 Link Here
2354
// -------------------------------------------------------------------------
2354
// -------------------------------------------------------------------------
2355
sal_Bool SAL_CALL java_sql_DatabaseMetaData::nullsAreSortedHigh(  ) throw(SQLException, RuntimeException)
2355
sal_Bool SAL_CALL java_sql_DatabaseMetaData::nullsAreSortedHigh(  ) throw(SQLException, RuntimeException)
2356
{
2356
{
2357
	jboolean out;
2357
	jboolean out(sal_False);
2358
	SDBThreadAttach t;
2358
	SDBThreadAttach t;
2359
	if( t.pEnv ){
2359
	if( t.pEnv ){
2360
2360
Lines 2373-2379 Link Here
2373
// -------------------------------------------------------------------------
2373
// -------------------------------------------------------------------------
2374
sal_Bool SAL_CALL java_sql_DatabaseMetaData::nullsAreSortedLow(  ) throw(SQLException, RuntimeException)
2374
sal_Bool SAL_CALL java_sql_DatabaseMetaData::nullsAreSortedLow(  ) throw(SQLException, RuntimeException)
2375
{
2375
{
2376
	jboolean out;
2376
	jboolean out(sal_False);
2377
	SDBThreadAttach t;
2377
	SDBThreadAttach t;
2378
	if( t.pEnv ){
2378
	if( t.pEnv ){
2379
2379
Lines 2392-2398 Link Here
2392
// -------------------------------------------------------------------------
2392
// -------------------------------------------------------------------------
2393
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSchemasInProcedureCalls(  ) throw(SQLException, RuntimeException)
2393
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSchemasInProcedureCalls(  ) throw(SQLException, RuntimeException)
2394
{
2394
{
2395
	jboolean out;
2395
	jboolean out(sal_False);
2396
	SDBThreadAttach t;
2396
	SDBThreadAttach t;
2397
	if( t.pEnv ){
2397
	if( t.pEnv ){
2398
2398
Lines 2411-2417 Link Here
2411
// -------------------------------------------------------------------------
2411
// -------------------------------------------------------------------------
2412
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSchemasInPrivilegeDefinitions(  ) throw(SQLException, RuntimeException)
2412
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSchemasInPrivilegeDefinitions(  ) throw(SQLException, RuntimeException)
2413
{
2413
{
2414
	jboolean out;
2414
	jboolean out(sal_False);
2415
	SDBThreadAttach t;
2415
	SDBThreadAttach t;
2416
	if( t.pEnv ){
2416
	if( t.pEnv ){
2417
2417
Lines 2430-2436 Link Here
2430
// -------------------------------------------------------------------------
2430
// -------------------------------------------------------------------------
2431
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsCatalogsInProcedureCalls(  ) throw(SQLException, RuntimeException)
2431
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsCatalogsInProcedureCalls(  ) throw(SQLException, RuntimeException)
2432
{
2432
{
2433
	jboolean out;
2433
	jboolean out(sal_False);
2434
	SDBThreadAttach t;
2434
	SDBThreadAttach t;
2435
	if( t.pEnv ){
2435
	if( t.pEnv ){
2436
2436
Lines 2449-2455 Link Here
2449
// -------------------------------------------------------------------------
2449
// -------------------------------------------------------------------------
2450
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsCatalogsInPrivilegeDefinitions(  ) throw(SQLException, RuntimeException)
2450
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsCatalogsInPrivilegeDefinitions(  ) throw(SQLException, RuntimeException)
2451
{
2451
{
2452
	jboolean out;
2452
	jboolean out(sal_False);
2453
	SDBThreadAttach t;
2453
	SDBThreadAttach t;
2454
	if( t.pEnv ){
2454
	if( t.pEnv ){
2455
2455
Lines 2468-2474 Link Here
2468
// -------------------------------------------------------------------------
2468
// -------------------------------------------------------------------------
2469
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsCorrelatedSubqueries(  ) throw(SQLException, RuntimeException)
2469
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsCorrelatedSubqueries(  ) throw(SQLException, RuntimeException)
2470
{
2470
{
2471
	jboolean out;
2471
	jboolean out(sal_False);
2472
	SDBThreadAttach t;
2472
	SDBThreadAttach t;
2473
	if( t.pEnv ){
2473
	if( t.pEnv ){
2474
2474
Lines 2487-2493 Link Here
2487
// -------------------------------------------------------------------------
2487
// -------------------------------------------------------------------------
2488
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSubqueriesInComparisons(  ) throw(SQLException, RuntimeException)
2488
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSubqueriesInComparisons(  ) throw(SQLException, RuntimeException)
2489
{
2489
{
2490
	jboolean out;
2490
	jboolean out(sal_False);
2491
	SDBThreadAttach t;
2491
	SDBThreadAttach t;
2492
	if( t.pEnv ){
2492
	if( t.pEnv ){
2493
2493
Lines 2506-2512 Link Here
2506
// -------------------------------------------------------------------------
2506
// -------------------------------------------------------------------------
2507
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSubqueriesInExists(  ) throw(SQLException, RuntimeException)
2507
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSubqueriesInExists(  ) throw(SQLException, RuntimeException)
2508
{
2508
{
2509
	jboolean out;
2509
	jboolean out(sal_False);
2510
	SDBThreadAttach t;
2510
	SDBThreadAttach t;
2511
	if( t.pEnv ){
2511
	if( t.pEnv ){
2512
2512
Lines 2525-2531 Link Here
2525
// -------------------------------------------------------------------------
2525
// -------------------------------------------------------------------------
2526
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSubqueriesInIns(  ) throw(SQLException, RuntimeException)
2526
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSubqueriesInIns(  ) throw(SQLException, RuntimeException)
2527
{
2527
{
2528
	jboolean out;
2528
	jboolean out(sal_False);
2529
	SDBThreadAttach t;
2529
	SDBThreadAttach t;
2530
	if( t.pEnv ){
2530
	if( t.pEnv ){
2531
2531
Lines 2544-2550 Link Here
2544
// -------------------------------------------------------------------------
2544
// -------------------------------------------------------------------------
2545
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSubqueriesInQuantifieds(  ) throw(SQLException, RuntimeException)
2545
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsSubqueriesInQuantifieds(  ) throw(SQLException, RuntimeException)
2546
{
2546
{
2547
	jboolean out;
2547
	jboolean out(sal_False);
2548
	SDBThreadAttach t;
2548
	SDBThreadAttach t;
2549
	if( t.pEnv ){
2549
	if( t.pEnv ){
2550
2550
Lines 2563-2569 Link Here
2563
// -------------------------------------------------------------------------
2563
// -------------------------------------------------------------------------
2564
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsANSI92IntermediateSQL(  ) throw(SQLException, RuntimeException)
2564
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsANSI92IntermediateSQL(  ) throw(SQLException, RuntimeException)
2565
{
2565
{
2566
	jboolean out;
2566
	jboolean out(sal_False);
2567
	SDBThreadAttach t;
2567
	SDBThreadAttach t;
2568
	if( t.pEnv ){
2568
	if( t.pEnv ){
2569
2569
Lines 2766-2772 Link Here
2766
// -------------------------------------------------------------------------
2766
// -------------------------------------------------------------------------
2767
sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getDriverMajorVersion(  ) throw(RuntimeException)
2767
sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getDriverMajorVersion(  ) throw(RuntimeException)
2768
{
2768
{
2769
	jint out;
2769
	jint out(0);
2770
	SDBThreadAttach t;
2770
	SDBThreadAttach t;
2771
	if( t.pEnv ){
2771
	if( t.pEnv ){
2772
2772
Lines 2785-2791 Link Here
2785
// -------------------------------------------------------------------------
2785
// -------------------------------------------------------------------------
2786
sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getDefaultTransactionIsolation(  ) throw(SQLException, RuntimeException)
2786
sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getDefaultTransactionIsolation(  ) throw(SQLException, RuntimeException)
2787
{
2787
{
2788
	jint out;
2788
	jint out(0);
2789
	SDBThreadAttach t;
2789
	SDBThreadAttach t;
2790
	if( t.pEnv ){
2790
	if( t.pEnv ){
2791
2791
Lines 2804-2810 Link Here
2804
// -------------------------------------------------------------------------
2804
// -------------------------------------------------------------------------
2805
sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getDriverMinorVersion(  ) throw(RuntimeException)
2805
sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getDriverMinorVersion(  ) throw(RuntimeException)
2806
{
2806
{
2807
	jint out;
2807
	jint out(0);
2808
	SDBThreadAttach t;
2808
	SDBThreadAttach t;
2809
	if( t.pEnv ){
2809
	if( t.pEnv ){
2810
2810
Lines 2961-2967 Link Here
2961
// -------------------------------------------------------------------------
2961
// -------------------------------------------------------------------------
2962
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsExtendedSQLGrammar(  ) throw(SQLException, RuntimeException)
2962
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsExtendedSQLGrammar(  ) throw(SQLException, RuntimeException)
2963
{
2963
{
2964
	jboolean out;
2964
	jboolean out(sal_False);
2965
	SDBThreadAttach t;
2965
	SDBThreadAttach t;
2966
	if( t.pEnv ){
2966
	if( t.pEnv ){
2967
2967
Lines 2980-2986 Link Here
2980
// -------------------------------------------------------------------------
2980
// -------------------------------------------------------------------------
2981
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsCoreSQLGrammar(  ) throw(SQLException, RuntimeException)
2981
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsCoreSQLGrammar(  ) throw(SQLException, RuntimeException)
2982
{
2982
{
2983
	jboolean out;
2983
	jboolean out(sal_False);
2984
	SDBThreadAttach t;
2984
	SDBThreadAttach t;
2985
	if( t.pEnv ){
2985
	if( t.pEnv ){
2986
2986
Lines 2999-3005 Link Here
2999
// -------------------------------------------------------------------------
2999
// -------------------------------------------------------------------------
3000
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsMinimumSQLGrammar(  ) throw(SQLException, RuntimeException)
3000
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsMinimumSQLGrammar(  ) throw(SQLException, RuntimeException)
3001
{
3001
{
3002
	jboolean out;
3002
	jboolean out(sal_False);
3003
	SDBThreadAttach t;
3003
	SDBThreadAttach t;
3004
	if( t.pEnv ){
3004
	if( t.pEnv ){
3005
3005
Lines 3018-3024 Link Here
3018
// -------------------------------------------------------------------------
3018
// -------------------------------------------------------------------------
3019
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsFullOuterJoins(  ) throw(SQLException, RuntimeException)
3019
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsFullOuterJoins(  ) throw(SQLException, RuntimeException)
3020
{
3020
{
3021
	jboolean out;
3021
	jboolean out(sal_False);
3022
	SDBThreadAttach t;
3022
	SDBThreadAttach t;
3023
	if( t.pEnv ){
3023
	if( t.pEnv ){
3024
3024
Lines 3037-3043 Link Here
3037
// -------------------------------------------------------------------------
3037
// -------------------------------------------------------------------------
3038
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsLimitedOuterJoins(  ) throw(SQLException, RuntimeException)
3038
sal_Bool SAL_CALL java_sql_DatabaseMetaData::supportsLimitedOuterJoins(  ) throw(SQLException, RuntimeException)
3039
{
3039
{
3040
	jboolean out;
3040
	jboolean out(sal_False);
3041
	SDBThreadAttach t;
3041
	SDBThreadAttach t;
3042
	if( t.pEnv ){
3042
	if( t.pEnv ){
3043
3043
Lines 3056-3062 Link Here
3056
// -------------------------------------------------------------------------
3056
// -------------------------------------------------------------------------
3057
sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getMaxColumnsInGroupBy(  ) throw(SQLException, RuntimeException)
3057
sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getMaxColumnsInGroupBy(  ) throw(SQLException, RuntimeException)
3058
{
3058
{
3059
	jint out;
3059
	jint out(0);
3060
	SDBThreadAttach t;
3060
	SDBThreadAttach t;
3061
	if( t.pEnv ){
3061
	if( t.pEnv ){
3062
3062
Lines 3075-3081 Link Here
3075
// -------------------------------------------------------------------------
3075
// -------------------------------------------------------------------------
3076
sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getMaxColumnsInOrderBy(  ) throw(SQLException, RuntimeException)
3076
sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getMaxColumnsInOrderBy(  ) throw(SQLException, RuntimeException)
3077
{
3077
{
3078
	jint out;
3078
	jint out(0);
3079
	SDBThreadAttach t;
3079
	SDBThreadAttach t;
3080
	if( t.pEnv ){
3080
	if( t.pEnv ){
3081
3081
Lines 3094-3100 Link Here
3094
// -------------------------------------------------------------------------
3094
// -------------------------------------------------------------------------
3095
sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getMaxColumnsInSelect(  ) throw(SQLException, RuntimeException)
3095
sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getMaxColumnsInSelect(  ) throw(SQLException, RuntimeException)
3096
{
3096
{
3097
	jint out;
3097
	jint out(0);
3098
	SDBThreadAttach t;
3098
	SDBThreadAttach t;
3099
	if( t.pEnv ){
3099
	if( t.pEnv ){
3100
3100
Lines 3113-3119 Link Here
3113
// -------------------------------------------------------------------------
3113
// -------------------------------------------------------------------------
3114
sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getMaxUserNameLength(  ) throw(SQLException, RuntimeException)
3114
sal_Int32 SAL_CALL java_sql_DatabaseMetaData::getMaxUserNameLength(  ) throw(SQLException, RuntimeException)
3115
{
3115
{
3116
	jint out;
3116
	jint out(0);
3117
	SDBThreadAttach t;
3117
	SDBThreadAttach t;
3118
	if( t.pEnv ){
3118
	if( t.pEnv ){
3119
3119
(-)connectivity/source/drivers/jdbc/ResultSet.cxx.conn31464 (-8 / +14 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: ResultSet.cxx,v $
3
 *  $RCSfile: ResultSet.cxx,v $
4
 *
4
 *
5
 *  $Revision: 1.18 $
5
 *  $Revision: 1.18.128.1 $
6
 *
6
 *
7
 *  last change: $Author: rt $ $Date: 2003/04/24 13:21:49 $
7
 *  last change: $Author: hr $ $Date: 2004/07/20 10:52:34 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 290-296 Link Here
290
290
291
sal_Int8 SAL_CALL java_sql_ResultSet::getByte( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
291
sal_Int8 SAL_CALL java_sql_ResultSet::getByte( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
292
{
292
{
293
	jbyte out;
293
	jbyte out(0);
294
	SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!");
294
	SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!");
295
	if( t.pEnv )
295
	if( t.pEnv )
296
	{
296
	{
Lines 360-366 Link Here
360
360
361
double SAL_CALL java_sql_ResultSet::getDouble( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
361
double SAL_CALL java_sql_ResultSet::getDouble( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
362
{
362
{
363
	jdouble out;
363
	jdouble out(0);
364
	SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!");
364
	SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!");
365
	if( t.pEnv )
365
	if( t.pEnv )
366
	{
366
	{
Lines 381-387 Link Here
381
381
382
float SAL_CALL java_sql_ResultSet::getFloat( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
382
float SAL_CALL java_sql_ResultSet::getFloat( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
383
{
383
{
384
	jfloat out;
384
	jfloat out(0);
385
	SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!");
385
	SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!");
386
	if( t.pEnv )
386
	if( t.pEnv )
387
	{
387
	{
Lines 443-449 Link Here
443
443
444
sal_Int64 SAL_CALL java_sql_ResultSet::getLong( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
444
sal_Int64 SAL_CALL java_sql_ResultSet::getLong( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
445
{
445
{
446
	jlong out;
446
	jlong out(0);
447
	SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!");
447
	SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!");
448
	if( t.pEnv ){
448
	if( t.pEnv ){
449
		// temporaere Variable initialisieren
449
		// temporaere Variable initialisieren
Lines 593-599 Link Here
593
593
594
sal_Int16 SAL_CALL java_sql_ResultSet::getShort( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
594
sal_Int16 SAL_CALL java_sql_ResultSet::getShort( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
595
{
595
{
596
	jshort out;
596
	jshort out(0);
597
	SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!");
597
	SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!");
598
	if( t.pEnv ){
598
	if( t.pEnv ){
599
		// temporaere Variable initialisieren
599
		// temporaere Variable initialisieren
Lines 1070-1076 Link Here
1070
		} //mID
1070
		} //mID
1071
	} //t.pEnv
1071
	} //t.pEnv
1072
	// ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!!
1072
	// ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!!
1073
        return out ? makeAny(java_sql_SQLWarning(java_sql_SQLWarning_BASE( t.pEnv, out ),*this)) : ::com::sun::star::uno::Any();
1073
	if( out )
1074
	{
1075
		java_sql_SQLWarning_BASE		warn_base( t.pEnv, out );
1076
		return makeAny(java_sql_SQLWarning(warn_base,*this));
1077
	}
1078
1079
	return ::com::sun::star::uno::Any();
1074
}
1080
}
1075
// -------------------------------------------------------------------------
1081
// -------------------------------------------------------------------------
1076
1082
(-)connectivity/source/drivers/jdbc/SQLException.cxx.conn31464 (-3 / +9 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: SQLException.cxx,v $
3
 *  $RCSfile: SQLException.cxx,v $
4
 *
4
 *
5
 *  $Revision: 1.5 $
5
 *  $Revision: 1.5.128.1 $
6
 *
6
 *
7
 *  last change: $Author: rt $ $Date: 2003/04/24 13:22:09 $
7
 *  last change: $Author: hr $ $Date: 2004/07/20 10:52:34 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 140-146 Link Here
140
		} //mID
140
		} //mID
141
	} //t.pEnv
141
	} //t.pEnv
142
	// ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!!
142
	// ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!!
143
	return out ? (starsdbc::SQLException)java_sql_SQLException(java_sql_SQLException_BASE(t.pEnv,out),0) : starsdbc::SQLException();
143
	if( out )
144
	{
145
		java_sql_SQLException_BASE	warn_base(t.pEnv,out);
146
		return (starsdbc::SQLException)java_sql_SQLException(warn_base,0);
147
	}
148
149
	return starsdbc::SQLException();
144
}
150
}
145
151
146
::rtl::OUString java_sql_SQLException_BASE::getSQLState() const
152
::rtl::OUString java_sql_SQLException_BASE::getSQLState() const
(-)connectivity/source/drivers/jdbc/Statement.cxx.conn31464 (-3 / +9 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: Statement.cxx,v $
3
 *  $RCSfile: Statement.cxx,v $
4
 *
4
 *
5
 *  $Revision: 1.20 $
5
 *  $Revision: 1.20.128.1 $
6
 *
6
 *
7
 *  last change: $Author: rt $ $Date: 2003/04/24 13:22:28 $
7
 *  last change: $Author: hr $ $Date: 2004/07/20 10:52:35 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 550-556 Link Here
550
		} //mID
550
		} //mID
551
	} //t.pEnv
551
	} //t.pEnv
552
	// ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!!
552
	// ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!!
553
	return out ? makeAny(java_sql_SQLWarning(java_sql_SQLWarning_BASE( t.pEnv, out ),*(::cppu::OWeakObject*)this)) : Any();
553
	if( out )
554
	{
555
		java_sql_SQLWarning_BASE		warn_base( t.pEnv, out );
556
		return makeAny(java_sql_SQLWarning(warn_base,*(::cppu::OWeakObject*)this));
557
	}
558
559
	return Any();
554
}
560
}
555
// -------------------------------------------------------------------------
561
// -------------------------------------------------------------------------
556
void SAL_CALL java_sql_Statement_Base::clearWarnings(  ) throw(::com::sun::star::sdbc::SQLException, RuntimeException)
562
void SAL_CALL java_sql_Statement_Base::clearWarnings(  ) throw(::com::sun::star::sdbc::SQLException, RuntimeException)
(-)svx/inc/svdetc.hxx.31534 (-10 / +1 lines)
Lines 194-219 Link Here
194
#endif // __PRIVATE
194
#endif // __PRIVATE
195
public:
195
public:
196
	ContainerSorter(Container& rNewCont): rCont(rNewCont) {}
196
	ContainerSorter(Container& rNewCont): rCont(rNewCont) {}
197
#if SUPD>358
198
	void DoSort(ULONG a=0, ULONG b=0xFFFFFFFF) const;
197
	void DoSort(ULONG a=0, ULONG b=0xFFFFFFFF) const;
199
#else
200
	void DoSort();
201
	void DoSort(ULONG a, ULONG b=0xFFFFFFFF) const;
202
#endif
203
#ifdef This_Is_Just_For_A_Comment
198
#ifdef This_Is_Just_For_A_Comment
204
	Compare() muss returnieren:
199
	Compare() muss returnieren:
205
	  -1 falls *pElem1<*pElem2
200
	  -1 falls *pElem1<*pElem2
206
	   0 falls *pElem1=*pElem2
201
	   0 falls *pElem1=*pElem2
207
	  +1 falls *pElem1>*pElem2
202
	  +1 falls *pElem1>*pElem2
208
#endif
203
#endif
209
	virtual int Compare(const void* pElem1, const void* pElem2) const=NULL;
204
	virtual int Compare(const void* pElem1, const void* pElem2) const=0;
210
private: // damit keiner vergessen wird
205
private: // damit keiner vergessen wird
211
virtual
206
virtual
212
#if SUPD <= 355
213
		FASTBOOL
214
#else
215
		void
207
		void
216
#endif
217
				 Is1stLessThan2nd(const void* pElem1, const void* pElem2) const;
208
				 Is1stLessThan2nd(const void* pElem1, const void* pElem2) const;
218
//  virtual FASTBOOL Is1stLessThan2nd(const void* pElem1, const void* pElem2) const=NULL;
209
//  virtual FASTBOOL Is1stLessThan2nd(const void* pElem1, const void* pElem2) const=NULL;
219
};
210
};
(-)svx/inc/srchdlg.hxx.31534 (-1 / +1 lines)
Lines 297-303 Link Here
297
	SvxSearchController*    pSearchSetController;
297
	SvxSearchController*    pSearchSetController;
298
	SvxSearchController*    pReplaceSetController;
298
	SvxSearchController*    pReplaceSetController;
299
299
300
	INT32			nTransliterationFlags;
300
	mutable INT32			nTransliterationFlags;
301
301
302
#ifdef _SVX_SRCHDLG_CXX
302
#ifdef _SVX_SRCHDLG_CXX
303
	DECL_LINK( ModifyHdl_Impl, ComboBox* pEdit );
303
	DECL_LINK( ModifyHdl_Impl, ComboBox* pEdit );
(-)svx/source/accessibility/AccessibleTextEventQueue.hxx.31534 (-2 / +3 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: AccessibleTextEventQueue.hxx,v $
3
 *  $RCSfile: AccessibleTextEventQueue.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.3 $
5
 *  $Revision: 1.3.480.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2003/06/24 07:39:24 $
7
 *  last change: $Author: hr $ $Date: 2004/07/15 17:03:42 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 64-69 Link Here
64
64
65
#include <memory>
65
#include <memory>
66
#include <list>
66
#include <list>
67
#include <algorithm>
67
68
68
#ifndef _SOLAR_H
69
#ifndef _SOLAR_H
69
#include <tools/solar.h>
70
#include <tools/solar.h>
(-)svx/source/accessibility/ChildrenManagerImpl.cxx.31534 (-6 / +8 lines)
Lines 195-209 Link Here
195
        // created while locking the global mutex.
195
        // created while locking the global mutex.
196
        if ( ! rChildDescriptor.mxAccessibleShape.is())
196
        if ( ! rChildDescriptor.mxAccessibleShape.is())
197
        {
197
        {
198
            AccessibleShapeInfo aShapeInfo(
199
                        rChildDescriptor.mxShape,
200
                        mxParent,
201
                        this,
202
                        mnNewNameIndex++);
198
            // Create accessible object that corresponds to the descriptor's
203
            // Create accessible object that corresponds to the descriptor's
199
            // shape.
204
            // shape.
200
            AccessibleShape* pShape =
205
            AccessibleShape* pShape =
201
                ShapeTypeHandler::Instance().CreateAccessibleObject (
206
                ShapeTypeHandler::Instance().CreateAccessibleObject (
202
                    AccessibleShapeInfo (
207
                    aShapeInfo,
203
                        rChildDescriptor.mxShape,
204
                        mxParent,
205
                        this,
206
                        mnNewNameIndex++),
207
                    maShapeTreeInfo);
208
                    maShapeTreeInfo);
208
            rChildDescriptor.mxAccessibleShape = uno::Reference<XAccessible> (
209
            rChildDescriptor.mxAccessibleShape = uno::Reference<XAccessible> (
209
                static_cast<uno::XWeak*>(pShape),
210
                static_cast<uno::XWeak*>(pShape),
Lines 796-804 Link Here
796
	const AccessibleShapeTreeInfo& _rShapeTreeInfo)
797
	const AccessibleShapeTreeInfo& _rShapeTreeInfo)
797
    throw (uno::RuntimeException)
798
    throw (uno::RuntimeException)
798
{
799
{
800
    AccessibleShapeInfo aShapeInfo( _rxShape, pCurrentChild->getAccessibleParent(), this, _nIndex );
799
	// create the new child
801
	// create the new child
800
	AccessibleShape* pNewChild = ShapeTypeHandler::Instance().CreateAccessibleObject (
802
	AccessibleShape* pNewChild = ShapeTypeHandler::Instance().CreateAccessibleObject (
801
		AccessibleShapeInfo ( _rxShape, pCurrentChild->getAccessibleParent(), this, _nIndex ),
803
        aShapeInfo,
802
		_rShapeTreeInfo
804
		_rShapeTreeInfo
803
	);
805
	);
804
	Reference< XAccessible > xNewChild( pNewChild );	// keep this alive (do this before calling Init!)
806
	Reference< XAccessible > xNewChild( pNewChild );	// keep this alive (do this before calling Init!)
(-)svx/source/accessibility/GraphCtlAccessibleContext.cxx.31534 (-3 / +4 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: GraphCtlAccessibleContext.cxx,v $
3
 *  $RCSfile: GraphCtlAccessibleContext.cxx,v $
4
 *
4
 *
5
 *  $Revision: 1.15 $
5
 *  $Revision: 1.15.480.1 $
6
 *
6
 *
7
 *  last change: $Author: hr $ $Date: 2003/06/26 11:10:07 $
7
 *  last change: $Author: hr $ $Date: 2004/07/15 17:21:16 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 251-259 Link Here
251
			// create a new one and remember in our internal map
251
			// create a new one and remember in our internal map
252
			Reference< XShape > xShape( Reference< XShape >::query( (const_cast<SdrObject*>(pObj))->getUnoShape() ) );
252
			Reference< XShape > xShape( Reference< XShape >::query( (const_cast<SdrObject*>(pObj))->getUnoShape() ) );
253
253
254
            AccessibleShapeInfo aShapeInfo (xShape,mxParent);
254
			// Create accessible object that corresponds to the descriptor's shape.
255
			// Create accessible object that corresponds to the descriptor's shape.
255
			AccessibleShape* pAcc = ShapeTypeHandler::Instance().CreateAccessibleObject(
256
			AccessibleShape* pAcc = ShapeTypeHandler::Instance().CreateAccessibleObject(
256
                AccessibleShapeInfo (xShape,mxParent), maTreeInfo);
257
                aShapeInfo, maTreeInfo);
257
			xAccessibleShape = pAcc;
258
			xAccessibleShape = pAcc;
258
            if (pAcc != NULL)
259
            if (pAcc != NULL)
259
            {
260
            {
(-)svx/source/dialog/srchdlg.cxx.31534 (-5 / +4 lines)
Lines 582-596 Link Here
582
582
583
INT32 SvxSearchDialog::GetTransliterationFlags() const
583
INT32 SvxSearchDialog::GetTransliterationFlags() const
584
{
584
{
585
	INT32 &rFlags = (INT32) nTransliterationFlags;
586
    if (!aMatchCaseCB.IsChecked())
585
    if (!aMatchCaseCB.IsChecked())
587
		rFlags |=  TransliterationModules_IGNORE_CASE;
586
		nTransliterationFlags |=  TransliterationModules_IGNORE_CASE;
588
	else
587
	else
589
		rFlags &= ~TransliterationModules_IGNORE_CASE;
588
		nTransliterationFlags &= ~TransliterationModules_IGNORE_CASE;
590
    if ( !aJapMatchFullHalfWidthCB.IsChecked())
589
    if ( !aJapMatchFullHalfWidthCB.IsChecked())
591
		rFlags |=  TransliterationModules_IGNORE_WIDTH;
590
		nTransliterationFlags |=  TransliterationModules_IGNORE_WIDTH;
592
	else
591
	else
593
		rFlags &= ~TransliterationModules_IGNORE_WIDTH;
592
		nTransliterationFlags &= ~TransliterationModules_IGNORE_WIDTH;
594
	return nTransliterationFlags;
593
	return nTransliterationFlags;
595
}
594
}
596
595
(-)svx/inc/ShapeTypeHandler.hxx.gcc341_31534 (-3 / +4 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: ShapeTypeHandler.hxx,v $
3
 *  $RCSfile: ShapeTypeHandler.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.11 $
5
 *  $Revision: 1.11.576.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2003/04/24 16:50:54 $
7
 *  last change: $Author: hr $ $Date: 2004/07/15 17:00:30 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 205-211 Link Here
205
            ::com::sun::star::accessibility::XAccessible>& rxParent,
205
            ::com::sun::star::accessibility::XAccessible>& rxParent,
206
            const AccessibleShapeTreeInfo& rShapeTreeInfo) const
206
            const AccessibleShapeTreeInfo& rShapeTreeInfo) const
207
    {
207
    {
208
        return CreateAccessibleObject (AccessibleShapeInfo (rxShape,rxParent),rShapeTreeInfo);
208
        AccessibleShapeInfo aShapeInfo(rxShape, rxParent);
209
        return CreateAccessibleObject (aShapeInfo, rShapeTreeInfo);
209
    }
210
    }
210
211
211
    /**  Add new shape types to the internal tables.  Each new shape type is
212
    /**  Add new shape types to the internal tables.  Each new shape type is
(-)sc/source/ui/inc/AccessibleText.hxx.31580 (-7 / +7 lines)
Lines 97-114 Link Here
97
						ScAccessibleTextData() {}
97
						ScAccessibleTextData() {}
98
	virtual				~ScAccessibleTextData() {}
98
	virtual				~ScAccessibleTextData() {}
99
99
100
	virtual	ScAccessibleTextData* Clone() const = NULL;
100
	virtual	ScAccessibleTextData* Clone() const = 0;
101
101
102
	virtual void		Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) {}
102
	virtual void		Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) {}
103
103
104
	virtual SvxTextForwarder* GetTextForwarder() = NULL;
104
	virtual SvxTextForwarder* GetTextForwarder() = 0;
105
	virtual SvxViewForwarder* GetViewForwarder() = NULL;
105
	virtual SvxViewForwarder* GetViewForwarder() = 0;
106
	virtual SvxEditViewForwarder* GetEditViewForwarder( sal_Bool bCreate ) = NULL;
106
	virtual SvxEditViewForwarder* GetEditViewForwarder( sal_Bool bCreate ) = 0;
107
	virtual SfxBroadcaster& GetBroadcaster() const { return maBroadcaster; }
107
	virtual SfxBroadcaster& GetBroadcaster() const { return maBroadcaster; }
108
108
109
    virtual void				UpdateData() = NULL;
109
    virtual void				UpdateData() = 0;
110
	virtual void				SetDoUpdate(sal_Bool bValue) = NULL;
110
	virtual void				SetDoUpdate(sal_Bool bValue) = 0;
111
	virtual sal_Bool			IsDirty() const = NULL;
111
	virtual sal_Bool			IsDirty() const = 0;
112
112
113
private:
113
private:
114
	mutable SfxBroadcaster maBroadcaster;
114
	mutable SfxBroadcaster maBroadcaster;
(-)sc/inc/chgtrack.hxx.31601 (-8 lines)
Lines 714-724 Link Here
714
class ScChangeActionMove : public ScChangeAction
714
class ScChangeActionMove : public ScChangeAction
715
{
715
{
716
	friend class ScChangeTrack;
716
	friend class ScChangeTrack;
717
#ifdef IRIX
718
	friend class ScChangeActionDel;
717
	friend class ScChangeActionDel;
719
#else
720
	friend void ScChangeActionDel::UndoCutOffMoves();
721
#endif
722
718
723
			ScBigRange			aFromRange;
719
			ScBigRange			aFromRange;
724
			ScChangeTrack*		pTrack;
720
			ScChangeTrack*		pTrack;
Lines 1013-1023 Link Here
1013
class ScChangeActionReject : public ScChangeAction
1009
class ScChangeActionReject : public ScChangeAction
1014
{
1010
{
1015
	friend class ScChangeTrack;
1011
	friend class ScChangeTrack;
1016
#ifdef IRIX
1017
	friend class ScChangeActionContent;
1012
	friend class ScChangeActionContent;
1018
#else
1019
	friend BOOL ScChangeActionContent::Select( ScDocument*, ScChangeTrack*, BOOL, Stack* );
1020
#endif
1021
1013
1022
								ScChangeActionReject( ULONG nReject )
1014
								ScChangeActionReject( ULONG nReject )
1023
									: ScChangeAction( SC_CAT_REJECT, ScRange() )
1015
									: ScChangeAction( SC_CAT_REJECT, ScRange() )
(-)testshl2/source/result/TestResult.cpp.31725 (-2 / +4 lines)
Lines 42-48 Link Here
42
TestResult::addError( Test *test, 
42
TestResult::addError( Test *test, 
43
                      Exception *e, ErrorType::num _eType )
43
                      Exception *e, ErrorType::num _eType )
44
{ 
44
{ 
45
  addFailure( TestFailure( test, e, _eType ) );
45
  TestFailure aTestFailure( test, e, _eType );
46
  addFailure( aTestFailure );
46
}
47
}
47
48
48
49
Lines 52-58 Link Here
52
void 
53
void 
53
TestResult::addFailure( Test *test, Exception *e )
54
TestResult::addFailure( Test *test, Exception *e )
54
{ 
55
{ 
55
  addFailure( TestFailure( test, e, ErrorType::FAILURE ) );
56
  TestFailure aTestFailure( test, e, ErrorType::FAILURE );
57
  addFailure( aTestFailure );
56
}
58
}
57
59
58
60
(-)testshl2/inc/cppunit/autoregister/callbackstructure.h.orig (-1 / +1 lines)
Lines 99-105 Link Here
99
99
100
    CallbackStructure()
100
    CallbackStructure()
101
            :nVersion(1),
101
            :nVersion(1),
102
             nMagic(0x0123456789abcdef),
102
             nMagic(SAL_CONST_INT64(0x0123456789abcdef)),
103
             aRegisterFunction(NULL),
103
             aRegisterFunction(NULL),
104
             aCallbackDispatch(NULL),
104
             aCallbackDispatch(NULL),
105
             /* aStartTest(NULL),
105
             /* aStartTest(NULL),
(-)autodoc/source/ary/inc/store/st_iterator.hxx.gcc341autodoc (-4 / +8 lines)
Lines 244-250 Link Here
244
244
245
245
246
    const unit_type &   operator*() const       /// @precond bool(*this);
246
    const unit_type &   operator*() const       /// @precond bool(*this);
247
                                                { return CurUnit(); }
247
                                                { return RootConstIterator<UNIT>::CurUnit(); }
248
};
248
};
249
249
250
250
Lines 271-277 Link Here
271
                            { }
271
                            { }
272
272
273
    unit_type &         operator*() const       /// @precond bool(*this);
273
    unit_type &         operator*() const       /// @precond bool(*this);
274
                                                { return CurUnit(); }
274
                                                { return RootIterator<UNIT>::CurUnit(); }
275
};
275
};
276
276
277
277
Lines 279-284 Link Here
279
class RootFilterConstIterator : public internal::IteratorBase< UNIT, FILTER >
279
class RootFilterConstIterator : public internal::IteratorBase< UNIT, FILTER >
280
{
280
{
281
  public:
281
  public:
282
    typedef UNIT                            unit_type;
282
    typedef RootFilterConstIterator<UNIT,FILTER>    self;
283
    typedef RootFilterConstIterator<UNIT,FILTER>    self;
283
284
284
                        RootFilterConstIterator(
285
                        RootFilterConstIterator(
Lines 290-296 Link Here
290
                                    i_rOther.CurPosition() ) {}
291
                                    i_rOther.CurPosition() ) {}
291
292
292
    const unit_type &   operator*() const       /// @precond bool(*this);
293
    const unit_type &   operator*() const       /// @precond bool(*this);
293
                                                { return CurUnit(); }
294
                            { return RootFilterConstIterator<UNIT,FILTER>::CurUnit(); }
294
    self &              operator=(
295
    self &              operator=(
295
                            const RootConstIterator<UNIT> &
296
                            const RootConstIterator<UNIT> &
296
                                                i_rOther )
297
                                                i_rOther )
Lines 307-312 Link Here
307
class RootFilterIterator : public internal::IteratorBase< UNIT, FILTER >
308
class RootFilterIterator : public internal::IteratorBase< UNIT, FILTER >
308
{
309
{
309
  public:
310
  public:
311
    typedef UNIT                              unit_type;
312
    typedef RootFilterIterator<UNIT,FILTER>   self;
313
310
                        RootFilterIterator(
314
                        RootFilterIterator(
311
                            const RootIterator<UNIT> &
315
                            const RootIterator<UNIT> &
312
                                                i_rOther )
316
                                                i_rOther )
Lines 317-323 Link Here
317
321
318
322
319
    unit_type &         operator*() const       /// @precond bool(*this);
323
    unit_type &         operator*() const       /// @precond bool(*this);
320
                                                { return CurUnit(); }
324
                            { return RootFilterIterator<UNIT,FILTER>::CurUnit(); }
321
    self &              operator=(
325
    self &              operator=(
322
                            const RootIterator<UNIT> &
326
                            const RootIterator<UNIT> &
323
                                                i_rOther )
327
                                                i_rOther )
(-)autodoc/source/ary/inc/nametreenode.hxx.gcc341autodoc (-1 / +1 lines)
Lines 187-193 Link Here
187
NameTreeNode<ITEM_ID>::Add_Name( const String &      i_sName,
187
NameTreeNode<ITEM_ID>::Add_Name( const String &      i_sName,
188
                                 item_id             i_nId )
188
                                 item_id             i_nId )
189
{
189
{
190
    LocalNames().insert( Map_LocalNames::value_type(i_sName, i_nId) );
190
    LocalNames().insert( typename Map_LocalNames::value_type(i_sName, i_nId) );
191
}
191
}
192
192
193
193
(-)autodoc/source/ary/store/t_storg.hxx.gcc341autodoc (-2 / +2 lines)
Lines 131-138 Link Here
131
StdReStorage<RE>::do_Add( const KEY &         i_rKey,
131
StdReStorage<RE>::do_Add( const KEY &         i_rKey,
132
						  DYN RE &            let_drElement )
132
						  DYN RE &            let_drElement )
133
{
133
{
134
	std::pair<DataBase::iterator, bool> result
134
	std::pair<typename DataBase::iterator, bool> result;
135
			= aDataBase.insert(DataBase::value_type(i_rKey, &let_drElement));
135
	result = aDataBase.insert(typename DataBase::value_type(i_rKey, &let_drElement));
136
	if (result.second == false)
136
	if (result.second == false)
137
		delete &let_drElement;
137
		delete &let_drElement;
138
	return *(*result.first).second;
138
	return *(*result.first).second;
(-)autodoc/source/ary/store/ti_storg.hxx.gcc341autodoc (-1 / +1 lines)
Lines 124-130 Link Here
124
template <class RE>
124
template <class RE>
125
inline const RE &
125
inline const RE &
126
ReStorage<RE>::operator[]( const KEY & i_rKey ) const
126
ReStorage<RE>::operator[]( const KEY & i_rKey ) const
127
    { const RE * ret = inq_Find(i_rKey);
127
    { const RE * ret = ReStorage<RE>::inq_Find(i_rKey);
128
      csv_assert(ret != 0);
128
      csv_assert(ret != 0);
129
      return *ret;
129
      return *ret;
130
    }
130
    }
(-)autodoc/source/inc/estack.hxx.gcc341autodoc (-2 / +2 lines)
Lines 98-108 Link Here
98
    bool                operator==(
98
    bool                operator==(
99
                            const EStack<ELEM> &
99
                            const EStack<ELEM> &
100
                                                i_r2 ) const
100
                                                i_r2 ) const
101
                                                { return std::operator==( Base(), i_rStack.Base() ); }
101
                                                { return std::operator==( Base(), EStack<ELEM>::i_rStack.Base() ); }
102
    bool                operator<(
102
    bool                operator<(
103
                            const EStack<ELEM> &
103
                            const EStack<ELEM> &
104
                                                i_r2 ) const
104
                                                i_r2 ) const
105
                                                { return std::operator<( Base(), i_rStack.Base() ); }
105
                                                { return std::operator<( Base(), EStack<ELEM>::i_rStack.Base() ); }
106
    // OPERATIONS
106
    // OPERATIONS
107
    void                push(
107
    void                push(
108
                            const value_type &  i_rElem )
108
                            const value_type &  i_rElem )
(-)basic/inc/sbdef.hxx.31479 (-1 / +2 lines)
Lines 77-83 Link Here
77
	SB_STRING,						// Strings
77
	SB_STRING,						// Strings
78
	SB_NUMBER,						// Zahlen
78
	SB_NUMBER,						// Zahlen
79
	SB_PUNCTUATION,					// Klammern, Punkte etc
79
	SB_PUNCTUATION,					// Klammern, Punkte etc
80
	SB_COMMENT						// Kommentare
80
	SB_COMMENT,						// Kommentare
81
	SB_DUMMY = 255
81
};
82
};
82
83
83
enum SbLanguageMode {				// Aktive Sprache
84
enum SbLanguageMode {				// Aktive Sprache
(-)bridges/source/remote/urp/urp_cache.hxx.gcc341bridges (+1 lines)
Lines 60-65 Link Here
60
 ************************************************************************/
60
 ************************************************************************/
61
#include <stdio.h>
61
#include <stdio.h>
62
#include <list>
62
#include <list>
63
#include <algorithm>
63
64
64
#ifndef _RTL_USTRING_HXX_
65
#ifndef _RTL_USTRING_HXX_
65
#include <rtl/ustring.hxx>
66
#include <rtl/ustring.hxx>
(-)comphelper/inc/comphelper/guarding.hxx.gcc341comphelper (-7 / +7 lines)
Lines 115-132 Link Here
115
115
116
	const OReusableGuard& operator= (const OReusableGuard& _rMaster)
116
	const OReusableGuard& operator= (const OReusableGuard& _rMaster)
117
	{
117
	{
118
		clear();
118
		this->clear();
119
		pT = _rMaster.pT;
119
		this->pT = _rMaster.pT;
120
		if (pT)
120
		if (this->pT)
121
			pT->acquire();
121
			this->pT->acquire();
122
		return *this;
122
		return *this;
123
	}
123
	}
124
124
125
	void attach(T& rMutex)
125
	void attach(T& rMutex)
126
	{
126
	{
127
		clear();
127
		this->clear();
128
		pT = &rMutex;
128
		this->pT = &rMutex;
129
		pT->acquire();
129
		this->pT->acquire();
130
	}
130
	}
131
};
131
};
132
132
(-)comphelper/inc/comphelper/sequence.hxx.gcc341comphelper (+2 lines)
Lines 62-67 Link Here
62
#ifndef _COMPHELPER_SEQUENCE_HXX_
62
#ifndef _COMPHELPER_SEQUENCE_HXX_
63
#define _COMPHELPER_SEQUENCE_HXX_
63
#define _COMPHELPER_SEQUENCE_HXX_
64
64
65
#include <algorithm>
66
65
#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_
67
#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_
66
#include <com/sun/star/uno/Sequence.hxx>
68
#include <com/sun/star/uno/Sequence.hxx>
67
#endif
69
#endif
(-)configmgr/source/api2/apinodeaccess.hxx.gcc341configmgr (+4 lines)
Lines 66-71 Link Here
66
#include "utility.hxx"
66
#include "utility.hxx"
67
#endif
67
#endif
68
68
69
#ifndef CONFIGMGR_ACCESSOR_HXX
70
#include <accessor.hxx>
71
#endif
72
69
namespace osl { class Mutex; }
73
namespace osl { class Mutex; }
70
74
71
namespace configmgr
75
namespace configmgr
(-)configmgr/source/api2/listenercontainer.hxx.gcc341configmgr (-1 / +1 lines)
Lines 380-386 Link Here
380
			bool bAlive = !m_aSpecialHelper.bInDispose;
380
			bool bAlive = !m_aSpecialHelper.bInDispose;
381
			if (m_aSpecialHelper.bDisposed)
381
			if (m_aSpecialHelper.bDisposed)
382
			{
382
			{
383
				throw lang::DisposedException(OUString(RTL_CONSTASCII_USTRINGPARAM("The object has already been disposed")),pObject);
383
				throw lang::DisposedException(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("The object has already been disposed")),pObject);
384
			}
384
			}
385
			return bAlive;
385
			return bAlive;
386
		}
386
		}
(-)configmgr/source/inc/treeaccessor.hxx.gcc341configmgr (-1 / +1 lines)
Lines 160-166 Link Here
160
        { 
160
        { 
161
            sharable::Address aAddr = p.addressValue();
161
            sharable::Address aAddr = p.addressValue();
162
162
163
            if (aAddr) aAddr += offsetof(DataType,nodes);
163
            if (aAddr) aAddr += offsetof(TreeAddress::DataType,nodes);
164
164
165
            return NodeAddress( memory::Pointer(aAddr) ); 
165
            return NodeAddress( memory::Pointer(aAddr) ); 
166
        }
166
        }
(-)sw/source/core/doc/docnum.cxx.31595 (-1 / +2 lines)
Lines 1946-1952 Link Here
1946
1946
1947
	if( !pOwnRedl && !IsIgnoreRedline() && GetRedlineTbl().Count() )
1947
	if( !pOwnRedl && !IsIgnoreRedline() && GetRedlineTbl().Count() )
1948
	{
1948
	{
1949
		SplitRedline( SwPaM( aIdx ));
1949
		SwPaM aTemp(aIdx);
1950
		SplitRedline(aTemp);
1950
	}
1951
	}
1951
1952
1952
	ULONG nRedlSttNd, nRedlEndNd;
1953
	ULONG nRedlSttNd, nRedlEndNd;
(-)sw/source/core/doc/docredln.cxx.31595 (-2 / +2 lines)
Lines 1315-1322 Link Here
1315
BOOL SwDoc::DeleteRedline( const SwStartNode& rNode, BOOL bSaveInUndo,
1315
BOOL SwDoc::DeleteRedline( const SwStartNode& rNode, BOOL bSaveInUndo,
1316
							USHORT nDelType )
1316
							USHORT nDelType )
1317
{
1317
{
1318
	return DeleteRedline( SwPaM( *rNode.EndOfSectionNode(), rNode ),
1318
	SwPaM aTemp(*rNode.EndOfSectionNode(), rNode);
1319
							bSaveInUndo, nDelType );
1319
	return DeleteRedline(aTemp, bSaveInUndo, nDelType);
1320
}
1320
}
1321
1321
1322
void SwDoc::DeleteRedline( USHORT nPos )
1322
void SwDoc::DeleteRedline( USHORT nPos )
(-)sw/source/core/doc/swtable.cxx.31595 (-6 / +6 lines)
Lines 1691-1708 Link Here
1691
1691
1692
            if( !pDoc->IsIgnoreRedline() && pDoc->GetRedlineTbl().Count() )
1692
            if( !pDoc->IsIgnoreRedline() && pDoc->GetRedlineTbl().Count() )
1693
            {
1693
            {
1694
                pDoc->DeleteRedline( SwPaM( *pTNd, 0, *pTNd, rOrig.Len() ), 
1694
                 SwPaM aTemp(*pTNd, 0, *pTNd, rOrig.Len());
1695
                                     sal_True );
1695
                 pDoc->DeleteRedline(aTemp, sal_True);
1696
            }
1696
            }
1697
1697
1698
			pTNd->Erase( aIdx, n, INS_EMPTYEXPAND );
1698
			pTNd->Erase( aIdx, n, INS_EMPTYEXPAND );
1699
			pTNd->Insert( rTxt, aIdx, INS_EMPTYEXPAND );
1699
			pTNd->Insert( rTxt, aIdx, INS_EMPTYEXPAND );
1700
1700
1701
            if( pDoc->IsRedlineOn() )
1701
            if( pDoc->IsRedlineOn() )
1702
            {
1702
            {	
1703
                pDoc->AppendRedline( 
1703
		SwPaM aTemp(*pTNd, 0, *pTNd, rTxt.Len());
1704
                    new SwRedline( REDLINE_INSERT, 
1704
                pDoc->AppendRedline(new SwRedline(REDLINE_INSERT, aTemp));
1705
                                   SwPaM( *pTNd, 0, *pTNd, rTxt.Len() ) ) );
1705
                                   
1706
            }
1706
            }
1707
		}
1707
		}
1708
1708
(-)sw/source/core/frmedt/fecopy.cxx.31595 (-2 / +3 lines)
Lines 391-398 Link Here
391
    			SdrObject* pNew = pClpDoc->CloneSdrObj( *pObj, FALSE, TRUE );
391
    			SdrObject* pNew = pClpDoc->CloneSdrObj( *pObj, FALSE, TRUE );
392
392
393
//JP 07.01.00: why move??
393
//JP 07.01.00: why move??
394
//				pNew->NbcMove( aSiz );
394
//				pNew->NbcMove(aSiz);
395
   				pClpDoc->Insert( SwPaM( aPos ), *pNew, &aSet );
395
   				SwPaM aTemp(aPos);
396
   				pClpDoc->Insert(aTemp, *pNew, &aSet);
396
			}
397
			}
397
			else
398
			else
398
			{
399
			{
(-)sw/source/core/undo/rolbck.cxx.31595 (-1 / +2 lines)
Lines 516-522 Link Here
516
	if ( pUndo )
516
	if ( pUndo )
517
	{
517
	{
518
		// setze die Fussnote im TextNode
518
		// setze die Fussnote im TextNode
519
		SwFmtFtn& rNew = (SwFmtFtn&)pDoc->GetAttrPool().Put( SwFmtFtn( bEndNote ) );
519
		SwFmtFtn aTemp( bEndNote );
520
		SwFmtFtn& rNew = (SwFmtFtn&)pDoc->GetAttrPool().Put(aTemp);
520
		if( aFtnStr.Len() )
521
		if( aFtnStr.Len() )
521
			rNew.SetNumStr( aFtnStr );
522
			rNew.SetNumStr( aFtnStr );
522
		SwTxtFtn* pTxtFtn = new SwTxtFtn( rNew, nStart );
523
		SwTxtFtn* pTxtFtn = new SwTxtFtn( rNew, nStart );
(-)cppuhelper/inc/cppuhelper/implbase.hxx.31532 (-9 / +9 lines)
Lines 259-269 Link Here
259
	static ClassData##N s_aCD; \
259
	static ClassData##N s_aCD; \
260
public: \
260
public: \
261
	virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw (::com::sun::star::uno::RuntimeException) \
261
	virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw (::com::sun::star::uno::RuntimeException) \
262
		{ return getClassData( s_aCD ).query( rType, (ImplHelperBase##N< __IFC##N > *)this ); } \
262
		{ return this->getClassData( s_aCD ).query( rType, (ImplHelperBase##N< __IFC##N > *)this ); } \
263
	virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException) \
263
	virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException) \
264
		{ return getClassData( s_aCD ).getTypes(); } \
264
		{ return this->getClassData( s_aCD ).getTypes(); } \
265
	virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException) \
265
	virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException) \
266
		{ return getClassData( s_aCD ).getImplementationId(); } \
266
		{ return this->getClassData( s_aCD ).getImplementationId(); } \
267
}; \
267
}; \
268
template< __CLASS_IFC##N > \
268
template< __CLASS_IFC##N > \
269
class SAL_NO_VTABLE WeakImplHelper##N \
269
class SAL_NO_VTABLE WeakImplHelper##N \
Lines 274-280 Link Here
274
public: \
274
public: \
275
	virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw (::com::sun::star::uno::RuntimeException) \
275
	virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw (::com::sun::star::uno::RuntimeException) \
276
	{ \
276
	{ \
277
		::com::sun::star::uno::Any aRet( getClassData( s_aCD ).query( rType, (ImplHelperBase##N< __IFC##N > *)this ) ); \
277
		::com::sun::star::uno::Any aRet( this->getClassData( s_aCD ).query( rType, (ImplHelperBase##N< __IFC##N > *)this ) ); \
278
		return (aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType )); \
278
		return (aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType )); \
279
	} \
279
	} \
280
	virtual void SAL_CALL acquire() throw () \
280
	virtual void SAL_CALL acquire() throw () \
Lines 282-290 Link Here
282
	virtual void SAL_CALL release() throw () \
282
	virtual void SAL_CALL release() throw () \
283
		{ OWeakObject::release(); } \
283
		{ OWeakObject::release(); } \
284
	virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException) \
284
	virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException) \
285
		{ return getClassData( s_aCD ).getTypes(); } \
285
		{ return this->getClassData( s_aCD ).getTypes(); } \
286
	virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException) \
286
	virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException) \
287
		{ return getClassData( s_aCD ).getImplementationId(); } \
287
		{ return this->getClassData( s_aCD ).getImplementationId(); } \
288
}; \
288
}; \
289
template< __CLASS_IFC##N > \
289
template< __CLASS_IFC##N > \
290
class SAL_NO_VTABLE WeakAggImplHelper##N \
290
class SAL_NO_VTABLE WeakAggImplHelper##N \
Lines 297-303 Link Here
297
		{ return OWeakAggObject::queryInterface( rType ); } \
297
		{ return OWeakAggObject::queryInterface( rType ); } \
298
	virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( const ::com::sun::star::uno::Type & rType ) throw (::com::sun::star::uno::RuntimeException) \
298
	virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( const ::com::sun::star::uno::Type & rType ) throw (::com::sun::star::uno::RuntimeException) \
299
	{ \
299
	{ \
300
		::com::sun::star::uno::Any aRet( getClassData( s_aCD ).query( rType, (ImplHelperBase##N< __IFC##N > *)this ) ); \
300
		::com::sun::star::uno::Any aRet( this->getClassData( s_aCD ).query( rType, (ImplHelperBase##N< __IFC##N > *)this ) ); \
301
		return (aRet.hasValue() ? aRet : OWeakAggObject::queryAggregation( rType )); \
301
		return (aRet.hasValue() ? aRet : OWeakAggObject::queryAggregation( rType )); \
302
	} \
302
	} \
303
	virtual void SAL_CALL acquire() throw () \
303
	virtual void SAL_CALL acquire() throw () \
Lines 305-313 Link Here
305
	virtual void SAL_CALL release() throw () \
305
	virtual void SAL_CALL release() throw () \
306
		{ OWeakAggObject::release(); } \
306
		{ OWeakAggObject::release(); } \
307
	virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException) \
307
	virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException) \
308
		{ return getClassData( s_aCD ).getTypes(); } \
308
		{ return this->getClassData( s_aCD ).getTypes(); } \
309
	virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException) \
309
	virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException) \
310
		{ return getClassData( s_aCD ).getImplementationId(); } \
310
		{ return this->getClassData( s_aCD ).getImplementationId(); } \
311
};
311
};
312
312
313
/** Implementation helper macro: have a look at __DEF_IMPLHELPER_PRE
313
/** Implementation helper macro: have a look at __DEF_IMPLHELPER_PRE
(-)desktop/source/app/app.cxx.31469 (-1 / +4 lines)
Lines 478-484 Link Here
478
    {
478
    {
479
        ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
479
        ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
480
        if ( !pArgs )
480
        if ( !pArgs )
481
            pArgs = new CommandLineArgs( ::vos::OExtCommandLine() );
481
	{
482
            ::vos::OExtCommandLine aArgs;
483
            pArgs = new CommandLineArgs( aArgs );
484
	}
482
    }
485
    }
483
486
484
    return pArgs;
487
    return pArgs;
(-)extensions/source/plugin/inc/plugin/plctrl.hxx.31592 (-2 / +2 lines)
Lines 173-181 Link Here
173
    virtual Reference< XInterface > SAL_CALL getContext() throw( RuntimeException )
173
    virtual Reference< XInterface > SAL_CALL getContext() throw( RuntimeException )
174
	{ return _xContext; }
174
	{ return _xContext; }
175
	
175
	
176
    virtual sal_Bool SAL_CALL setModel( const Reference< ::com::sun::star::awt::XControlModel > & Model ) throw( RuntimeException ) = NULL;
176
    virtual sal_Bool SAL_CALL setModel( const Reference< ::com::sun::star::awt::XControlModel > & Model ) throw( RuntimeException ) = 0;
177
//	{ DBG_ERROR( "### setModel() illegal on plugincontrol!" ); return sal_False; }
177
//	{ DBG_ERROR( "### setModel() illegal on plugincontrol!" ); return sal_False; }
178
    virtual Reference< ::com::sun::star::awt::XControlModel > SAL_CALL getModel() throw( RuntimeException ) = NULL;
178
    virtual Reference< ::com::sun::star::awt::XControlModel > SAL_CALL getModel() throw( RuntimeException ) = 0;
179
179
180
    virtual Reference< ::com::sun::star::awt::XView > SAL_CALL getView() throw( RuntimeException )
180
    virtual Reference< ::com::sun::star::awt::XView > SAL_CALL getView() throw( RuntimeException )
181
	{ return (::com::sun::star::awt::XView*)this; }
181
	{ return (::com::sun::star::awt::XView*)this; }
(-)forms/source/component/GroupManager.hxx.31537 (-2 / +2 lines)
Lines 128-134 Link Here
128
	template <class ELEMENT, class LESS_COMPARE>
128
	template <class ELEMENT, class LESS_COMPARE>
129
	sal_Int32 insert_sorted(::std::vector<ELEMENT>& _rArray, const ELEMENT& _rNewElement, const LESS_COMPARE& _rCompareOp)
129
	sal_Int32 insert_sorted(::std::vector<ELEMENT>& _rArray, const ELEMENT& _rNewElement, const LESS_COMPARE& _rCompareOp)
130
	{
130
	{
131
		::std::vector<ELEMENT>::iterator aInsertPos = lower_bound(
131
		typename ::std::vector<ELEMENT>::iterator aInsertPos = lower_bound(
132
			_rArray.begin(),
132
			_rArray.begin(),
133
			_rArray.end(),
133
			_rArray.end(),
134
			_rNewElement,
134
			_rNewElement,
Lines 141-147 Link Here
141
	template <class ELEMENT, class LESS_COMPARE>
141
	template <class ELEMENT, class LESS_COMPARE>
142
	sal_Bool seek_entry(const ::std::vector<ELEMENT>& _rArray, const ELEMENT& _rNewElement, sal_Int32& nPos, const LESS_COMPARE& _rCompareOp)
142
	sal_Bool seek_entry(const ::std::vector<ELEMENT>& _rArray, const ELEMENT& _rNewElement, sal_Int32& nPos, const LESS_COMPARE& _rCompareOp)
143
	{
143
	{
144
		::std::vector<ELEMENT>::const_iterator aExistentPos = ::std::lower_bound(
144
		typename ::std::vector<ELEMENT>::const_iterator aExistentPos = lower_bound(
145
			_rArray.begin(),
145
			_rArray.begin(),
146
			_rArray.end(),
146
			_rArray.end(),
147
			_rNewElement,
147
			_rNewElement,
(-)toolkit/inc/toolkit/controls/geometrycontrolmodel_impl.hxx.gcc341 (-3 / +6 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: geometrycontrolmodel_impl.hxx,v $
3
 *  $RCSfile: geometrycontrolmodel_impl.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.3 $
5
 *  $Revision: 1.3.268.1 $
6
 *
6
 *
7
 *  last change: $Author: fs $ $Date: 2001/09/05 06:40:48 $
7
 *  last change: $Author: hr $ $Date: 2004/07/13 16:56:04 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 82-88 Link Here
82
template <class CONTROLMODEL>
82
template <class CONTROLMODEL>
83
::cppu::IPropertyArrayHelper& SAL_CALL OGeometryControlModel<CONTROLMODEL>::getInfoHelper()
83
::cppu::IPropertyArrayHelper& SAL_CALL OGeometryControlModel<CONTROLMODEL>::getInfoHelper()
84
{
84
{
85
	return *getArrayHelper();
85
	return *this->getArrayHelper();
86
}
86
}
87
87
88
//--------------------------------------------------------------------
88
//--------------------------------------------------------------------
Lines 125-130 Link Here
125
/*************************************************************************
125
/*************************************************************************
126
 * history:
126
 * history:
127
 *	$Log: geometrycontrolmodel_impl.hxx,v $
127
 *	$Log: geometrycontrolmodel_impl.hxx,v $
128
 *	Revision 1.3.268.1  2004/07/13 16:56:04  hr
129
 *	#i31439#: fix template resolution
130
 *	
128
 *	Revision 1.3  2001/09/05 06:40:48  fs
131
 *	Revision 1.3  2001/09/05 06:40:48  fs
129
 *	#88891# override the XTypeProvider methods
132
 *	#88891# override the XTypeProvider methods
130
 *	
133
 *	
(-)icu/icu-2.2.patch.orig (-20 / +14 lines)
Lines 17-32 Link Here
17
   echo "$ac_t"""C compiler set to CCC ${CC}" " 1>&6
17
   echo "$ac_t"""C compiler set to CCC ${CC}" " 1>&6
18
   case "${host}" in
18
   case "${host}" in
19
          alpha*-*-*) U_HAVE_INTTYPES_H=0;
19
          alpha*-*-*) U_HAVE_INTTYPES_H=0;
20
***************
21
*** 2964,2969 ****
22
--- 2964,2970 ----
23
  #ifndef __USE_POSIX
24
  #define __USE_POSIX
25
  #endif
26
+ #include <stdlib.h>
27
  #include <time.h>
28
  #ifndef tzname /* For SGI.  */
29
  extern char *tzname[]; /* RS6000 and others reject char **tzname.  */
30
*** misc/icu/source/configure.in	Fri Aug  9 19:20:56 2002
20
*** misc/icu/source/configure.in	Fri Aug  9 19:20:56 2002
31
--- misc/build/icu/source/configure.in	Tue Jul 22 10:11:48 2003
21
--- misc/build/icu/source/configure.in	Tue Jul 22 10:11:48 2003
32
***************
22
***************
Lines 46-61 Link Here
46
   AC_MSG_RESULT("C compiler set to CCC ${CC}" )
36
   AC_MSG_RESULT("C compiler set to CCC ${CC}" )
47
   case "${host}" in
37
   case "${host}" in
48
          alpha*-*-*) U_HAVE_INTTYPES_H=0;
38
          alpha*-*-*) U_HAVE_INTTYPES_H=0;
49
***************
50
*** 448,453 ****
51
--- 448,454 ----
52
  <<#ifndef __USE_POSIX
53
  #define __USE_POSIX
54
  #endif
55
+ #include <stdlib.h>
56
  #include <time.h>
57
  #ifndef tzname /* For SGI.  */
58
  extern char *tzname[]; /* RS6000 and others reject char **tzname.  */
59
*** misc/icu/source/icudefs.mk.in	Wed Jul 31 22:28:32 2002
39
*** misc/icu/source/icudefs.mk.in	Wed Jul 31 22:28:32 2002
60
--- misc/build/icu/source/icudefs.mk.in	Tue Jul 22 10:11:49 2003
40
--- misc/build/icu/source/icudefs.mk.in	Tue Jul 22 10:11:49 2003
61
***************
41
***************
Lines 130-135 Link Here
130
  
110
  
131
      /**
111
      /**
132
       * Create BreakIterator for line-breaks using specified locale.
112
       * Create BreakIterator for line-breaks using specified locale.
113
*** misc/icu/source/common/unicode/locid.h	2004-05-05 17:24:14.299356195 -0400
114
--- misc/build/icu/source/common/unicode/locid.h	2002-08-01 19:21:36.000000000 -0400
115
***************
116
*** 728,734 ****
117
--- 728,736 ----
118
  #ifdef ICU_LOCID_USE_DEPRECATES
119
      static Locale fgDefaultLocale;
120
  #else
121
+ # if (__GNUC_MINOR__ < 4)  && (__GNUC__ <= 3)
122
      friend struct LocaleProxy;
123
+ # endif
124
  #endif
125
  
126
      static const Locale &getLocale(int locid);
133
*** misc/icu/source/config/mh-darwin	Wed May 29 18:45:06 2002
127
*** misc/icu/source/config/mh-darwin	Wed May 29 18:45:06 2002
134
--- misc/build/icu/source/config/mh-darwin	Tue Jul 22 10:11:48 2003
128
--- misc/build/icu/source/config/mh-darwin	Tue Jul 22 10:11:48 2003
135
***************
129
***************
(-)stoc/source/security/lru_cache.h.gcc341 (-7 / +7 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: lru_cache.h,v $
3
 *  $RCSfile: lru_cache.h,v $
4
 *
4
 *
5
 *  $Revision: 1.1 $
5
 *  $Revision: 1.2.28.1 $
6
 *
6
 *
7
 *  last change: $Author: dbo $ $Date: 2002/03/04 17:43:21 $
7
 *  last change: $Author: hr $ $Date: 2004/07/13 12:54:02 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 214-220 Link Here
214
inline bool lru_cache< t_key, t_val, t_hashKey, t_equalKey >::has(
214
inline bool lru_cache< t_key, t_val, t_hashKey, t_equalKey >::has(
215
    t_key const & key ) const SAL_THROW( () )
215
    t_key const & key ) const SAL_THROW( () )
216
{
216
{
217
    t_key2element::const_iterator const iFind( m_key2element.find( key ) );
217
    typename t_key2element::const_iterator const iFind( m_key2element.find( key ) );
218
    return (iFind != m_key2element.end());
218
    return (iFind != m_key2element.end());
219
}
219
}
220
//__________________________________________________________________________________________________
220
//__________________________________________________________________________________________________
Lines 224-230 Link Here
224
{
224
{
225
    if (0 < m_size)
225
    if (0 < m_size)
226
    {
226
    {
227
        t_key2element::const_iterator const iFind( m_key2element.find( key ) );
227
        typename t_key2element::const_iterator const iFind( m_key2element.find( key ) );
228
        if (iFind != m_key2element.end())
228
        if (iFind != m_key2element.end())
229
        {
229
        {
230
            Entry * entry = iFind->second;
230
            Entry * entry = iFind->second;
Lines 250-256 Link Here
250
{
250
{
251
    if (0 < m_size)
251
    if (0 < m_size)
252
    {
252
    {
253
        t_key2element::const_iterator const iFind( m_key2element.find( key ) );
253
        typename t_key2element::const_iterator const iFind( m_key2element.find( key ) );
254
        
254
        
255
        Entry * entry;
255
        Entry * entry;
256
        if (iFind == m_key2element.end())
256
        if (iFind == m_key2element.end())
Lines 270-277 Link Here
270
#endif
270
#endif
271
            m_key2element.erase( entry->m_key );
271
            m_key2element.erase( entry->m_key );
272
            entry->m_key = key;
272
            entry->m_key = key;
273
            ::std::pair< t_key2element::iterator, bool > insertion(
273
            ::std::pair< typename t_key2element::iterator, bool > insertion(
274
                m_key2element.insert( t_key2element::value_type( key, entry ) ) );
274
                m_key2element.insert( typename t_key2element::value_type( key, entry ) ) );
275
#ifdef __CACHE_DIAGNOSE
275
#ifdef __CACHE_DIAGNOSE
276
            OSL_ENSURE( insertion.second, "### inserting new cache entry failed?!" );
276
            OSL_ENSURE( insertion.second, "### inserting new cache entry failed?!" );
277
#endif
277
#endif
(-)sablot/Sablot-0.52.patch.orig (-1 / +59 lines)
Lines 1-9 Link Here
1
*** misc/Sablot-0.52/Sablot/engine/datastr.h	2001-03-29 03:19:53.000000000 -0500
2
--- misc/build/Sablot-0.52/Sablot/engine/datastr.h	2004-05-07 15:54:49.355554612 -0400
3
***************
4
*** 752,758 ****
5
           * but need to use swap() to drag extra pointers along
6
           */
7
          for (k = ceiling - 1; k >= bottom && compare(k, k + 1) > 0; k--)
8
!             swap(k, k+1); 
9
      }
10
  }
11
  
12
--- 752,758 ----
13
           * but need to use swap() to drag extra pointers along
14
           */
15
          for (k = ceiling - 1; k >= bottom && compare(k, k + 1) > 0; k--)
16
!             SList<T>::swap(k, k+1); 
17
      }
18
  }
19
  
20
***************
21
*** 760,768 ****
22
  void SList<T>::qsPartition(int& bottom, int& top)
23
  {
24
      int middle = (bottom + top) >> 1;
25
!     if (compare(bottom, top) > 0) swap(bottom, top);
26
!     if (compare(middle, top) > 0) swap(middle, top);
27
!     if (compare(bottom, middle) > 0) swap(bottom, middle);
28
      // T pivot = List<T>::block[middle];
29
      while (bottom <= top)
30
      {
31
--- 760,768 ----
32
  void SList<T>::qsPartition(int& bottom, int& top)
33
  {
34
      int middle = (bottom + top) >> 1;
35
!     if (compare(bottom, top) > 0) SList<T>::swap(bottom, top);
36
!     if (compare(middle, top) > 0) SList<T>::swap(middle, top);
37
!     if (compare(bottom, middle) > 0) SList<T>::swap(bottom, middle);
38
      // T pivot = List<T>::block[middle];
39
      while (bottom <= top)
40
      {
41
***************
42
*** 776,782 ****
43
                  middle = top;
44
              else if (middle == top)
45
                  middle = bottom;
46
!             swap(bottom, top);
47
          }
48
      }
49
  }
50
--- 776,782 ----
51
                  middle = top;
52
              else if (middle == top)
53
                  middle = bottom;
54
!             SList<T>::swap(bottom, top);
55
          }
56
      }
57
  }
1
*** misc/Sablot-0.52/Sablot/engine/makefile.mk	Mon Aug  4 14:28:03 2003
58
*** misc/Sablot-0.52/Sablot/engine/makefile.mk	Mon Aug  4 14:28:03 2003
2
--- misc/build/Sablot-0.52/Sablot/engine/makefile.mk	Mon Aug  4 14:17:39 2003
59
--- misc/build/Sablot-0.52/Sablot/engine/makefile.mk	Mon Aug  4 14:17:39 2003
3
***************
60
***************
4
*** 1 ****
61
*** 1 ****
5
! dummy
62
! dummy
6
--- 1,163 ----
63
--- 1,164 ----
7
! #*************************************************************************
64
! #*************************************************************************
8
! #
65
! #
9
! #   $RCSfile: makefile.mk,v $
66
! #   $RCSfile: makefile.mk,v $
Lines 83-88 Link Here
83
! 
140
! 
84
! .IF "$(OS)"=="SOLARIS"
141
! .IF "$(OS)"=="SOLARIS"
85
! CFLAGS+=     -DHAVE_IEEEFP_H -DHAVE_UNISTD_H
142
! CFLAGS+=     -DHAVE_IEEEFP_H -DHAVE_UNISTD_H
143
! CFLAGSCXX+=-instances=static
86
! .ENDIF
144
! .ENDIF
87
! 
145
! 
88
! .IF "$(OS)"=="LINUX" || "$(OS)"=="MACOSX" || "$(OS)"=="FREEBSD" || "$(OS)"=="IRIX" || "$(OS)"=="NETBSD"
146
! .IF "$(OS)"=="LINUX" || "$(OS)"=="MACOSX" || "$(OS)"=="FREEBSD" || "$(OS)"=="IRIX" || "$(OS)"=="NETBSD"
(-)sal/inc/osl/mutex.hxx.gcc341sal (-2 / +2 lines)
Lines 245-252 Link Here
245
        {
245
        {
246
            if( pResetT )
246
            if( pResetT )
247
            {
247
            {
248
                pT = pResetT;
248
                ResettableGuard< T >::pT = pResetT;
249
                pT->acquire();
249
                ResettableGuard< T >::pT->acquire();
250
            }
250
            }
251
        }
251
        }
252
    };
252
    };
(-)sal/inc/rtl/instance.hxx.gcc341saltypo (-1 / +1 lines)
Lines 343-349 Link Here
343
            p = m_pInstance;
343
            p = m_pInstance;
344
            if (!p)
344
            if (!p)
345
            {
345
            {
346
                p = aInstCtor(data);
346
                p = aInstCtor(aData);
347
                OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();
347
                OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();
348
                m_pInstance = p;
348
                m_pInstance = p;
349
            }
349
            }
(-)solenv/inc/tg_compv.mk.gcc341solenv (+4 lines)
Lines 134-139 Link Here
134
SHORTSTDCPP3="5"
134
SHORTSTDCPP3="5"
135
.ENDIF
135
.ENDIF
136
136
137
.IF "$(CCNUMVER)">="000300040000"
138
SHORTSTDCPP3="6"
139
.ENDIF
140
137
.ENDIF
141
.ENDIF
138
.ENDIF
142
.ENDIF
139
143
(-)soltools/inc/st_list.hxx.gcc341soltools (-12 / +12 lines)
Lines 305-312 Link Here
305
DynamicList<XY>::DynamicList( const DynamicList<XY> & i_rList )
305
DynamicList<XY>::DynamicList( const DynamicList<XY> & i_rList )
306
    :   ST_List< XY* >(i_rList)
306
    :   ST_List< XY* >(i_rList)
307
{         
307
{         
308
    for ( typename DynamicList<XY>::iterator it = begin();
308
    for ( typename DynamicList<XY>::iterator it = DynamicList<XY>::begin();
309
          it != end();
309
          it != DynamicList<XY>::end();
310
          ++it )
310
          ++it )
311
    {
311
    {
312
        // Copying the contents the pointers point at:
312
        // Copying the contents the pointers point at:
Lines 317-323 Link Here
317
template <class XY>
317
template <class XY>
318
DynamicList<XY>::~DynamicList()
318
DynamicList<XY>::~DynamicList()
319
{
319
{
320
	erase_all();
320
	DynamicList<XY>::erase_all();
321
}
321
}
322
322
323
template <class XY>
323
template <class XY>
Lines 338-361 Link Here
338
void
338
void
339
DynamicList<XY>::Insert(unsigned pos, XY * const & elem)
339
DynamicList<XY>::Insert(unsigned pos, XY * const & elem)
340
{
340
{
341
	if ( pos > len )
341
	if ( pos > DynamicList<XY>::len )
342
	  return;
342
	  return;
343
343
344
	checkSize(len+2);
344
	checkSize(DynamicList<XY>::len+2);
345
	memmove( inhalt+pos+1, inhalt+pos, (len-pos) * sizeof(XY*) );
345
	memmove( DynamicList<XY>::inhalt+pos+1, DynamicList<XY>::inhalt+pos, (DynamicList<XY>::len-pos) * sizeof(XY*) );
346
	inhalt[pos] = elem;
346
	DynamicList<XY>::inhalt[pos] = elem;
347
	len++;
347
	DynamicList<XY>::len++;
348
}
348
}
349
349
350
template <class XY>
350
template <class XY>
351
void
351
void
352
DynamicList<XY>::Remove( unsigned pos )
352
DynamicList<XY>::Remove( unsigned pos )
353
{
353
{
354
	if (!is_valid_index(pos) )
354
	if (!DynamicList<XY>::is_valid_index(pos) )
355
		return;
355
		return;
356
	len--;
356
	DynamicList<XY>::len--;
357
	delete inhalt[pos];
357
	delete DynamicList<XY>::inhalt[pos];
358
	memmove(inhalt+pos, inhalt+pos+1, (len-pos) * sizeof(XY*) );
358
	memmove(DynamicList<XY>::inhalt+pos, DynamicList<XY>::inhalt+pos+1, (DynamicList<XY>::len-pos) * sizeof(XY*) );
359
}
359
}
360
360
361
361
(-)store/inc/store/object.hxx.gcc341store (-19 lines)
Lines 97-121 Link Here
97
store_handle_type * SAL_CALL query (
97
store_handle_type * SAL_CALL query (
98
	IStoreHandle * pHandle, store_handle_type *);
98
	IStoreHandle * pHandle, store_handle_type *);
99
99
100
101
/** Template helper class as type safe Reference to store_handle_type.
102
 */
103
template<class store_handle_type>
104
class OStoreHandle : public rtl::Reference<store_handle_type>
105
{
106
public:
107
	OStoreHandle (store_handle_type * pHandle)
108
		: rtl::Reference<store_handle_type> (pHandle)
109
	{}
110
111
	static store_handle_type * SAL_CALL query (void * pHandle)
112
	{
113
		return store::query (
114
			static_cast<IStoreHandle*>(pHandle),
115
			static_cast<store_handle_type*>(0));
116
	}
117
};
118
119
/*========================================================================
100
/*========================================================================
120
 *
101
 *
121
 * OStoreObject interface.
102
 * OStoreObject interface.
(-)store/source/store.cxx.gcc341store (+22 lines)
Lines 101-106 Link Here
101
using rtl::Reference;
101
using rtl::Reference;
102
using rtl::OString;
102
using rtl::OString;
103
103
104
namespace store
105
{
106
/** Template helper class as type safe Reference to store_handle_type.
107
 */
108
template<class store_handle_type>
109
class OStoreHandle : public rtl::Reference<store_handle_type>
110
{
111
public:
112
	OStoreHandle (store_handle_type * pHandle)
113
		: rtl::Reference<store_handle_type> (pHandle)
114
	{}
115
116
	static store_handle_type * SAL_CALL query (void * pHandle)
117
	{
118
		return store::query (
119
			static_cast<IStoreHandle*>(pHandle),
120
			static_cast<store_handle_type*>(0));
121
	}
122
};
123
}
124
125
104
using namespace store;
126
using namespace store;
105
127
106
/*========================================================================
128
/*========================================================================
(-)svx/inc/AccessibleShapeInfo.hxx.31568 (-1 / +1 lines)
Lines 139-148 Link Here
139
139
140
    ~AccessibleShapeInfo (void);
140
    ~AccessibleShapeInfo (void);
141
141
142
    AccessibleShapeInfo (const AccessibleShapeInfo&);
142
private:
143
private:
143
    // Don't use these three methods.
144
    // Don't use these three methods.
144
    explicit AccessibleShapeInfo (void);
145
    explicit AccessibleShapeInfo (void);
145
    explicit AccessibleShapeInfo (const AccessibleShapeInfo&);
146
    AccessibleShapeInfo& operator= (const AccessibleShapeInfo&);
146
    AccessibleShapeInfo& operator= (const AccessibleShapeInfo&);
147
};
147
};
148
148
(-)svx/source/accessibility/AccessibleShapeInfo.cxx.31568 (-1 / +8 lines)
Lines 99-105 Link Here
99
    // empty.
99
    // empty.
100
}
100
}
101
101
102
102
AccessibleShapeInfo::AccessibleShapeInfo (const AccessibleShapeInfo &rOther)
103
	: mxShape (rOther.mxShape),
104
      mxParent (rOther.mxParent),
105
      mpChildrenManager (rOther.mpChildrenManager),
106
      mnIndex (rOther.mnIndex)
107
{
108
    // empty.
109
}
103
110
104
111
105
AccessibleShapeInfo::~AccessibleShapeInfo (void)
112
AccessibleShapeInfo::~AccessibleShapeInfo (void)
(-)svx/inc/unomaster.hxx.31542 (-2 / +2 lines)
Lines 84-90 Link Here
84
class SvxShapeMaster
84
class SvxShapeMaster
85
{
85
{
86
public:
86
public:
87
	virtual sal_Bool queryAggregation( const com::sun::star::uno::Type & rType, com::sun::star::uno::Any& aAny ) = NULL;
87
	virtual sal_Bool queryAggregation( const com::sun::star::uno::Type & rType, com::sun::star::uno::Any& aAny ) = 0;
88
88
89
    virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo(  ) throw(::com::sun::star::uno::RuntimeException) = 0;
89
    virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo(  ) throw(::com::sun::star::uno::RuntimeException) = 0;
90
    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;
90
    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;
Lines 98-104 Link Here
98
98
99
    virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException) = 0;
99
    virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException) = 0;
100
100
101
	virtual void dispose() = NULL;
101
	virtual void dispose() = 0;
102
};
102
};
103
103
104
#endif
104
#endif
(-)ucb/source/inc/regexpmap.tpt.gcc341ucb (-7 / +7 lines)
Lines 191-197 Link Here
191
	if (bBegin)
191
	if (bBegin)
192
	{
192
	{
193
		m_nList = -1;
193
		m_nList = -1;
194
		m_aIndex = List< Val >::iterator();
194
		m_aIndex = typename List< Val >::iterator();
195
		if (!m_pMap->m_pDefault)
195
		if (!m_pMap->m_pDefault)
196
			next();
196
			next();
197
	}
197
	}
Lines 342-348 Link Here
342
template< typename Val >
342
template< typename Val >
343
RegexpMapIter< Val > & RegexpMapIter< Val >::operator ++()
343
RegexpMapIter< Val > & RegexpMapIter< Val >::operator ++()
344
{
344
{
345
	m_pImpl->next();
345
	RegexpMapIter< Val >::m_pImpl->next();
346
	return *this;
346
	return *this;
347
}
347
}
348
348
Lines 351-357 Link Here
351
RegexpMapIter< Val > RegexpMapIter< Val >::operator ++(int)
351
RegexpMapIter< Val > RegexpMapIter< Val >::operator ++(int)
352
{
352
{
353
	RegexpMapIter aTemp(*this);
353
	RegexpMapIter aTemp(*this);
354
	m_pImpl->next();
354
	RegexpMapIter< Val >::m_pImpl->next();
355
	return aTemp;
355
	return aTemp;
356
}
356
}
357
357
Lines 359-386 Link Here
359
template< typename Val >
359
template< typename Val >
360
RegexpMapEntry< Val > & RegexpMapIter< Val >::operator *()
360
RegexpMapEntry< Val > & RegexpMapIter< Val >::operator *()
361
{
361
{
362
	return m_pImpl->get();
362
	return RegexpMapIter< Val >::m_pImpl->get();
363
}
363
}
364
364
365
//============================================================================
365
//============================================================================
366
template< typename Val >
366
template< typename Val >
367
RegexpMapEntry< Val > const & RegexpMapIter< Val >::operator *() const
367
RegexpMapEntry< Val > const & RegexpMapIter< Val >::operator *() const
368
{
368
{
369
	return m_pImpl->get();
369
	return RegexpMapIter< Val >::m_pImpl->get();
370
}
370
}
371
371
372
//============================================================================
372
//============================================================================
373
template< typename Val >
373
template< typename Val >
374
RegexpMapEntry< Val > * RegexpMapIter< Val >::operator ->()
374
RegexpMapEntry< Val > * RegexpMapIter< Val >::operator ->()
375
{
375
{
376
	return &m_pImpl->get();
376
	return &RegexpMapIter< Val >::m_pImpl->get();
377
}
377
}
378
378
379
//============================================================================
379
//============================================================================
380
template< typename Val >
380
template< typename Val >
381
RegexpMapEntry< Val > const * RegexpMapIter< Val >::operator ->() const
381
RegexpMapEntry< Val > const * RegexpMapIter< Val >::operator ->() const
382
{
382
{
383
	return &m_pImpl->get();
383
	return &RegexpMapIter< Val >::m_pImpl->get();
384
}
384
}
385
385
386
//============================================================================
386
//============================================================================
(-)xml2cmp/source/support/list.hxx.gcc341xml2cmp (-10 / +10 lines)
Lines 252-282 Link Here
252
template <class XY>
252
template <class XY>
253
DynamicList<XY>::~DynamicList()
253
DynamicList<XY>::~DynamicList()
254
{
254
{
255
    erase_all();
255
    DynamicList<XY>::erase_all();
256
}
256
}
257
257
258
template <class XY>
258
template <class XY>
259
void
259
void
260
DynamicList<XY>::insert(unsigned pos, XY * const & elem)
260
DynamicList<XY>::insert(unsigned pos, XY * const & elem)
261
{
261
{
262
    if ( pos > len )
262
    if ( pos > DynamicList<XY>::len )
263
      return;
263
      return;
264
264
265
    checkSize(len+2);
265
    checkSize(DynamicList<XY>::len+2);
266
    memmove(inhalt[pos+1], inhalt[pos], (len-pos) * sizeof(XY*) );
266
    memmove(DynamicList<XY>::inhalt[pos+1], DynamicList<XY>::inhalt[pos], (DynamicList<XY>::len-pos) * sizeof(XY*) );
267
    inhalt[pos] = elem;
267
    DynamicList<XY>::inhalt[pos] = elem;
268
    len++;
268
    DynamicList<XY>::len++;
269
}
269
}
270
270
271
template <class XY>
271
template <class XY>
272
void
272
void
273
DynamicList<XY>::remove( unsigned           pos )
273
DynamicList<XY>::remove( unsigned           pos )
274
{
274
{
275
    if (!is_valid_index(pos) )
275
    if (!DynamicList<XY>::is_valid_index(pos) )
276
        return;
276
        return;
277
    len--;
277
    DynamicList<XY>::len--;
278
    delete inhalt[pos];
278
    delete DynamicList<XY>::inhalt[pos];
279
    memmove(inhalt[pos], inhalt[pos+1], (len-pos) * sizeof(XY*) );
279
    memmove(DynamicList<XY>::inhalt[pos], DynamicList<XY>::inhalt[pos+1], (DynamicList<XY>::len-pos) * sizeof(XY*) );
280
}
280
}
281
281
282
282
(-)xmloff/source/forms/elementimport_impl.hxx.gcc341xmloff (-1 / +1 lines)
Lines 148-154 Link Here
148
	if (m_xColumnFactory.is())
148
	if (m_xColumnFactory.is())
149
	{
149
	{
150
		// create the column
150
		// create the column
151
		xReturn = m_xColumnFactory->createColumn(m_sServiceName);
151
		xReturn = m_xColumnFactory->createColumn(this->m_sServiceName);
152
		OSL_ENSURE(xReturn.is(), "OColumnImport::createElement: the factory returned an invalid object!");
152
		OSL_ENSURE(xReturn.is(), "OColumnImport::createElement: the factory returned an invalid object!");
153
	}
153
	}
154
	return xReturn;
154
	return xReturn;
(-)comphelper/inc/comphelper/querydeep.hxx.orig (-3 / +1 lines)
Lines 101-109 Link Here
101
	const ::com::sun::star::uno::Type& rBaseType,
101
	const ::com::sun::star::uno::Type& rBaseType,
102
	Interface* /*p*/)
102
	Interface* /*p*/)
103
{
103
{
104
	return isDerivedFrom(
104
    return isDerivedFrom(rBaseType, Interface::static_type());
105
				rBaseType,
106
				::getCppuType(static_cast<const ::com::sun::star::uno::Reference<Interface> *>(0)));
107
}
105
}
108
106
109
//--------------------------------------------------------------------------------------------------------
107
//--------------------------------------------------------------------------------------------------------
(-)cppuhelper/inc/cppuhelper/queryinterface.hxx (-4 / +11 lines)
Lines 62-72 Link Here
62
#ifndef _CPPUHELPER_QUERYINTERFACE_HXX_
62
#ifndef _CPPUHELPER_QUERYINTERFACE_HXX_
63
#define _CPPUHELPER_QUERYINTERFACE_HXX_
63
#define _CPPUHELPER_QUERYINTERFACE_HXX_
64
64
65
#ifndef _COM_SUN_STAR_UNO_XINTERFACE_HPP_
65
#ifndef _SAL_CONFIG_H_
66
#include <com/sun/star/uno/XInterface.hpp>
66
#include "sal/config.h"
67
#endif
67
#endif
68
#ifndef _COM_SUN_STAR_UNO_REFERENCE_HXX_
68
69
#include <com/sun/star/uno/Reference.hxx>
69
#ifndef _COM_SUN_STAR_UNO_ANY_HXX_
70
#include "com/sun/star/uno/Any.hxx"
71
#endif
72
#ifndef _COM_SUN_STAR_UNO_TYPE_HXX_
73
#include "com/sun/star/uno/Type.hxx"
74
#endif
75
#ifndef _SAL_TYPES_H_
76
#include "sal/types.h"
70
#endif
77
#endif
71
78
72
namespace cppu
79
namespace cppu
(-)autodoc/source/ary/cpp/c_gate.cxx (-3 / +4 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: c_gate.cxx,v $
3
 *  $RCSfile: c_gate.cxx,v $
4
 *
4
 *
5
 *  $Revision: 1.5 $
5
 *  $Revision: 1.6 $
6
 *
6
 *
7
 *  last change: $Author: hr $ $Date: 2003/06/30 15:25:45 $
7
 *  last change: $Author: rt $ $Date: 2003/12/01 16:11:09 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 744-750 Link Here
744
    while ( true )
744
    while ( true )
745
    {
745
    {
746
        int nUse = -1;
746
        int nUse = -1;
747
        for ( int i = 0; i < 5; ++i )
747
        int i;
748
        for ( i = 0; i < 5; ++i )
748
        {
749
        {
749
            if ( it[i] != itEnd[i] )
750
            if ( it[i] != itEnd[i] )
750
            {
751
            {
(-)autodoc/source/parser/cpp/cx_c_pp.cxx (-3 / +5 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: cx_c_pp.cxx,v $
3
 *  $RCSfile: cx_c_pp.cxx,v $
4
 *
4
 *
5
 *  $Revision: 1.2 $
5
 *  $Revision: 1.3 $
6
 *
6
 *
7
 *  last change: $Author: hr $ $Date: 2003/03/18 14:11:41 $
7
 *  last change: $Author: rt $ $Date: 2003/12/01 16:11:55 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 175-180 Link Here
175
void
175
void
176
Context_PP_MacroParams::ReadCharChain( CharacterSource & io_rText )
176
Context_PP_MacroParams::ReadCharChain( CharacterSource & io_rText )
177
{
177
{
178
    uintt nLen;
179
178
	jumpOverWhite( io_rText );
180
	jumpOverWhite( io_rText );
179
    // KORR_FUTURE Handling line breaks within macro parameters:
181
    // KORR_FUTURE Handling line breaks within macro parameters:
180
	char cSeparator = jumpTo( io_rText, ',', ')' );
182
	char cSeparator = jumpTo( io_rText, ',', ')' );
Lines 183-189 Link Here
183
    static char cBuf[500];
185
    static char cBuf[500];
184
    // KORR_FUTURE, make it still safer, here:
186
    // KORR_FUTURE, make it still safer, here:
185
    strcpy( cBuf, io_rText.CutToken() );    // SAFE STRCPY (#100211# - checked)
187
    strcpy( cBuf, io_rText.CutToken() );    // SAFE STRCPY (#100211# - checked)
186
    for ( uintt nLen = strlen(cBuf);
188
    for ( nLen = strlen(cBuf);
187
          nLen > 0 AND cBuf[nLen-1] < 33;
189
          nLen > 0 AND cBuf[nLen-1] < 33;
188
          --nLen )
190
          --nLen )
189
    { }
191
    { }
(-)autodoc/source/display/html/hdimpl.cxx (-3 / +4 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: hdimpl.cxx,v $
3
 *  $RCSfile: hdimpl.cxx,v $
4
 *
4
 *
5
 *  $Revision: 1.4 $
5
 *  $Revision: 1.5 $
6
 *
6
 *
7
 *  last change: $Author: hr $ $Date: 2003/03/18 14:11:36 $
7
 *  last change: $Author: rt $ $Date: 2003/12/01 16:11:32 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 457-463 Link Here
457
{
457
{
458
    if ( *io_rStr.c_str() < 33 AND io_rStr.length() > 0 )
458
    if ( *io_rStr.c_str() < 33 AND io_rStr.length() > 0 )
459
    {
459
    {
460
        for ( const unsigned char * pNew = (const unsigned char * ) io_rStr.c_str();
460
        const unsigned char * pNew;
461
        for ( pNew = (const unsigned char * ) io_rStr.c_str();
461
              *pNew < 33 AND *pNew != 0;
462
              *pNew < 33 AND *pNew != 0;
462
              ++pNew ) {}
463
              ++pNew ) {}
463
        udmstri sNew( (const char*)pNew );
464
        udmstri sNew( (const char*)pNew );
(-)autodoc/source/display/toolkit/out_position.cxx (-3 / +5 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: out_position.cxx,v $
3
 *  $RCSfile: out_position.cxx,v $
4
 *
4
 *
5
 *  $Revision: 1.1 $
5
 *  $Revision: 1.2 $
6
 *
6
 *
7
 *  last change: $Author: np $ $Date: 2002/11/01 17:15:27 $
7
 *  last change: $Author: rt $ $Date: 2003/12/01 16:11:43 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 241-253 Link Here
241
const char *
241
const char *
242
get_UpLink(intt i_depth)
242
get_UpLink(intt i_depth)
243
{
243
{
244
	intt nDepth;
245
244
    if ( i_depth <= C_nMaxDepth )
246
    if ( i_depth <= C_nMaxDepth )
245
        return C_sUpLink + 3*(C_nMaxDepth - i_depth);
247
        return C_sUpLink + 3*(C_nMaxDepth - i_depth);
246
248
247
249
248
    StreamLock  aRet(i_depth*3 + 1);
250
    StreamLock  aRet(i_depth*3 + 1);
249
    StreamStr & rRet = aRet();
251
    StreamStr & rRet = aRet();
250
    for ( intt nDepth = i_depth; nDepth > C_nMaxDepth; nDepth -= C_nMaxDepth )
252
    for ( nDepth = i_depth; nDepth > C_nMaxDepth; nDepth -= C_nMaxDepth )
251
    {
253
    {
252
        rRet << C_sUpLink;
254
        rRet << C_sUpLink;
253
    }
255
    }
(-)autodoc/source/ary/cpp/prpr.cxx (-3 / +4 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: prpr.cxx,v $
3
 *  $RCSfile: prpr.cxx,v $
4
 *
4
 *
5
 *  $Revision: 1.1.1.1 $
5
 *  $Revision: 1.2 $
6
 *
6
 *
7
 *  last change: $Author: np $ $Date: 2002/03/08 14:45:18 $
7
 *  last change: $Author: rt $ $Date: 2003/12/01 16:11:21 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 92-98 Link Here
92
{
92
{
93
    if ( io_bConcatenate )
93
    if ( io_bConcatenate )
94
    {
94
    {
95
        for ( uintt nPos = o_rText.tellp() - 1;
95
        uintt nPos;
96
        for ( nPos = o_rText.tellp() - 1;
96
              nPos > 0 ? o_rText.c_str()[nPos] == ' ' : false;
97
              nPos > 0 ? o_rText.c_str()[nPos] == ' ' : false;
97
              --nPos );
98
              --nPos );
98
        o_rText.seekp(nPos+1);
99
        o_rText.seekp(nPos+1);
(-)codemaker/source/cppumaker/cpputype.cxx (-3 / +22 lines)
Lines 1531-1543 Link Here
1531
	dumpDefaultHIncludes(o);
1531
	dumpDefaultHIncludes(o);
1532
	o << "\n";
1532
	o << "\n";
1533
	dumpDepIncludes(o, m_typeName, "hdl");
1533
	dumpDepIncludes(o, m_typeName, "hdl");
1534
	o << "\n";
1534
1535
//	o << "\n";
1536
        o << ("\nnamespace com { namespace sun { namespace star { namespace uno {\n"
1537
          "class Type;\n} } } }\n\n");
1538
1535
	dumpNameSpace(o);
1539
	dumpNameSpace(o);
1536
	dumpDeclaration(o);
1540
	dumpDeclaration(o);
1537
	dumpNameSpace(o, sal_False);
1541
	dumpNameSpace(o, sal_False);
1538
1542
1539
	o << "\nnamespace com { namespace sun { namespace star { namespace uno {\n"
1543
//	o << "\nnamespace com { namespace sun { namespace star { namespace uno {\n"
1540
	  << "class Type;\n} } } }\n\n";
1544
//	  << "class Type;\n} } } }\n\n";
1545
	o << "\n";
1541
1546
1542
	if (m_cppuTypeStatic)
1547
	if (m_cppuTypeStatic)
1543
		o << "static";
1548
		o << "static";
Lines 1650-1655 Link Here
1650
	dumpAttributes(o);
1655
	dumpAttributes(o);
1651
	dumpMethods(o);
1656
	dumpMethods(o);
1652
1657
1658
    o << "\n" << indent()
1659
      << ("static inline ::com::sun::star::uno::Type const & SAL_CALL"
1660
          " static_type(void * = 0);\n");
1661
1653
	dec();
1662
	dec();
1654
	o << "};\n\n";
1663
	o << "};\n\n";
1655
1664
Lines 1728-1733 Link Here
1728
			}
1737
			}
1729
		}
1738
		}
1730
	}
1739
	}
1740
1741
    o << "\n::com::sun::star::uno::Type const & "
1742
      << scopedName(rtl::OString(), m_typeName)
1743
      << "::static_type(void *) {\n";
1744
    inc();
1745
    o << indent() << "return ::getCppuType(static_cast< ";
1746
    dumpType(o, m_typeName);
1747
    o << " * >(0));\n";
1748
    dec();
1749
    o << "}\n";
1731
1750
1732
	o << "\n#endif // "<< headerDefine << "\n";
1751
	o << "\n#endif // "<< headerDefine << "\n";
1733
	return sal_True;
1752
	return sal_True;
(-)comphelper/inc/comphelper/uno3.hxx (-4 / +6 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: uno3.hxx,v $
3
 *  $RCSfile: uno3.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.5 $
5
 *  $Revision: 1.5.172.1 $
6
 *
6
 *
7
 *  last change: $Author: fs $ $Date: 2002/04/23 11:06:59 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 10:09:46 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 206-212 Link Here
206
		_rxOut = static_cast<iface*>(NULL);
206
		_rxOut = static_cast<iface*>(NULL);
207
		if (_rxAggregate.is())
207
		if (_rxAggregate.is())
208
		{
208
		{
209
			::com::sun::star::uno::Any aCheck = _rxAggregate->queryAggregation(::getCppuType((::com::sun::star::uno::Reference<iface>*)NULL));
209
			::com::sun::star::uno::Any aCheck = _rxAggregate->queryAggregation(
210
                iface::static_type());
210
			if (aCheck.hasValue())
211
			if (aCheck.hasValue())
211
				_rxOut = *(::com::sun::star::uno::Reference<iface>*)aCheck.getValue();
212
				_rxOut = *(::com::sun::star::uno::Reference<iface>*)aCheck.getValue();
212
		}
213
		}
Lines 225-231 Link Here
225
		_rxOut = static_cast<iface*>(NULL);
226
		_rxOut = static_cast<iface*>(NULL);
226
		if (_rxObject.is())
227
		if (_rxObject.is())
227
		{
228
		{
228
			::com::sun::star::uno::Any aCheck = _rxObject->queryInterface(::getCppuType((::com::sun::star::uno::Reference<iface>*)NULL));
229
			::com::sun::star::uno::Any aCheck = _rxObject->queryInterface(
230
                iface::static_type());
229
			if(aCheck.hasValue())
231
			if(aCheck.hasValue())
230
			{
232
			{
231
				_rxOut = *(::com::sun::star::uno::Reference<iface>*)aCheck.getValue();
233
				_rxOut = *(::com::sun::star::uno::Reference<iface>*)aCheck.getValue();
(-)comphelper/inc/comphelper/querydeep.hxx (-80 / +80 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: querydeep.hxx,v $
3
 *  $RCSfile: querydeep.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.1.1.1 $
5
 *  $Revision: 1.1.1.1.208.1 $
6
 *
6
 *
7
 *  last change: $Author: fs $ $Date: 2000/09/29 11:28:15 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 10:09:46 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 120-126 Link Here
120
	const ::com::sun::star::uno::Type & rType,
120
	const ::com::sun::star::uno::Type & rType,
121
	Interface1 * p1 )
121
	Interface1 * p1 )
122
{
122
{
123
	if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface1 > *>(0))))
123
	if (isDerivedFrom(rType, Interface1::static_type()))
124
		return ::com::sun::star::uno::Any( &p1, rType );
124
		return ::com::sun::star::uno::Any( &p1, rType );
125
	else
125
	else
126
		return ::com::sun::star::uno::Any();
126
		return ::com::sun::star::uno::Any();
Lines 137-145 Link Here
137
	const ::com::sun::star::uno::Type & rType,
137
	const ::com::sun::star::uno::Type & rType,
138
	Interface1 * p1, Interface2 * p2 )
138
	Interface1 * p1, Interface2 * p2 )
139
{
139
{
140
	if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface1 > *>(0))))
140
	if (isDerivedFrom(rType, Interface1::static_type()))
141
		return ::com::sun::star::uno::Any( &p1, rType );
141
		return ::com::sun::star::uno::Any( &p1, rType );
142
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface2 > *>(0))))
142
	else if (isDerivedFrom(rType, Interface2::static_type()))
143
		return ::com::sun::star::uno::Any( &p2, rType );
143
		return ::com::sun::star::uno::Any( &p2, rType );
144
	else
144
	else
145
		return ::com::sun::star::uno::Any();
145
		return ::com::sun::star::uno::Any();
Lines 157-167 Link Here
157
	const ::com::sun::star::uno::Type & rType,
157
	const ::com::sun::star::uno::Type & rType,
158
	Interface1 * p1, Interface2 * p2, Interface3 * p3 )
158
	Interface1 * p1, Interface2 * p2, Interface3 * p3 )
159
{
159
{
160
	if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface1 > *>(0))))
160
	if (isDerivedFrom(rType, Interface1::static_type()))
161
		return ::com::sun::star::uno::Any( &p1, rType );
161
		return ::com::sun::star::uno::Any( &p1, rType );
162
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface2 > *>(0))))
162
	else if (isDerivedFrom(rType, Interface2::static_type()))
163
		return ::com::sun::star::uno::Any( &p2, rType );
163
		return ::com::sun::star::uno::Any( &p2, rType );
164
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface3 > *>(0))))
164
	else if (isDerivedFrom(rType, Interface3::static_type()))
165
		return ::com::sun::star::uno::Any( &p3, rType );
165
		return ::com::sun::star::uno::Any( &p3, rType );
166
	else
166
	else
167
		return ::com::sun::star::uno::Any();
167
		return ::com::sun::star::uno::Any();
Lines 180-192 Link Here
180
	const ::com::sun::star::uno::Type & rType,
180
	const ::com::sun::star::uno::Type & rType,
181
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4 )
181
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4 )
182
{
182
{
183
	if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface1 > *>(0))))
183
	if (isDerivedFrom(rType, Interface1::static_type()))
184
		return ::com::sun::star::uno::Any( &p1, rType );
184
		return ::com::sun::star::uno::Any( &p1, rType );
185
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface2 > *>(0))))
185
	else if (isDerivedFrom(rType, Interface2::static_type()))
186
		return ::com::sun::star::uno::Any( &p2, rType );
186
		return ::com::sun::star::uno::Any( &p2, rType );
187
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface3 > *>(0))))
187
	else if (isDerivedFrom(rType, Interface3::static_type()))
188
		return ::com::sun::star::uno::Any( &p3, rType );
188
		return ::com::sun::star::uno::Any( &p3, rType );
189
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface4 > *>(0))))
189
	else if (isDerivedFrom(rType, Interface4::static_type()))
190
		return ::com::sun::star::uno::Any( &p4, rType );
190
		return ::com::sun::star::uno::Any( &p4, rType );
191
	else
191
	else
192
		return ::com::sun::star::uno::Any();
192
		return ::com::sun::star::uno::Any();
Lines 206-220 Link Here
206
	const ::com::sun::star::uno::Type & rType,
206
	const ::com::sun::star::uno::Type & rType,
207
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5 )
207
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5 )
208
{
208
{
209
	if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface1 > *>(0))))
209
	if (isDerivedFrom(rType, Interface1::static_type()))
210
		return ::com::sun::star::uno::Any( &p1, rType );
210
		return ::com::sun::star::uno::Any( &p1, rType );
211
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface2 > *>(0))))
211
	else if (isDerivedFrom(rType, Interface2::static_type()))
212
		return ::com::sun::star::uno::Any( &p2, rType );
212
		return ::com::sun::star::uno::Any( &p2, rType );
213
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface3 > *>(0))))
213
	else if (isDerivedFrom(rType, Interface3::static_type()))
214
		return ::com::sun::star::uno::Any( &p3, rType );
214
		return ::com::sun::star::uno::Any( &p3, rType );
215
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface4 > *>(0))))
215
	else if (isDerivedFrom(rType, Interface4::static_type()))
216
		return ::com::sun::star::uno::Any( &p4, rType );
216
		return ::com::sun::star::uno::Any( &p4, rType );
217
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface5 > *>(0))))
217
	else if (isDerivedFrom(rType, Interface5::static_type()))
218
		return ::com::sun::star::uno::Any( &p5, rType );
218
		return ::com::sun::star::uno::Any( &p5, rType );
219
	else
219
	else
220
		return ::com::sun::star::uno::Any();
220
		return ::com::sun::star::uno::Any();
Lines 237-253 Link Here
237
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
237
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
238
	Interface6 * p6 )
238
	Interface6 * p6 )
239
{
239
{
240
	if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface1 > *>(0))))
240
	if (isDerivedFrom(rType, Interface1::static_type()))
241
		return ::com::sun::star::uno::Any( &p1, rType );
241
		return ::com::sun::star::uno::Any( &p1, rType );
242
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface2 > *>(0))))
242
	else if (isDerivedFrom(rType, Interface2::static_type()))
243
		return ::com::sun::star::uno::Any( &p2, rType );
243
		return ::com::sun::star::uno::Any( &p2, rType );
244
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface3 > *>(0))))
244
	else if (isDerivedFrom(rType, Interface3::static_type()))
245
		return ::com::sun::star::uno::Any( &p3, rType );
245
		return ::com::sun::star::uno::Any( &p3, rType );
246
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface4 > *>(0))))
246
	else if (isDerivedFrom(rType, Interface4::static_type()))
247
		return ::com::sun::star::uno::Any( &p4, rType );
247
		return ::com::sun::star::uno::Any( &p4, rType );
248
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface5 > *>(0))))
248
	else if (isDerivedFrom(rType, Interface5::static_type()))
249
		return ::com::sun::star::uno::Any( &p5, rType );
249
		return ::com::sun::star::uno::Any( &p5, rType );
250
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface6 > *>(0))))
250
	else if (isDerivedFrom(rType, Interface6::static_type()))
251
		return ::com::sun::star::uno::Any( &p6, rType );
251
		return ::com::sun::star::uno::Any( &p6, rType );
252
	else
252
	else
253
		return ::com::sun::star::uno::Any();
253
		return ::com::sun::star::uno::Any();
Lines 271-289 Link Here
271
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
271
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
272
	Interface6 * p6, Interface7 * p7 )
272
	Interface6 * p6, Interface7 * p7 )
273
{
273
{
274
	if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface1 > *>(0))))
274
	if (isDerivedFrom(rType, Interface1::static_type()))
275
		return ::com::sun::star::uno::Any( &p1, rType );
275
		return ::com::sun::star::uno::Any( &p1, rType );
276
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface2 > *>(0))))
276
	else if (isDerivedFrom(rType, Interface2::static_type()))
277
		return ::com::sun::star::uno::Any( &p2, rType );
277
		return ::com::sun::star::uno::Any( &p2, rType );
278
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface3 > *>(0))))
278
	else if (isDerivedFrom(rType, Interface3::static_type()))
279
		return ::com::sun::star::uno::Any( &p3, rType );
279
		return ::com::sun::star::uno::Any( &p3, rType );
280
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface4 > *>(0))))
280
	else if (isDerivedFrom(rType, Interface4::static_type()))
281
		return ::com::sun::star::uno::Any( &p4, rType );
281
		return ::com::sun::star::uno::Any( &p4, rType );
282
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface5 > *>(0))))
282
	else if (isDerivedFrom(rType, Interface5::static_type()))
283
		return ::com::sun::star::uno::Any( &p5, rType );
283
		return ::com::sun::star::uno::Any( &p5, rType );
284
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface6 > *>(0))))
284
	else if (isDerivedFrom(rType, Interface6::static_type()))
285
		return ::com::sun::star::uno::Any( &p6, rType );
285
		return ::com::sun::star::uno::Any( &p6, rType );
286
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface7 > *>(0))))
286
	else if (isDerivedFrom(rType, Interface7::static_type()))
287
		return ::com::sun::star::uno::Any( &p7, rType );
287
		return ::com::sun::star::uno::Any( &p7, rType );
288
	else
288
	else
289
		return ::com::sun::star::uno::Any();
289
		return ::com::sun::star::uno::Any();
Lines 308-328 Link Here
308
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
308
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
309
	Interface6 * p6, Interface7 * p7, Interface8 * p8 )
309
	Interface6 * p6, Interface7 * p7, Interface8 * p8 )
310
{
310
{
311
	if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface1 > *>(0))))
311
	if (isDerivedFrom(rType, Interface1::static_type()))
312
		return ::com::sun::star::uno::Any( &p1, rType );
312
		return ::com::sun::star::uno::Any( &p1, rType );
313
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface2 > *>(0))))
313
	else if (isDerivedFrom(rType, Interface2::static_type()))
314
		return ::com::sun::star::uno::Any( &p2, rType );
314
		return ::com::sun::star::uno::Any( &p2, rType );
315
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface3 > *>(0))))
315
	else if (isDerivedFrom(rType, Interface3::static_type()))
316
		return ::com::sun::star::uno::Any( &p3, rType );
316
		return ::com::sun::star::uno::Any( &p3, rType );
317
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface4 > *>(0))))
317
	else if (isDerivedFrom(rType, Interface4::static_type()))
318
		return ::com::sun::star::uno::Any( &p4, rType );
318
		return ::com::sun::star::uno::Any( &p4, rType );
319
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface5 > *>(0))))
319
	else if (isDerivedFrom(rType, Interface5::static_type()))
320
		return ::com::sun::star::uno::Any( &p5, rType );
320
		return ::com::sun::star::uno::Any( &p5, rType );
321
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface6 > *>(0))))
321
	else if (isDerivedFrom(rType, Interface6::static_type()))
322
		return ::com::sun::star::uno::Any( &p6, rType );
322
		return ::com::sun::star::uno::Any( &p6, rType );
323
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface7 > *>(0))))
323
	else if (isDerivedFrom(rType, Interface7::static_type()))
324
		return ::com::sun::star::uno::Any( &p7, rType );
324
		return ::com::sun::star::uno::Any( &p7, rType );
325
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface8 > *>(0))))
325
	else if (isDerivedFrom(rType, Interface8::static_type()))
326
		return ::com::sun::star::uno::Any( &p8, rType );
326
		return ::com::sun::star::uno::Any( &p8, rType );
327
	else
327
	else
328
		return ::com::sun::star::uno::Any();
328
		return ::com::sun::star::uno::Any();
Lines 348-370 Link Here
348
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
348
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
349
	Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9 )
349
	Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9 )
350
{
350
{
351
	if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface1 > *>(0))))
351
	if (isDerivedFrom(rType, Interface1::static_type()))
352
		return ::com::sun::star::uno::Any( &p1, rType );
352
		return ::com::sun::star::uno::Any( &p1, rType );
353
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface2 > *>(0))))
353
	else if (isDerivedFrom(rType, Interface2::static_type()))
354
		return ::com::sun::star::uno::Any( &p2, rType );
354
		return ::com::sun::star::uno::Any( &p2, rType );
355
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface3 > *>(0))))
355
	else if (isDerivedFrom(rType, Interface3::static_type()))
356
		return ::com::sun::star::uno::Any( &p3, rType );
356
		return ::com::sun::star::uno::Any( &p3, rType );
357
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface4 > *>(0))))
357
	else if (isDerivedFrom(rType, Interface4::static_type()))
358
		return ::com::sun::star::uno::Any( &p4, rType );
358
		return ::com::sun::star::uno::Any( &p4, rType );
359
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface5 > *>(0))))
359
	else if (isDerivedFrom(rType, Interface5::static_type()))
360
		return ::com::sun::star::uno::Any( &p5, rType );
360
		return ::com::sun::star::uno::Any( &p5, rType );
361
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface6 > *>(0))))
361
	else if (isDerivedFrom(rType, Interface6::static_type()))
362
		return ::com::sun::star::uno::Any( &p6, rType );
362
		return ::com::sun::star::uno::Any( &p6, rType );
363
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface7 > *>(0))))
363
	else if (isDerivedFrom(rType, Interface7::static_type()))
364
		return ::com::sun::star::uno::Any( &p7, rType );
364
		return ::com::sun::star::uno::Any( &p7, rType );
365
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface8 > *>(0))))
365
	else if (isDerivedFrom(rType, Interface8::static_type()))
366
		return ::com::sun::star::uno::Any( &p8, rType );
366
		return ::com::sun::star::uno::Any( &p8, rType );
367
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface9 > *>(0))))
367
	else if (isDerivedFrom(rType, Interface9::static_type()))
368
		return ::com::sun::star::uno::Any( &p9, rType );
368
		return ::com::sun::star::uno::Any( &p9, rType );
369
	else
369
	else
370
		return ::com::sun::star::uno::Any();
370
		return ::com::sun::star::uno::Any();
Lines 391-415 Link Here
391
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
391
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
392
	Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9, Interface10 * p10 )
392
	Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9, Interface10 * p10 )
393
{
393
{
394
	if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface1 > *>(0))))
394
	if (isDerivedFrom(rType, Interface1::static_type()))
395
		return ::com::sun::star::uno::Any( &p1, rType );
395
		return ::com::sun::star::uno::Any( &p1, rType );
396
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface2 > *>(0))))
396
	else if (isDerivedFrom(rType, Interface2::static_type()))
397
		return ::com::sun::star::uno::Any( &p2, rType );
397
		return ::com::sun::star::uno::Any( &p2, rType );
398
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface3 > *>(0))))
398
	else if (isDerivedFrom(rType, Interface3::static_type()))
399
		return ::com::sun::star::uno::Any( &p3, rType );
399
		return ::com::sun::star::uno::Any( &p3, rType );
400
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface4 > *>(0))))
400
	else if (isDerivedFrom(rType, Interface4::static_type()))
401
		return ::com::sun::star::uno::Any( &p4, rType );
401
		return ::com::sun::star::uno::Any( &p4, rType );
402
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface5 > *>(0))))
402
	else if (isDerivedFrom(rType, Interface5::static_type()))
403
		return ::com::sun::star::uno::Any( &p5, rType );
403
		return ::com::sun::star::uno::Any( &p5, rType );
404
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface6 > *>(0))))
404
	else if (isDerivedFrom(rType, Interface6::static_type()))
405
		return ::com::sun::star::uno::Any( &p6, rType );
405
		return ::com::sun::star::uno::Any( &p6, rType );
406
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface7 > *>(0))))
406
	else if (isDerivedFrom(rType, Interface7::static_type()))
407
		return ::com::sun::star::uno::Any( &p7, rType );
407
		return ::com::sun::star::uno::Any( &p7, rType );
408
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface8 > *>(0))))
408
	else if (isDerivedFrom(rType, Interface8::static_type()))
409
		return ::com::sun::star::uno::Any( &p8, rType );
409
		return ::com::sun::star::uno::Any( &p8, rType );
410
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface9 > *>(0))))
410
	else if (isDerivedFrom(rType, Interface9::static_type()))
411
		return ::com::sun::star::uno::Any( &p9, rType );
411
		return ::com::sun::star::uno::Any( &p9, rType );
412
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface10 > *>(0))))
412
	else if (isDerivedFrom(rType, Interface10::static_type()))
413
		return ::com::sun::star::uno::Any( &p10, rType );
413
		return ::com::sun::star::uno::Any( &p10, rType );
414
	else
414
	else
415
		return ::com::sun::star::uno::Any();
415
		return ::com::sun::star::uno::Any();
Lines 439-465 Link Here
439
	Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9, Interface10 * p10,
439
	Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9, Interface10 * p10,
440
	Interface11 * p11 )
440
	Interface11 * p11 )
441
{
441
{
442
	if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface1 > *>(0))))
442
	if (isDerivedFrom(rType, Interface1::static_type()))
443
		return ::com::sun::star::uno::Any( &p1, rType );
443
		return ::com::sun::star::uno::Any( &p1, rType );
444
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface2 > *>(0))))
444
	else if (isDerivedFrom(rType, Interface2::static_type()))
445
		return ::com::sun::star::uno::Any( &p2, rType );
445
		return ::com::sun::star::uno::Any( &p2, rType );
446
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface3 > *>(0))))
446
	else if (isDerivedFrom(rType, Interface3::static_type()))
447
		return ::com::sun::star::uno::Any( &p3, rType );
447
		return ::com::sun::star::uno::Any( &p3, rType );
448
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface4 > *>(0))))
448
	else if (isDerivedFrom(rType, Interface4::static_type()))
449
		return ::com::sun::star::uno::Any( &p4, rType );
449
		return ::com::sun::star::uno::Any( &p4, rType );
450
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface5 > *>(0))))
450
	else if (isDerivedFrom(rType, Interface5::static_type()))
451
		return ::com::sun::star::uno::Any( &p5, rType );
451
		return ::com::sun::star::uno::Any( &p5, rType );
452
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface6 > *>(0))))
452
	else if (isDerivedFrom(rType, Interface6::static_type()))
453
		return ::com::sun::star::uno::Any( &p6, rType );
453
		return ::com::sun::star::uno::Any( &p6, rType );
454
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface7 > *>(0))))
454
	else if (isDerivedFrom(rType, Interface7::static_type()))
455
		return ::com::sun::star::uno::Any( &p7, rType );
455
		return ::com::sun::star::uno::Any( &p7, rType );
456
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface8 > *>(0))))
456
	else if (isDerivedFrom(rType, Interface8::static_type()))
457
		return ::com::sun::star::uno::Any( &p8, rType );
457
		return ::com::sun::star::uno::Any( &p8, rType );
458
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface9 > *>(0))))
458
	else if (isDerivedFrom(rType, Interface9::static_type()))
459
		return ::com::sun::star::uno::Any( &p9, rType );
459
		return ::com::sun::star::uno::Any( &p9, rType );
460
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface10 > *>(0))))
460
	else if (isDerivedFrom(rType, Interface10::static_type()))
461
		return ::com::sun::star::uno::Any( &p10, rType );
461
		return ::com::sun::star::uno::Any( &p10, rType );
462
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface11 > *>(0))))
462
	else if (isDerivedFrom(rType, Interface11::static_type()))
463
		return ::com::sun::star::uno::Any( &p11, rType );
463
		return ::com::sun::star::uno::Any( &p11, rType );
464
	else
464
	else
465
		return ::com::sun::star::uno::Any();
465
		return ::com::sun::star::uno::Any();
Lines 490-518 Link Here
490
	Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9, Interface10 * p10,
490
	Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9, Interface10 * p10,
491
	Interface11 * p11, Interface12 * p12 )
491
	Interface11 * p11, Interface12 * p12 )
492
{
492
{
493
	if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface1 > *>(0))))
493
	if (isDerivedFrom(rType, Interface1::static_type()))
494
		return ::com::sun::star::uno::Any( &p1, rType );
494
		return ::com::sun::star::uno::Any( &p1, rType );
495
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface2 > *>(0))))
495
	else if (isDerivedFrom(rType, Interface2::static_type()))
496
		return ::com::sun::star::uno::Any( &p2, rType );
496
		return ::com::sun::star::uno::Any( &p2, rType );
497
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface3 > *>(0))))
497
	else if (isDerivedFrom(rType, Interface3::static_type()))
498
		return ::com::sun::star::uno::Any( &p3, rType );
498
		return ::com::sun::star::uno::Any( &p3, rType );
499
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface4 > *>(0))))
499
	else if (isDerivedFrom(rType, Interface4::static_type()))
500
		return ::com::sun::star::uno::Any( &p4, rType );
500
		return ::com::sun::star::uno::Any( &p4, rType );
501
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface5 > *>(0))))
501
	else if (isDerivedFrom(rType, Interface5::static_type()))
502
		return ::com::sun::star::uno::Any( &p5, rType );
502
		return ::com::sun::star::uno::Any( &p5, rType );
503
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface6 > *>(0))))
503
	else if (isDerivedFrom(rType, Interface6::static_type()))
504
		return ::com::sun::star::uno::Any( &p6, rType );
504
		return ::com::sun::star::uno::Any( &p6, rType );
505
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface7 > *>(0))))
505
	else if (isDerivedFrom(rType, Interface7::static_type()))
506
		return ::com::sun::star::uno::Any( &p7, rType );
506
		return ::com::sun::star::uno::Any( &p7, rType );
507
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface8 > *>(0))))
507
	else if (isDerivedFrom(rType, Interface8::static_type()))
508
		return ::com::sun::star::uno::Any( &p8, rType );
508
		return ::com::sun::star::uno::Any( &p8, rType );
509
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface9 > *>(0))))
509
	else if (isDerivedFrom(rType, Interface9::static_type()))
510
		return ::com::sun::star::uno::Any( &p9, rType );
510
		return ::com::sun::star::uno::Any( &p9, rType );
511
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface10 > *>(0))))
511
	else if (isDerivedFrom(rType, Interface10::static_type()))
512
		return ::com::sun::star::uno::Any( &p10, rType );
512
		return ::com::sun::star::uno::Any( &p10, rType );
513
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface11 > *>(0))))
513
	else if (isDerivedFrom(rType, Interface11::static_type()))
514
		return ::com::sun::star::uno::Any( &p11, rType );
514
		return ::com::sun::star::uno::Any( &p11, rType );
515
	else if (isDerivedFrom(rType, ::getCppuType(static_cast<const ::com::sun::star::uno::Reference< Interface12 > *>(0))))
515
	else if (isDerivedFrom(rType, Interface12::static_type()))
516
		return ::com::sun::star::uno::Any( &p12, rType );
516
		return ::com::sun::star::uno::Any( &p12, rType );
517
	else
517
	else
518
		return ::com::sun::star::uno::Any();
518
		return ::com::sun::star::uno::Any();
(-)comphelper/inc/comphelper/broadcasthelper.hxx (-3 / +3 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: broadcasthelper.hxx,v $
3
 *  $RCSfile: broadcasthelper.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.3 $
5
 *  $Revision: 1.4 $
6
 *
6
 *
7
 *  last change: $Author: fs $ $Date: 2002/04/23 11:04:56 $
7
 *  last change: $Author: obo $ $Date: 2004/03/17 13:54:15 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 99-105 Link Here
99
	class OBaseMutex
99
	class OBaseMutex
100
	{
100
	{
101
	protected:
101
	protected:
102
		::osl::Mutex m_aMutex;
102
		mutable ::osl::Mutex m_aMutex;
103
	};
103
	};
104
}
104
}
105
#endif // _COMPHELPER_BROADCASTHELPER_HXX_
105
#endif // _COMPHELPER_BROADCASTHELPER_HXX_
(-)comphelper/inc/comphelper/extract.hxx (-3 / +3 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: extract.hxx,v $
3
 *  $RCSfile: extract.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.1 $
5
 *  $Revision: 1.1.200.1 $
6
 *
6
 *
7
 *  last change: $Author: dbo $ $Date: 2001/03/07 13:55:53 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 10:09:45 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 149-155 Link Here
149
template< typename E >
149
template< typename E >
150
inline ::com::sun::star::uno::Any SAL_CALL enum2any( E eEnum )
150
inline ::com::sun::star::uno::Any SAL_CALL enum2any( E eEnum )
151
{
151
{
152
	return ::com::sun::star::uno::Any( &eEnum, ::getCppuType((const E*)0) );
152
	return ::com::sun::star::uno::Any( &eEnum, getCppuType((const E*)0) );
153
}
153
}
154
154
155
/**
155
/**
(-)comphelper/inc/comphelper/proparrhlp.hxx (-3 / +3 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: proparrhlp.hxx,v $
3
 *  $RCSfile: proparrhlp.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.4 $
5
 *  $Revision: 1.5 $
6
 *
6
 *
7
 *  last change: $Author: hr $ $Date: 2003/03/19 15:58:31 $
7
 *  last change: $Author: rt $ $Date: 2003/10/06 16:01:18 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 175-180 Link Here
175
}
175
}
176
//... namespace comphelper ................................................
176
//... namespace comphelper ................................................
177
177
178
#endif _COMPHELPER_PROPERTY_ARRAY_HELPER_HXX_
178
#endif // _COMPHELPER_PROPERTY_ARRAY_HELPER_HXX_
179
179
180
180
(-)comphelper/inc/comphelper/property.hxx (-3 / +3 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: property.hxx,v $
3
 *  $RCSfile: property.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.4 $
5
 *  $Revision: 1.4.136.1 $
6
 *
6
 *
7
 *  last change: $Author: hr $ $Date: 2003/03/19 15:58:31 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 10:09:45 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 179-185 Link Here
179
template <class ENUMTYPE>
179
template <class ENUMTYPE>
180
sal_Bool tryPropertyValueEnum(staruno::Any& /*out*/_rConvertedValue, staruno::Any& /*out*/_rOldValue, const staruno::Any& _rValueToSet, const ENUMTYPE& _rCurrentValue)
180
sal_Bool tryPropertyValueEnum(staruno::Any& /*out*/_rConvertedValue, staruno::Any& /*out*/_rOldValue, const staruno::Any& _rValueToSet, const ENUMTYPE& _rCurrentValue)
181
{
181
{
182
	if (::getCppuType(&_rCurrentValue).getTypeClass() != staruno::TypeClass_ENUM)
182
	if (getCppuType(&_rCurrentValue).getTypeClass() != staruno::TypeClass_ENUM)
183
		return tryPropertyValue(_rConvertedValue, _rOldValue, _rValueToSet, _rCurrentValue);
183
		return tryPropertyValue(_rConvertedValue, _rOldValue, _rValueToSet, _rCurrentValue);
184
184
185
	sal_Bool bModified(sal_False);
185
	sal_Bool bModified(sal_False);
(-)comphelper/inc/comphelper/servicehelper.hxx (-3 / +3 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: servicehelper.hxx,v $
3
 *  $RCSfile: servicehelper.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.1 $
5
 *  $Revision: 1.2 $
6
 *
6
 *
7
 *  last change: $Author: cl $ $Date: 2001/03/14 15:52:37 $
7
 *  last change: $Author: rt $ $Date: 2003/10/06 16:01:32 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 135-139 Link Here
135
}
135
}
136
136
137
137
138
#endif _UTL_SERVICEHELPER_HXX_
138
#endif // _UTL_SERVICEHELPER_HXX_
139
139
(-)configmgr/source/inc/pointer.hxx.orig (-3 / +3 lines)
Lines 93-105 Link Here
93
        public:
93
        public:
94
            typedef AddressType RawAddress;
94
            typedef AddressType RawAddress;
95
95
96
            Pointer() : m_value(NULL) {}
96
            Pointer() : m_value(0) {}
97
            explicit Pointer(AddressType p) : m_value(p) {}
97
            explicit Pointer(AddressType p) : m_value(p) {}
98
98
99
            RawAddress value() const { return m_value; }
99
            RawAddress value() const { return m_value; }
100
100
101
            bool isNull()   const { return m_value == NULL; }
101
            bool isNull()   const { return m_value == 0; }
102
            bool is()       const { return m_value != NULL; }
102
            bool is()       const { return m_value != 0; }
103
103
104
            operator Opaque_ const * () const { return reinterpret_cast<Opaque_ const *>(m_value); }
104
            operator Opaque_ const * () const { return reinterpret_cast<Opaque_ const *>(m_value); }
105
105
(-)configmgr/source/api2/apinodeupdate.hxx.orig (-2 / +2 lines)
Lines 207-219 Link Here
207
        }
207
        }
208
208
209
		template <class Access>
209
		template <class Access>
210
        GuardedNodeUpdate<Access>::Updater GuardedNodeUpdate<Access>::getNodeUpdater() const
210
        typename GuardedNodeUpdate<Access>::Updater GuardedNodeUpdate<Access>::getNodeUpdater() const
211
        {
211
        {
212
            return get().getNodeUpdater(this->getDataAccessor());
212
            return get().getNodeUpdater(this->getDataAccessor());
213
        }
213
        }
214
214
215
		template <class Access>
215
		template <class Access>
216
        GuardedNodeUpdate<Access>::Defaulter GuardedNodeUpdate<Access>::getNodeDefaulter() const
216
        typename GuardedNodeUpdate<Access>::Defaulter GuardedNodeUpdate<Access>::getNodeDefaulter() const
217
        {
217
        {
218
            return get().getNodeDefaulter(this->getDataAccessor());
218
            return get().getNodeDefaulter(this->getDataAccessor());
219
        }
219
        }
(-)configmgr/source/api2/listenercontainer.hxx.orig (-2 / +2 lines)
Lines 155-161 Link Here
155
				BasicContainerInfo() : pInterface(0), pContainer(0) {}
155
				BasicContainerInfo() : pInterface(0), pContainer(0) {}
156
			};
156
			};
157
			typedef std::vector<BasicContainerInfo>			BasicContainerHelperArray;
157
			typedef std::vector<BasicContainerInfo>			BasicContainerHelperArray;
158
			typedef BasicContainerHelperArray::size_type	Index;
158
			typedef typename BasicContainerHelperArray::size_type	Index;
159
159
160
			typedef Key_ Key;
160
			typedef Key_ Key;
161
            typedef typename KeyToIndex_::KeyFinder KeyFinder;
161
            typedef typename KeyToIndex_::KeyFinder KeyFinder;
Lines 647-653 Link Here
647
			KeyList aKeys;
647
			KeyList aKeys;
648
			if (m_aMapper.findKeysForIndex(_aFinder, nIndex,aKeys))
648
			if (m_aMapper.findKeysForIndex(_aFinder, nIndex,aKeys))
649
			{
649
			{
650
				for(KeyList::iterator it = aKeys.begin(); it != aKeys.end(); ++it)
650
				for(typename KeyList::iterator it = aKeys.begin(); it != aKeys.end(); ++it)
651
				{
651
				{
652
					if (ListenerContainer* pContainer = m_aSpecialHelper.aLC.getContainer(*it))
652
					if (ListenerContainer* pContainer = m_aSpecialHelper.aLC.getContainer(*it))
653
					{
653
					{
(-)cppuhelper/inc/cppuhelper/implbase1.hxx (-12 / +12 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: implbase1.hxx,v $
3
 *  $RCSfile: implbase1.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:36:53 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:53 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 112-119 Link Here
112
        1 +1, sal_False, sal_False,
112
        1 +1, sal_False, sal_False,
113
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
113
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
114
        {
114
        {
115
            { (::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 },
115
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper1< Ifc1 > *) 16) - 16 },
116
            { (::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 }
116
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper1< Ifc1 > *) 16) - 16 }
117
        }
117
        }
118
    };
118
    };
119
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
119
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 150-157 Link Here
150
        1 +1, sal_False, sal_False,
150
        1 +1, sal_False, sal_False,
151
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
151
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
152
        {
152
        {
153
            { (::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 },
153
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper1< Ifc1 > *) 16) - 16 },
154
            { (::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 }
154
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper1< Ifc1 > *) 16) - 16 }
155
        }
155
        }
156
    };
156
    };
157
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
157
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 195-202 Link Here
195
        1 +1, sal_False, sal_False,
195
        1 +1, sal_False, sal_False,
196
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
196
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
197
        {
197
        {
198
            { (::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 },
198
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper1< Ifc1 > *) 16) - 16 },
199
            { (::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 }
199
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper1< Ifc1 > *) 16) - 16 }
200
        }
200
        }
201
    };
201
    };
202
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
202
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 244-251 Link Here
244
        1 +1, sal_False, sal_False,
244
        1 +1, sal_False, sal_False,
245
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
245
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
246
        {
246
        {
247
            { (::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 },
247
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper1< BaseClass, Ifc1 > *) 16) - 16 },
248
            { (::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 }
248
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper1< BaseClass, Ifc1 > *) 16) - 16 }
249
        }
249
        }
250
    };
250
    };
251
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
251
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 295-302 Link Here
295
        1 +1, sal_False, sal_False,
295
        1 +1, sal_False, sal_False,
296
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
296
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
297
        {
297
        {
298
            { (::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 },
298
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper1< BaseClass, Ifc1 > *) 16) - 16 },
299
            { (::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 }
299
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper1< BaseClass, Ifc1 > *) 16) - 16 }
300
        }
300
        }
301
    };
301
    };
302
}
302
}
(-)cppuhelper/inc/cppuhelper/implbase2.hxx (-17 / +17 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: implbase2.hxx,v $
3
 *  $RCSfile: implbase2.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:39:01 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:54 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 112-120 Link Here
112
        2 +1, sal_False, sal_False,
112
        2 +1, sal_False, sal_False,
113
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
113
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
114
        {
114
        {
115
            { (::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 },
115
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
116
            { (::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 },
116
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
117
            { (::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 }
117
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }
118
        }
118
        }
119
    };
119
    };
120
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
120
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 151-159 Link Here
151
        2 +1, sal_False, sal_False,
151
        2 +1, sal_False, sal_False,
152
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
152
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
153
        {
153
        {
154
            { (::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 },
154
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
155
            { (::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 },
155
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
156
            { (::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 }
156
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }
157
        }
157
        }
158
    };
158
    };
159
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
159
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 197-205 Link Here
197
        2 +1, sal_False, sal_False,
197
        2 +1, sal_False, sal_False,
198
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
198
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
199
        {
199
        {
200
            { (::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 },
200
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
201
            { (::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 },
201
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
202
            { (::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 }
202
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }
203
        }
203
        }
204
    };
204
    };
205
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
205
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 247-255 Link Here
247
        2 +1, sal_False, sal_False,
247
        2 +1, sal_False, sal_False,
248
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
248
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
249
        {
249
        {
250
            { (::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 },
250
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 },
251
            { (::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 },
251
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 },
252
            { (::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 }
252
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 }
253
        }
253
        }
254
    };
254
    };
255
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
255
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 299-307 Link Here
299
        2 +1, sal_False, sal_False,
299
        2 +1, sal_False, sal_False,
300
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
300
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
301
        {
301
        {
302
            { (::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 },
302
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 },
303
            { (::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 },
303
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 },
304
            { (::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 }
304
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 }
305
        }
305
        }
306
    };
306
    };
307
}
307
}
(-)cppuhelper/inc/cppuhelper/implbase3.hxx (-22 / +22 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: implbase3.hxx,v $
3
 *  $RCSfile: implbase3.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:39:45 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:54 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 113-122 Link Here
113
        3 +1, sal_False, sal_False,
113
        3 +1, sal_False, sal_False,
114
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
114
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
115
        {
115
        {
116
            { (::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 },
116
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
117
            { (::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 },
117
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
118
            { (::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 },
118
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
119
            { (::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 }
119
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }
120
        }
120
        }
121
    };
121
    };
122
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
122
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 153-162 Link Here
153
        3 +1, sal_False, sal_False,
153
        3 +1, sal_False, sal_False,
154
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
154
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
155
        {
155
        {
156
            { (::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 },
156
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
157
            { (::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 },
157
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
158
            { (::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 },
158
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
159
            { (::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 }
159
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }
160
        }
160
        }
161
    };
161
    };
162
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
162
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 200-209 Link Here
200
        3 +1, sal_False, sal_False,
200
        3 +1, sal_False, sal_False,
201
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
201
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
202
        {
202
        {
203
            { (::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 },
203
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
204
            { (::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 },
204
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
205
            { (::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 },
205
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
206
            { (::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 }
206
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }
207
        }
207
        }
208
    };
208
    };
209
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
209
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 251-260 Link Here
251
        3 +1, sal_False, sal_False,
251
        3 +1, sal_False, sal_False,
252
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
252
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
253
        {
253
        {
254
            { (::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 },
254
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
255
            { (::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 },
255
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
256
            { (::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 },
256
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
257
            { (::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 }
257
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 }
258
        }
258
        }
259
    };
259
    };
260
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
260
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 304-313 Link Here
304
        3 +1, sal_False, sal_False,
304
        3 +1, sal_False, sal_False,
305
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
305
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
306
        {
306
        {
307
            { (::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 },
307
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
308
            { (::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 },
308
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
309
            { (::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 },
309
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
310
            { (::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 }
310
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper3< BaseClass, Ifc1, Ifc2, Ifc3 > *) 16) - 16 }
311
        }
311
        }
312
    };
312
    };
313
}
313
}
(-)cppuhelper/inc/cppuhelper/implbase4.hxx (-27 / +27 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: implbase4.hxx,v $
3
 *  $RCSfile: implbase4.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:40:19 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:54 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 113-123 Link Here
113
        4 +1, sal_False, sal_False,
113
        4 +1, sal_False, sal_False,
114
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
114
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
115
        {
115
        {
116
            { (::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 },
116
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
117
            { (::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 },
117
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
118
            { (::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 },
118
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
119
            { (::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 },
119
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
120
            { (::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 }
120
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }
121
        }
121
        }
122
    };
122
    };
123
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
123
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 154-164 Link Here
154
        4 +1, sal_False, sal_False,
154
        4 +1, sal_False, sal_False,
155
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
155
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
156
        {
156
        {
157
            { (::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 },
157
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
158
            { (::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 },
158
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
159
            { (::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 },
159
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
160
            { (::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 },
160
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
161
            { (::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 }
161
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }
162
        }
162
        }
163
    };
163
    };
164
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
164
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 202-212 Link Here
202
        4 +1, sal_False, sal_False,
202
        4 +1, sal_False, sal_False,
203
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
203
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
204
        {
204
        {
205
            { (::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 },
205
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
206
            { (::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 },
206
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
207
            { (::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 },
207
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
208
            { (::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 },
208
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
209
            { (::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 }
209
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }
210
        }
210
        }
211
    };
211
    };
212
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
212
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 254-264 Link Here
254
        4 +1, sal_False, sal_False,
254
        4 +1, sal_False, sal_False,
255
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
255
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
256
        {
256
        {
257
            { (::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 },
257
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
258
            { (::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 },
258
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
259
            { (::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 },
259
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
260
            { (::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 },
260
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
261
            { (::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 }
261
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }
262
        }
262
        }
263
    };
263
    };
264
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
264
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 308-318 Link Here
308
        4 +1, sal_False, sal_False,
308
        4 +1, sal_False, sal_False,
309
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
309
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
310
        {
310
        {
311
            { (::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 },
311
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
312
            { (::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 },
312
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
313
            { (::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 },
313
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
314
            { (::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 },
314
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
315
            { (::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 }
315
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper4< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }
316
        }
316
        }
317
    };
317
    };
318
}
318
}
(-)cppuhelper/inc/cppuhelper/implbase5.hxx (-32 / +32 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: implbase5.hxx,v $
3
 *  $RCSfile: implbase5.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:40:53 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:54 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 114-125 Link Here
114
        5 +1, sal_False, sal_False,
114
        5 +1, sal_False, sal_False,
115
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
115
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
        {
116
        {
117
            { (::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 },
117
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
118
            { (::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 },
118
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
119
            { (::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 },
119
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
120
            { (::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 },
120
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
121
            { (::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 },
121
            { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
122
            { (::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 }
122
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }
123
        }
123
        }
124
    };
124
    };
125
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
125
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 156-167 Link Here
156
        5 +1, sal_False, sal_False,
156
        5 +1, sal_False, sal_False,
157
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
157
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
158
        {
158
        {
159
            { (::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 },
159
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
160
            { (::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 },
160
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
161
            { (::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 },
161
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
162
            { (::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 },
162
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
163
            { (::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 },
163
            { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
164
            { (::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 }
164
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }
165
        }
165
        }
166
    };
166
    };
167
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
167
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 205-216 Link Here
205
        5 +1, sal_False, sal_False,
205
        5 +1, sal_False, sal_False,
206
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
206
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
207
        {
207
        {
208
            { (::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 },
208
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
209
            { (::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 },
209
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
210
            { (::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 },
210
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
211
            { (::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 },
211
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
212
            { (::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 },
212
            { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
213
            { (::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 }
213
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }
214
        }
214
        }
215
    };
215
    };
216
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
216
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 258-269 Link Here
258
        5 +1, sal_False, sal_False,
258
        5 +1, sal_False, sal_False,
259
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
259
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
260
        {
260
        {
261
            { (::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 },
261
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
262
            { (::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 },
262
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
263
            { (::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 },
263
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
264
            { (::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 },
264
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
265
            { (::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 },
265
            { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
266
            { (::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 }
266
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }
267
        }
267
        }
268
    };
268
    };
269
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
269
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 313-324 Link Here
313
        5 +1, sal_False, sal_False,
313
        5 +1, sal_False, sal_False,
314
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
314
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
315
        {
315
        {
316
            { (::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 },
316
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
317
            { (::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 },
317
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
318
            { (::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 },
318
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
319
            { (::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 },
319
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
320
            { (::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 },
320
            { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
321
            { (::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 }
321
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper5< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }
322
        }
322
        }
323
    };
323
    };
324
}
324
}
(-)cppuhelper/inc/cppuhelper/implbase6.hxx (-37 / +37 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: implbase6.hxx,v $
3
 *  $RCSfile: implbase6.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:41:20 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:55 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 114-126 Link Here
114
        6 +1, sal_False, sal_False,
114
        6 +1, sal_False, sal_False,
115
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
115
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
        {
116
        {
117
            { (::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 },
117
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
118
            { (::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 },
118
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
119
            { (::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 },
119
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
120
            { (::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 },
120
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
121
            { (::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 },
121
            { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
122
            { (::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 },
122
            { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
123
            { (::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 }
123
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }
124
        }
124
        }
125
    };
125
    };
126
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
126
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 157-169 Link Here
157
        6 +1, sal_False, sal_False,
157
        6 +1, sal_False, sal_False,
158
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
158
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
159
        {
159
        {
160
            { (::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 },
160
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
161
            { (::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 },
161
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
162
            { (::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 },
162
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
163
            { (::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 },
163
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
164
            { (::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 },
164
            { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
165
            { (::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 },
165
            { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
166
            { (::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 }
166
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }
167
        }
167
        }
168
    };
168
    };
169
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
169
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 207-219 Link Here
207
        6 +1, sal_False, sal_False,
207
        6 +1, sal_False, sal_False,
208
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
208
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
209
        {
209
        {
210
            { (::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 },
210
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
211
            { (::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 },
211
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
212
            { (::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 },
212
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
213
            { (::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 },
213
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
214
            { (::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 },
214
            { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
215
            { (::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 },
215
            { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
216
            { (::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 }
216
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }
217
        }
217
        }
218
    };
218
    };
219
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
219
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 261-273 Link Here
261
        6 +1, sal_False, sal_False,
261
        6 +1, sal_False, sal_False,
262
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
262
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
263
        {
263
        {
264
            { (::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 },
264
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
265
            { (::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 },
265
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
266
            { (::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 },
266
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
267
            { (::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 },
267
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
268
            { (::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 },
268
            { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
269
            { (::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 },
269
            { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
270
            { (::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 }
270
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }
271
        }
271
        }
272
    };
272
    };
273
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
273
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 317-329 Link Here
317
        6 +1, sal_False, sal_False,
317
        6 +1, sal_False, sal_False,
318
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
318
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
319
        {
319
        {
320
            { (::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 },
320
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
321
            { (::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 },
321
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
322
            { (::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 },
322
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
323
            { (::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 },
323
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
324
            { (::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 },
324
            { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
325
            { (::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 },
325
            { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
326
            { (::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 }
326
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper6< BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }
327
        }
327
        }
328
    };
328
    };
329
}
329
}
(-)cppuhelper/inc/cppuhelper/implbase7.hxx (-12 / +12 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: implbase7.hxx,v $
3
 *  $RCSfile: implbase7.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:41:53 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:55 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 115-122 Link Here
115
        7 +1, sal_False, sal_False,
115
        7 +1, sal_False, sal_False,
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
            {
117
            {
118
                { (::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 },
118
                { 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 },
119
                    { (::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 }
119
                    { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }
120
            }
120
            }
121
    };
121
    };
122
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
122
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 153-160 Link Here
153
        7 +1, sal_False, sal_False,
153
        7 +1, sal_False, sal_False,
154
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
154
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
155
            {
155
            {
156
                { (::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 },
156
                { 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 },
157
                    { (::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 }
157
                    { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }
158
            }
158
            }
159
    };
159
    };
160
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
160
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 198-205 Link Here
198
        7 +1, sal_False, sal_False,
198
        7 +1, sal_False, sal_False,
199
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
199
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
200
            {
200
            {
201
                { (::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 },
201
                { 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 },
202
                    { (::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 }
202
                    { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }
203
            }
203
            }
204
    };
204
    };
205
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
205
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 247-254 Link Here
247
        7 +1, sal_False, sal_False,
247
        7 +1, sal_False, sal_False,
248
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
248
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
249
            {
249
            {
250
                { (::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 },
250
                { 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 },
251
                    { (::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 }
251
                    { ::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 }
252
            }
252
            }
253
    };
253
    };
254
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
254
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 298-305 Link Here
298
        7 +1, sal_False, sal_False,
298
        7 +1, sal_False, sal_False,
299
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
299
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
300
            {
300
            {
301
                { (::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 },
301
                { 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 },
302
                    { (::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 }
302
                    { ::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 }
303
            }
303
            }
304
    };
304
    };
305
}
305
}
(-)cppuhelper/inc/cppuhelper/implbase8.hxx (-12 / +12 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: implbase8.hxx,v $
3
 *  $RCSfile: implbase8.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:42:34 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:55 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 115-122 Link Here
115
        8 +1, sal_False, sal_False,
115
        8 +1, sal_False, sal_False,
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
            {
117
            {
118
                { (::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 },
118
                { 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 },
119
                    { (::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 }
119
                    { ::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 }
120
            }
120
            }
121
    };
121
    };
122
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
122
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 153-160 Link Here
153
        8 +1, sal_False, sal_False,
153
        8 +1, sal_False, sal_False,
154
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
154
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
155
            {
155
            {
156
                { (::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 },
156
                { 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 },
157
                    { (::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 }
157
                    { ::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 }
158
            }
158
            }
159
    };
159
    };
160
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
160
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 198-205 Link Here
198
        8 +1, sal_False, sal_False,
198
        8 +1, sal_False, sal_False,
199
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
199
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
200
            {
200
            {
201
                { (::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 },
201
                { 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 },
202
                    { (::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 }
202
                    { ::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 }
203
            }
203
            }
204
    };
204
    };
205
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
205
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 247-254 Link Here
247
        8 +1, sal_False, sal_False,
247
        8 +1, sal_False, sal_False,
248
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
248
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
249
            {
249
            {
250
                { (::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 },
250
                { 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 },
251
                    { (::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 }
251
                    { ::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 }
252
            }
252
            }
253
    };
253
    };
254
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
254
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 298-305 Link Here
298
        8 +1, sal_False, sal_False,
298
        8 +1, sal_False, sal_False,
299
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
299
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
300
            {
300
            {
301
                { (::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 },
301
                { 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 },
302
                    { (::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 }
302
                    { ::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 }
303
            }
303
            }
304
    };
304
    };
305
}
305
}
(-)cppuhelper/inc/cppuhelper/implbase9.hxx (-12 / +12 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: implbase9.hxx,v $
3
 *  $RCSfile: implbase9.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:43:15 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:55 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 116-123 Link Here
116
        9 +1, sal_False, sal_False,
116
        9 +1, sal_False, sal_False,
117
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
118
            {
118
            {
119
                { (::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 },
119
                { 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 },
120
                    { (::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 }
120
                    { ::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 }
121
            }
121
            }
122
    };
122
    };
123
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
123
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 154-161 Link Here
154
        9 +1, sal_False, sal_False,
154
        9 +1, sal_False, sal_False,
155
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
155
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
156
            {
156
            {
157
                { (::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 },
157
                { 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 },
158
                    { (::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 }
158
                    { ::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 }
159
            }
159
            }
160
    };
160
    };
161
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
161
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 199-206 Link Here
199
        9 +1, sal_False, sal_False,
199
        9 +1, sal_False, sal_False,
200
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
200
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
201
            {
201
            {
202
                { (::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 },
202
                { 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 },
203
                    { (::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 }
203
                    { ::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 }
204
            }
204
            }
205
    };
205
    };
206
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
206
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 248-255 Link Here
248
        9 +1, sal_False, sal_False,
248
        9 +1, sal_False, sal_False,
249
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
249
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
250
            {
250
            {
251
                { (::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 },
251
                { 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 },
252
                    { (::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 }
252
                    { ::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 }
253
            }
253
            }
254
    };
254
    };
255
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
255
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 299-306 Link Here
299
        9 +1, sal_False, sal_False,
299
        9 +1, sal_False, sal_False,
300
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
300
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
301
            {
301
            {
302
                { (::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 },
302
                { 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 },
303
                    { (::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 }
303
                    { ::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 }
304
            }
304
            }
305
    };
305
    };
306
}
306
}
(-)cppuhelper/inc/cppuhelper/implbase10.hxx (-12 / +12 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: implbase10.hxx,v $
3
 *  $RCSfile: implbase10.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:37:26 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:53 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 116-123 Link Here
116
        10 +1, sal_False, sal_False,
116
        10 +1, sal_False, sal_False,
117
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
118
            {
118
            {
119
                { (::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 },
119
                { 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 },
120
                    { (::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 }
120
                    { ::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 }
121
            }
121
            }
122
    };
122
    };
123
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
123
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 154-161 Link Here
154
        10 +1, sal_False, sal_False,
154
        10 +1, sal_False, sal_False,
155
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
155
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
156
            {
156
            {
157
                { (::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 },
157
                { 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 },
158
                    { (::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 }
158
                    { ::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 }
159
            }
159
            }
160
    };
160
    };
161
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
161
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 199-206 Link Here
199
        10 +1, sal_False, sal_False,
199
        10 +1, sal_False, sal_False,
200
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
200
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
201
            {
201
            {
202
                { (::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 },
202
                { 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 },
203
                    { (::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 }
203
                    { ::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 }
204
            }
204
            }
205
    };
205
    };
206
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
206
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 248-255 Link Here
248
        10 +1, sal_False, sal_False,
248
        10 +1, sal_False, sal_False,
249
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
249
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
250
            {
250
            {
251
                { (::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 },
251
                { 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 },
252
                    { (::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 }
252
                    { ::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 }
253
            }
253
            }
254
    };
254
    };
255
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
255
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 299-306 Link Here
299
        10 +1, sal_False, sal_False,
299
        10 +1, sal_False, sal_False,
300
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
300
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
301
            {
301
            {
302
                { (::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 },
302
                { 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 },
303
                    { (::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 }
303
                    { ::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 }
304
            }
304
            }
305
    };
305
    };
306
}
306
}
(-)cppuhelper/inc/cppuhelper/implbase11.hxx (-12 / +12 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: implbase11.hxx,v $
3
 *  $RCSfile: implbase11.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:37:59 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:53 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 117-124 Link Here
117
        11 +1, sal_False, sal_False,
117
        11 +1, sal_False, sal_False,
118
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
118
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
119
            {
119
            {
120
                { (::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 },
120
                { 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 },
121
                    { (::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 }
121
                    { ::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 }
122
            }
122
            }
123
    };
123
    };
124
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
124
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 155-162 Link Here
155
        11 +1, sal_False, sal_False,
155
        11 +1, sal_False, sal_False,
156
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
156
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
157
            {
157
            {
158
                { (::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 },
158
                { 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 },
159
                    { (::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 }
159
                    { ::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 }
160
            }
160
            }
161
    };
161
    };
162
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
162
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 200-207 Link Here
200
        11 +1, sal_False, sal_False,
200
        11 +1, sal_False, sal_False,
201
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
201
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
202
            {
202
            {
203
                { (::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 },
203
                { 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 },
204
                    { (::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 }
204
                    { ::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 }
205
            }
205
            }
206
    };
206
    };
207
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
207
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 249-256 Link Here
249
        11 +1, sal_False, sal_False,
249
        11 +1, sal_False, sal_False,
250
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
250
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
251
            {
251
            {
252
                { (::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 },
252
                { 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 },
253
                    { (::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 }
253
                    { ::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 }
254
            }
254
            }
255
    };
255
    };
256
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
256
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 300-307 Link Here
300
        11 +1, sal_False, sal_False,
300
        11 +1, sal_False, sal_False,
301
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
301
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
302
            {
302
            {
303
                { (::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 },
303
                { 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 },
304
                    { (::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 }
304
                    { ::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 }
305
            }
305
            }
306
    };
306
    };
307
}
307
}
(-)cppuhelper/inc/cppuhelper/implbase12.hxx (-12 / +12 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: implbase12.hxx,v $
3
 *  $RCSfile: implbase12.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:38:27 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:53 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 117-124 Link Here
117
        12 +1, sal_False, sal_False,
117
        12 +1, sal_False, sal_False,
118
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
118
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
119
            {
119
            {
120
                { (::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 },
120
                { 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 },
121
                    { (::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 }
121
                    { ::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 }
122
            }
122
            }
123
    };
123
    };
124
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
124
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 155-162 Link Here
155
        12 +1, sal_False, sal_False,
155
        12 +1, sal_False, sal_False,
156
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
156
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
157
            {
157
            {
158
                { (::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 },
158
                { 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 },
159
                    { (::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 }
159
                    { ::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 }
160
            }
160
            }
161
    };
161
    };
162
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
162
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 200-207 Link Here
200
        12 +1, sal_False, sal_False,
200
        12 +1, sal_False, sal_False,
201
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
201
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
202
            {
202
            {
203
                { (::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 },
203
                { 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 },
204
                    { (::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 }
204
                    { ::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 }
205
            }
205
            }
206
    };
206
    };
207
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
207
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 249-256 Link Here
249
        12 +1, sal_False, sal_False,
249
        12 +1, sal_False, sal_False,
250
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
250
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
251
            {
251
            {
252
                { (::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 },
252
                { 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 },
253
                    { (::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 }
253
                    { ::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 }
254
            }
254
            }
255
    };
255
    };
256
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
256
    /** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
Lines 300-307 Link Here
300
        12 +1, sal_False, sal_False,
300
        12 +1, sal_False, sal_False,
301
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
301
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
302
            {
302
            {
303
                { (::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 },
303
                { 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 },
304
                    { (::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 }
304
                    { ::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 }
305
            }
305
            }
306
    };
306
    };
307
}
307
}
(-)cppuhelper/inc/cppuhelper/compbase1.hxx (-6 / +6 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: compbase1.hxx,v $
3
 *  $RCSfile: compbase1.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:29:53 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:51 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 115-122 Link Here
115
        1 +1, sal_False, sal_False,
115
        1 +1, sal_False, sal_False,
116
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
        {
117
        {
118
            { (::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 },
118
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper1< Ifc1 > *) 16) - 16 },
119
            { (::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 }
119
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper1< Ifc1 > *) 16) - 16 }
120
        }
120
        }
121
    };
121
    };
122
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
122
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
Lines 163-170 Link Here
163
        1 +1, sal_False, sal_False,
163
        1 +1, sal_False, sal_False,
164
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
164
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
165
        {
165
        {
166
            { (::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 },
166
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper1< Ifc1 > *) 16) - 16 },
167
            { (::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 }
167
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper1< Ifc1 > *) 16) - 16 }
168
        }
168
        }
169
    };
169
    };
170
}
170
}
(-)cppuhelper/inc/cppuhelper/compbase2.hxx (-8 / +8 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: compbase2.hxx,v $
3
 *  $RCSfile: compbase2.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:32:04 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:52 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 115-123 Link Here
115
        2 +1, sal_False, sal_False,
115
        2 +1, sal_False, sal_False,
116
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
        {
117
        {
118
            { (::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 },
118
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
119
            { (::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 },
119
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
120
            { (::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 }
120
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }
121
        }
121
        }
122
    };
122
    };
123
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
123
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
Lines 164-172 Link Here
164
        2 +1, sal_False, sal_False,
164
        2 +1, sal_False, sal_False,
165
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
165
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
166
        {
166
        {
167
            { (::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 },
167
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
168
            { (::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 },
168
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
169
            { (::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 }
169
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }
170
        }
170
        }
171
    };
171
    };
172
}
172
}
(-)cppuhelper/inc/cppuhelper/compbase3.hxx (-10 / +10 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: compbase3.hxx,v $
3
 *  $RCSfile: compbase3.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:32:42 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:52 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 115-124 Link Here
115
        3 +1, sal_False, sal_False,
115
        3 +1, sal_False, sal_False,
116
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
        {
117
        {
118
            { (::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 },
118
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
119
            { (::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 },
119
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
120
            { (::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 },
120
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
121
            { (::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 }
121
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }
122
        }
122
        }
123
    };
123
    };
124
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
124
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
Lines 165-174 Link Here
165
        3 +1, sal_False, sal_False,
165
        3 +1, sal_False, sal_False,
166
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
166
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
167
        {
167
        {
168
            { (::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 },
168
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
169
            { (::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 },
169
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
170
            { (::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 },
170
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 },
171
            { (::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 }
171
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper3< Ifc1, Ifc2, Ifc3 > *) 16) - 16 }
172
        }
172
        }
173
    };
173
    };
174
}
174
}
(-)cppuhelper/inc/cppuhelper/compbase4.hxx (-12 / +12 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: compbase4.hxx,v $
3
 *  $RCSfile: compbase4.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:33:03 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:52 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 115-125 Link Here
115
        4 +1, sal_False, sal_False,
115
        4 +1, sal_False, sal_False,
116
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
        {
117
        {
118
            { (::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 },
118
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
119
            { (::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 },
119
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
120
            { (::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 },
120
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
121
            { (::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 },
121
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
122
            { (::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 }
122
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }
123
        }
123
        }
124
    };
124
    };
125
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
125
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
Lines 166-176 Link Here
166
        4 +1, sal_False, sal_False,
166
        4 +1, sal_False, sal_False,
167
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
167
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
168
        {
168
        {
169
            { (::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 },
169
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
170
            { (::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 },
170
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
171
            { (::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 },
171
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
172
            { (::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 },
172
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 },
173
            { (::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 }
173
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper4< Ifc1, Ifc2, Ifc3, Ifc4 > *) 16) - 16 }
174
        }
174
        }
175
    };
175
    };
176
}
176
}
(-)cppuhelper/inc/cppuhelper/compbase5.hxx (-14 / +14 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: compbase5.hxx,v $
3
 *  $RCSfile: compbase5.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:33:35 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:52 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 115-126 Link Here
115
        5 +1, sal_False, sal_False,
115
        5 +1, sal_False, sal_False,
116
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
        {
117
        {
118
            { (::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 },
118
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
119
            { (::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 },
119
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
120
            { (::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 },
120
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
121
            { (::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 },
121
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
122
            { (::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 },
122
            { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
123
            { (::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 }
123
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }
124
        }
124
        }
125
    };
125
    };
126
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
126
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
Lines 167-178 Link Here
167
        5 +1, sal_False, sal_False,
167
        5 +1, sal_False, sal_False,
168
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
168
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
169
        {
169
        {
170
            { (::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 },
170
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
171
            { (::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 },
171
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
172
            { (::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 },
172
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
173
            { (::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 },
173
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
174
            { (::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 },
174
            { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 },
175
            { (::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 }
175
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper5< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5 > *) 16) - 16 }
176
        }
176
        }
177
    };
177
    };
178
}
178
}
(-)cppuhelper/inc/cppuhelper/compbase6.hxx (-16 / +16 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: compbase6.hxx,v $
3
 *  $RCSfile: compbase6.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:34:19 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:52 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 115-127 Link Here
115
        6 +1, sal_False, sal_False,
115
        6 +1, sal_False, sal_False,
116
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
        {
117
        {
118
            { (::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 },
118
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
119
            { (::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 },
119
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
120
            { (::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 },
120
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
121
            { (::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 },
121
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
122
            { (::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 },
122
            { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
123
            { (::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 },
123
            { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
124
            { (::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 }
124
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }
125
        }
125
        }
126
    };
126
    };
127
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
127
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
Lines 168-180 Link Here
168
        6 +1, sal_False, sal_False,
168
        6 +1, sal_False, sal_False,
169
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
169
        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
170
        {
170
        {
171
            { (::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 },
171
            { Ifc1::static_type, ((sal_Int32)(Ifc1 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
172
            { (::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 },
172
            { Ifc2::static_type, ((sal_Int32)(Ifc2 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
173
            { (::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 },
173
            { Ifc3::static_type, ((sal_Int32)(Ifc3 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
174
            { (::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 },
174
            { Ifc4::static_type, ((sal_Int32)(Ifc4 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
175
            { (::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 },
175
            { Ifc5::static_type, ((sal_Int32)(Ifc5 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
176
            { (::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 },
176
            { Ifc6::static_type, ((sal_Int32)(Ifc6 *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 },
177
            { (::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 }
177
            { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper6< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6 > *) 16) - 16 }
178
        }
178
        }
179
    };
179
    };
180
}
180
}
(-)cppuhelper/inc/cppuhelper/compbase7.hxx (-6 / +6 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: compbase7.hxx,v $
3
 *  $RCSfile: compbase7.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:34:56 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:52 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 115-122 Link Here
115
        7 +1, sal_False, sal_False,
115
        7 +1, sal_False, sal_False,
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
            {
117
            {
118
                { (::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 },
118
                { 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 },
119
                    { (::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 }
119
                    { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }
120
            }
120
            }
121
    };
121
    };
122
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
122
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
Lines 163-170 Link Here
163
        7 +1, sal_False, sal_False,
163
        7 +1, sal_False, sal_False,
164
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
164
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
165
            {
165
            {
166
                { (::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 },
166
                { 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 },
167
                    { (::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 }
167
                    { ::com::sun::star::lang::XTypeProvider::static_type, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggComponentImplHelper7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7 > *) 16) - 16 }
168
            }
168
            }
169
    };
169
    };
170
}
170
}
(-)cppuhelper/inc/cppuhelper/compbase8.hxx (-6 / +6 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: compbase8.hxx,v $
3
 *  $RCSfile: compbase8.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:35:27 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:53 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 115-122 Link Here
115
        8 +1, sal_False, sal_False,
115
        8 +1, sal_False, sal_False,
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
            {
117
            {
118
                { (::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 },
118
                { 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 },
119
                    { (::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 }
119
                    { ::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 }
120
            }
120
            }
121
    };
121
    };
122
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
122
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
Lines 163-170 Link Here
163
        8 +1, sal_False, sal_False,
163
        8 +1, sal_False, sal_False,
164
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
164
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
165
            {
165
            {
166
                { (::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 },
166
                { 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 },
167
                    { (::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 }
167
                    { ::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 }
168
            }
168
            }
169
    };
169
    };
170
}
170
}
(-)cppuhelper/inc/cppuhelper/compbase9.hxx (-6 / +6 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: compbase9.hxx,v $
3
 *  $RCSfile: compbase9.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:35:53 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:53 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 115-122 Link Here
115
        9 +1, sal_False, sal_False,
115
        9 +1, sal_False, sal_False,
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
            {
117
            {
118
                { (::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 },
118
                { 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 },
119
                    { (::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 }
119
                    { ::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 }
120
            }
120
            }
121
    };
121
    };
122
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
122
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
Lines 163-170 Link Here
163
        9 +1, sal_False, sal_False,
163
        9 +1, sal_False, sal_False,
164
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
164
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
165
            {
165
            {
166
                { (::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 },
166
                { 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 },
167
                    { (::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 }
167
                    { ::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 }
168
            }
168
            }
169
    };
169
    };
170
}
170
}
(-)cppuhelper/inc/cppuhelper/compbase10.hxx (-6 / +6 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: compbase10.hxx,v $
3
 *  $RCSfile: compbase10.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:30:23 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:51 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 115-122 Link Here
115
        10 +1, sal_False, sal_False,
115
        10 +1, sal_False, sal_False,
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
            {
117
            {
118
                { (::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 },
118
                { 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 },
119
                    { (::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 }
119
                    { ::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 }
120
            }
120
            }
121
    };
121
    };
122
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
122
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
Lines 163-170 Link Here
163
        10 +1, sal_False, sal_False,
163
        10 +1, sal_False, sal_False,
164
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
164
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
165
            {
165
            {
166
                { (::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 },
166
                { 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 },
167
                    { (::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 }
167
                    { ::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 }
168
            }
168
            }
169
    };
169
    };
170
}
170
}
(-)cppuhelper/inc/cppuhelper/compbase11.hxx (-6 / +6 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: compbase11.hxx,v $
3
 *  $RCSfile: compbase11.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:30:54 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:51 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 115-122 Link Here
115
        11 +1, sal_False, sal_False,
115
        11 +1, sal_False, sal_False,
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
            {
117
            {
118
                { (::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 },
118
                { 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 },
119
                    { (::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 }
119
                    { ::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 }
120
            }
120
            }
121
    };
121
    };
122
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
122
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
Lines 163-170 Link Here
163
        11 +1, sal_False, sal_False,
163
        11 +1, sal_False, sal_False,
164
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
164
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
165
            {
165
            {
166
                { (::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 },
166
                { 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 },
167
                    { (::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 }
167
                    { ::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 }
168
            }
168
            }
169
    };
169
    };
170
}
170
}
(-)cppuhelper/inc/cppuhelper/compbase12.hxx (-6 / +6 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: compbase12.hxx,v $
3
 *  $RCSfile: compbase12.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.8.6.1 $
5
 *  $Revision: 1.9.26.1 $
6
 *
6
 *
7
 *  last change: $Author: vg $ $Date: 2004/01/28 15:31:29 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:22:51 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 115-122 Link Here
115
        12 +1, sal_False, sal_False,
115
        12 +1, sal_False, sal_False,
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
116
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
117
            {
117
            {
118
                { (::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 },
118
                { 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 },
119
                    { (::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 }
119
                    { ::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 }
120
            }
120
            }
121
    };
121
    };
122
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
122
    /** Implementation helper supporting ::com::sun::star::lang::XTypeProvider and
Lines 163-170 Link Here
163
        12 +1, sal_False, sal_False,
163
        12 +1, sal_False, sal_False,
164
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
164
            { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
165
            {
165
            {
166
                { (::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 },
166
                { 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 },
167
                    { (::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 }
167
                    { ::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 }
168
            }
168
            }
169
    };
169
    };
170
}
170
}
(-)cppuhelper/inc/cppuhelper/queryinterface.hxx (-80 / +80 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: queryinterface.hxx,v $
3
 *  $RCSfile: queryinterface.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.4 $
5
 *  $Revision: 1.4.128.1 $
6
 *
6
 *
7
 *  last change: $Author: dbo $ $Date: 2001/11/09 13:49:15 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:38:07 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 92-98 Link Here
92
	Interface1 * p1 )
92
	Interface1 * p1 )
93
	SAL_THROW( () )
93
	SAL_THROW( () )
94
{
94
{
95
	if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 ))
95
	if (rType == Interface1::static_type())
96
		return ::com::sun::star::uno::Any( &p1, rType );
96
		return ::com::sun::star::uno::Any( &p1, rType );
97
	else
97
	else
98
		return ::com::sun::star::uno::Any();
98
		return ::com::sun::star::uno::Any();
Lines 112-120 Link Here
112
	Interface1 * p1, Interface2 * p2 )
112
	Interface1 * p1, Interface2 * p2 )
113
	SAL_THROW( () )
113
	SAL_THROW( () )
114
{
114
{
115
	if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 ))
115
	if (rType == Interface1::static_type())
116
		return ::com::sun::star::uno::Any( &p1, rType );
116
		return ::com::sun::star::uno::Any( &p1, rType );
117
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 ))
117
	else if (rType == Interface2::static_type())
118
		return ::com::sun::star::uno::Any( &p2, rType );
118
		return ::com::sun::star::uno::Any( &p2, rType );
119
	else
119
	else
120
		return ::com::sun::star::uno::Any();
120
		return ::com::sun::star::uno::Any();
Lines 136-146 Link Here
136
	Interface1 * p1, Interface2 * p2, Interface3 * p3 )
136
	Interface1 * p1, Interface2 * p2, Interface3 * p3 )
137
	SAL_THROW( () )
137
	SAL_THROW( () )
138
{
138
{
139
	if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 ))
139
	if (rType == Interface1::static_type())
140
		return ::com::sun::star::uno::Any( &p1, rType );
140
		return ::com::sun::star::uno::Any( &p1, rType );
141
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 ))
141
	else if (rType == Interface2::static_type())
142
		return ::com::sun::star::uno::Any( &p2, rType );
142
		return ::com::sun::star::uno::Any( &p2, rType );
143
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 ))
143
	else if (rType == Interface3::static_type())
144
		return ::com::sun::star::uno::Any( &p3, rType );
144
		return ::com::sun::star::uno::Any( &p3, rType );
145
	else
145
	else
146
		return ::com::sun::star::uno::Any();
146
		return ::com::sun::star::uno::Any();
Lines 164-176 Link Here
164
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4 )
164
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4 )
165
	SAL_THROW( () )
165
	SAL_THROW( () )
166
{
166
{
167
	if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 ))
167
	if (rType == Interface1::static_type())
168
		return ::com::sun::star::uno::Any( &p1, rType );
168
		return ::com::sun::star::uno::Any( &p1, rType );
169
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 ))
169
	else if (rType == Interface2::static_type())
170
		return ::com::sun::star::uno::Any( &p2, rType );
170
		return ::com::sun::star::uno::Any( &p2, rType );
171
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 ))
171
	else if (rType == Interface3::static_type())
172
		return ::com::sun::star::uno::Any( &p3, rType );
172
		return ::com::sun::star::uno::Any( &p3, rType );
173
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 ))
173
	else if (rType == Interface4::static_type())
174
		return ::com::sun::star::uno::Any( &p4, rType );
174
		return ::com::sun::star::uno::Any( &p4, rType );
175
	else
175
	else
176
		return ::com::sun::star::uno::Any();
176
		return ::com::sun::star::uno::Any();
Lines 196-210 Link Here
196
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5 )
196
	Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5 )
197
	SAL_THROW( () )
197
	SAL_THROW( () )
198
{
198
{
199
	if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 ))
199
	if (rType == Interface1::static_type())
200
		return ::com::sun::star::uno::Any( &p1, rType );
200
		return ::com::sun::star::uno::Any( &p1, rType );
201
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 ))
201
	else if (rType == Interface2::static_type())
202
		return ::com::sun::star::uno::Any( &p2, rType );
202
		return ::com::sun::star::uno::Any( &p2, rType );
203
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 ))
203
	else if (rType == Interface3::static_type())
204
		return ::com::sun::star::uno::Any( &p3, rType );
204
		return ::com::sun::star::uno::Any( &p3, rType );
205
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 ))
205
	else if (rType == Interface4::static_type())
206
		return ::com::sun::star::uno::Any( &p4, rType );
206
		return ::com::sun::star::uno::Any( &p4, rType );
207
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 ))
207
	else if (rType == Interface5::static_type())
208
		return ::com::sun::star::uno::Any( &p5, rType );
208
		return ::com::sun::star::uno::Any( &p5, rType );
209
	else
209
	else
210
		return ::com::sun::star::uno::Any();
210
		return ::com::sun::star::uno::Any();
Lines 234-250 Link Here
234
	Interface6 * p6 )
234
	Interface6 * p6 )
235
	SAL_THROW( () )
235
	SAL_THROW( () )
236
{
236
{
237
	if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 ))
237
	if (rType == Interface1::static_type())
238
		return ::com::sun::star::uno::Any( &p1, rType );
238
		return ::com::sun::star::uno::Any( &p1, rType );
239
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 ))
239
	else if (rType == Interface2::static_type())
240
		return ::com::sun::star::uno::Any( &p2, rType );
240
		return ::com::sun::star::uno::Any( &p2, rType );
241
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 ))
241
	else if (rType == Interface3::static_type())
242
		return ::com::sun::star::uno::Any( &p3, rType );
242
		return ::com::sun::star::uno::Any( &p3, rType );
243
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 ))
243
	else if (rType == Interface4::static_type())
244
		return ::com::sun::star::uno::Any( &p4, rType );
244
		return ::com::sun::star::uno::Any( &p4, rType );
245
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 ))
245
	else if (rType == Interface5::static_type())
246
		return ::com::sun::star::uno::Any( &p5, rType );
246
		return ::com::sun::star::uno::Any( &p5, rType );
247
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *)0 ))
247
	else if (rType == Interface6::static_type())
248
		return ::com::sun::star::uno::Any( &p6, rType );
248
		return ::com::sun::star::uno::Any( &p6, rType );
249
	else
249
	else
250
		return ::com::sun::star::uno::Any();
250
		return ::com::sun::star::uno::Any();
Lines 276-294 Link Here
276
	Interface6 * p6, Interface7 * p7 )
276
	Interface6 * p6, Interface7 * p7 )
277
	SAL_THROW( () )
277
	SAL_THROW( () )
278
{
278
{
279
	if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 ))
279
	if (rType == Interface1::static_type())
280
		return ::com::sun::star::uno::Any( &p1, rType );
280
		return ::com::sun::star::uno::Any( &p1, rType );
281
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 ))
281
	else if (rType == Interface2::static_type())
282
		return ::com::sun::star::uno::Any( &p2, rType );
282
		return ::com::sun::star::uno::Any( &p2, rType );
283
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 ))
283
	else if (rType == Interface3::static_type())
284
		return ::com::sun::star::uno::Any( &p3, rType );
284
		return ::com::sun::star::uno::Any( &p3, rType );
285
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 ))
285
	else if (rType == Interface4::static_type())
286
		return ::com::sun::star::uno::Any( &p4, rType );
286
		return ::com::sun::star::uno::Any( &p4, rType );
287
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 ))
287
	else if (rType == Interface5::static_type())
288
		return ::com::sun::star::uno::Any( &p5, rType );
288
		return ::com::sun::star::uno::Any( &p5, rType );
289
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *)0 ))
289
	else if (rType == Interface6::static_type())
290
		return ::com::sun::star::uno::Any( &p6, rType );
290
		return ::com::sun::star::uno::Any( &p6, rType );
291
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *)0 ))
291
	else if (rType == Interface7::static_type())
292
		return ::com::sun::star::uno::Any( &p7, rType );
292
		return ::com::sun::star::uno::Any( &p7, rType );
293
	else
293
	else
294
		return ::com::sun::star::uno::Any();
294
		return ::com::sun::star::uno::Any();
Lines 322-342 Link Here
322
	Interface6 * p6, Interface7 * p7, Interface8 * p8 )
322
	Interface6 * p6, Interface7 * p7, Interface8 * p8 )
323
	SAL_THROW( () )
323
	SAL_THROW( () )
324
{
324
{
325
	if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 ))
325
	if (rType == Interface1::static_type())
326
		return ::com::sun::star::uno::Any( &p1, rType );
326
		return ::com::sun::star::uno::Any( &p1, rType );
327
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 ))
327
	else if (rType == Interface2::static_type())
328
		return ::com::sun::star::uno::Any( &p2, rType );
328
		return ::com::sun::star::uno::Any( &p2, rType );
329
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 ))
329
	else if (rType == Interface3::static_type())
330
		return ::com::sun::star::uno::Any( &p3, rType );
330
		return ::com::sun::star::uno::Any( &p3, rType );
331
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 ))
331
	else if (rType == Interface4::static_type())
332
		return ::com::sun::star::uno::Any( &p4, rType );
332
		return ::com::sun::star::uno::Any( &p4, rType );
333
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 ))
333
	else if (rType == Interface5::static_type())
334
		return ::com::sun::star::uno::Any( &p5, rType );
334
		return ::com::sun::star::uno::Any( &p5, rType );
335
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *)0 ))
335
	else if (rType == Interface6::static_type())
336
		return ::com::sun::star::uno::Any( &p6, rType );
336
		return ::com::sun::star::uno::Any( &p6, rType );
337
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *)0 ))
337
	else if (rType == Interface7::static_type())
338
		return ::com::sun::star::uno::Any( &p7, rType );
338
		return ::com::sun::star::uno::Any( &p7, rType );
339
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *)0 ))
339
	else if (rType == Interface8::static_type())
340
		return ::com::sun::star::uno::Any( &p8, rType );
340
		return ::com::sun::star::uno::Any( &p8, rType );
341
	else
341
	else
342
		return ::com::sun::star::uno::Any();
342
		return ::com::sun::star::uno::Any();
Lines 372-394 Link Here
372
	Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9 )
372
	Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9 )
373
	SAL_THROW( () )
373
	SAL_THROW( () )
374
{
374
{
375
	if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 ))
375
	if (rType == Interface1::static_type())
376
		return ::com::sun::star::uno::Any( &p1, rType );
376
		return ::com::sun::star::uno::Any( &p1, rType );
377
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 ))
377
	else if (rType == Interface2::static_type())
378
		return ::com::sun::star::uno::Any( &p2, rType );
378
		return ::com::sun::star::uno::Any( &p2, rType );
379
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 ))
379
	else if (rType == Interface3::static_type())
380
		return ::com::sun::star::uno::Any( &p3, rType );
380
		return ::com::sun::star::uno::Any( &p3, rType );
381
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 ))
381
	else if (rType == Interface4::static_type())
382
		return ::com::sun::star::uno::Any( &p4, rType );
382
		return ::com::sun::star::uno::Any( &p4, rType );
383
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 ))
383
	else if (rType == Interface5::static_type())
384
		return ::com::sun::star::uno::Any( &p5, rType );
384
		return ::com::sun::star::uno::Any( &p5, rType );
385
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *)0 ))
385
	else if (rType == Interface6::static_type())
386
		return ::com::sun::star::uno::Any( &p6, rType );
386
		return ::com::sun::star::uno::Any( &p6, rType );
387
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *)0 ))
387
	else if (rType == Interface7::static_type())
388
		return ::com::sun::star::uno::Any( &p7, rType );
388
		return ::com::sun::star::uno::Any( &p7, rType );
389
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *)0 ))
389
	else if (rType == Interface8::static_type())
390
		return ::com::sun::star::uno::Any( &p8, rType );
390
		return ::com::sun::star::uno::Any( &p8, rType );
391
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface9 > *)0 ))
391
	else if (rType == Interface9::static_type())
392
		return ::com::sun::star::uno::Any( &p9, rType );
392
		return ::com::sun::star::uno::Any( &p9, rType );
393
	else
393
	else
394
		return ::com::sun::star::uno::Any();
394
		return ::com::sun::star::uno::Any();
Lines 426-450 Link Here
426
	Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9, Interface10 * p10 )
426
	Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9, Interface10 * p10 )
427
	SAL_THROW( () )
427
	SAL_THROW( () )
428
{
428
{
429
	if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 ))
429
	if (rType == Interface1::static_type())
430
		return ::com::sun::star::uno::Any( &p1, rType );
430
		return ::com::sun::star::uno::Any( &p1, rType );
431
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 ))
431
	else if (rType == Interface2::static_type())
432
		return ::com::sun::star::uno::Any( &p2, rType );
432
		return ::com::sun::star::uno::Any( &p2, rType );
433
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 ))
433
	else if (rType == Interface3::static_type())
434
		return ::com::sun::star::uno::Any( &p3, rType );
434
		return ::com::sun::star::uno::Any( &p3, rType );
435
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 ))
435
	else if (rType == Interface4::static_type())
436
		return ::com::sun::star::uno::Any( &p4, rType );
436
		return ::com::sun::star::uno::Any( &p4, rType );
437
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 ))
437
	else if (rType == Interface5::static_type())
438
		return ::com::sun::star::uno::Any( &p5, rType );
438
		return ::com::sun::star::uno::Any( &p5, rType );
439
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *)0 ))
439
	else if (rType == Interface6::static_type())
440
		return ::com::sun::star::uno::Any( &p6, rType );
440
		return ::com::sun::star::uno::Any( &p6, rType );
441
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *)0 ))
441
	else if (rType == Interface7::static_type())
442
		return ::com::sun::star::uno::Any( &p7, rType );
442
		return ::com::sun::star::uno::Any( &p7, rType );
443
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *)0 ))
443
	else if (rType == Interface8::static_type())
444
		return ::com::sun::star::uno::Any( &p8, rType );
444
		return ::com::sun::star::uno::Any( &p8, rType );
445
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface9 > *)0 ))
445
	else if (rType == Interface9::static_type())
446
		return ::com::sun::star::uno::Any( &p9, rType );
446
		return ::com::sun::star::uno::Any( &p9, rType );
447
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface10 > *)0 ))
447
	else if (rType == Interface10::static_type())
448
		return ::com::sun::star::uno::Any( &p10, rType );
448
		return ::com::sun::star::uno::Any( &p10, rType );
449
	else
449
	else
450
		return ::com::sun::star::uno::Any();
450
		return ::com::sun::star::uno::Any();
Lines 486-512 Link Here
486
	Interface11 * p11 )
486
	Interface11 * p11 )
487
	SAL_THROW( () )
487
	SAL_THROW( () )
488
{
488
{
489
	if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 ))
489
	if (rType == Interface1::static_type())
490
		return ::com::sun::star::uno::Any( &p1, rType );
490
		return ::com::sun::star::uno::Any( &p1, rType );
491
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 ))
491
	else if (rType == Interface2::static_type())
492
		return ::com::sun::star::uno::Any( &p2, rType );
492
		return ::com::sun::star::uno::Any( &p2, rType );
493
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 ))
493
	else if (rType == Interface3::static_type())
494
		return ::com::sun::star::uno::Any( &p3, rType );
494
		return ::com::sun::star::uno::Any( &p3, rType );
495
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 ))
495
	else if (rType == Interface4::static_type())
496
		return ::com::sun::star::uno::Any( &p4, rType );
496
		return ::com::sun::star::uno::Any( &p4, rType );
497
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 ))
497
	else if (rType == Interface5::static_type())
498
		return ::com::sun::star::uno::Any( &p5, rType );
498
		return ::com::sun::star::uno::Any( &p5, rType );
499
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *)0 ))
499
	else if (rType == Interface6::static_type())
500
		return ::com::sun::star::uno::Any( &p6, rType );
500
		return ::com::sun::star::uno::Any( &p6, rType );
501
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *)0 ))
501
	else if (rType == Interface7::static_type())
502
		return ::com::sun::star::uno::Any( &p7, rType );
502
		return ::com::sun::star::uno::Any( &p7, rType );
503
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *)0 ))
503
	else if (rType == Interface8::static_type())
504
		return ::com::sun::star::uno::Any( &p8, rType );
504
		return ::com::sun::star::uno::Any( &p8, rType );
505
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface9 > *)0 ))
505
	else if (rType == Interface9::static_type())
506
		return ::com::sun::star::uno::Any( &p9, rType );
506
		return ::com::sun::star::uno::Any( &p9, rType );
507
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface10 > *)0 ))
507
	else if (rType == Interface10::static_type())
508
		return ::com::sun::star::uno::Any( &p10, rType );
508
		return ::com::sun::star::uno::Any( &p10, rType );
509
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface11 > *)0 ))
509
	else if (rType == Interface11::static_type())
510
		return ::com::sun::star::uno::Any( &p11, rType );
510
		return ::com::sun::star::uno::Any( &p11, rType );
511
	else
511
	else
512
		return ::com::sun::star::uno::Any();
512
		return ::com::sun::star::uno::Any();
Lines 550-578 Link Here
550
	Interface11 * p11, Interface12 * p12 )
550
	Interface11 * p11, Interface12 * p12 )
551
	SAL_THROW( () )
551
	SAL_THROW( () )
552
{
552
{
553
	if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *)0 ))
553
	if (rType == Interface1::static_type())
554
		return ::com::sun::star::uno::Any( &p1, rType );
554
		return ::com::sun::star::uno::Any( &p1, rType );
555
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *)0 ))
555
	else if (rType == Interface2::static_type())
556
		return ::com::sun::star::uno::Any( &p2, rType );
556
		return ::com::sun::star::uno::Any( &p2, rType );
557
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *)0 ))
557
	else if (rType == Interface3::static_type())
558
		return ::com::sun::star::uno::Any( &p3, rType );
558
		return ::com::sun::star::uno::Any( &p3, rType );
559
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *)0 ))
559
	else if (rType == Interface4::static_type())
560
		return ::com::sun::star::uno::Any( &p4, rType );
560
		return ::com::sun::star::uno::Any( &p4, rType );
561
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *)0 ))
561
	else if (rType == Interface5::static_type())
562
		return ::com::sun::star::uno::Any( &p5, rType );
562
		return ::com::sun::star::uno::Any( &p5, rType );
563
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *)0 ))
563
	else if (rType == Interface6::static_type())
564
		return ::com::sun::star::uno::Any( &p6, rType );
564
		return ::com::sun::star::uno::Any( &p6, rType );
565
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *)0 ))
565
	else if (rType == Interface7::static_type())
566
		return ::com::sun::star::uno::Any( &p7, rType );
566
		return ::com::sun::star::uno::Any( &p7, rType );
567
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *)0 ))
567
	else if (rType == Interface8::static_type())
568
		return ::com::sun::star::uno::Any( &p8, rType );
568
		return ::com::sun::star::uno::Any( &p8, rType );
569
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface9 > *)0 ))
569
	else if (rType == Interface9::static_type())
570
		return ::com::sun::star::uno::Any( &p9, rType );
570
		return ::com::sun::star::uno::Any( &p9, rType );
571
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface10 > *)0 ))
571
	else if (rType == Interface10::static_type())
572
		return ::com::sun::star::uno::Any( &p10, rType );
572
		return ::com::sun::star::uno::Any( &p10, rType );
573
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface11 > *)0 ))
573
	else if (rType == Interface11::static_type())
574
		return ::com::sun::star::uno::Any( &p11, rType );
574
		return ::com::sun::star::uno::Any( &p11, rType );
575
	else if (rType == ::getCppuType( (::com::sun::star::uno::Reference< Interface12 > *)0 ))
575
	else if (rType == Interface12::static_type())
576
		return ::com::sun::star::uno::Any( &p12, rType );
576
		return ::com::sun::star::uno::Any( &p12, rType );
577
	else
577
	else
578
		return ::com::sun::star::uno::Any();
578
		return ::com::sun::star::uno::Any();
(-)cppuhelper/inc/cppuhelper/stdidlclass.hxx (-167 / +57 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: stdidlclass.hxx,v $
3
 *  $RCSfile: stdidlclass.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.4 $
5
 *  $Revision: 1.4.128.1 $
6
 *
6
 *
7
 *  last change: $Author: jbu $ $Date: 2001/10/29 15:27:57 $
7
 *  last change: $Author: sb $ $Date: 2004/07/02 09:50:58 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 102-110 Link Here
102
	SAL_THROW( () )
102
	SAL_THROW( () )
103
{ 
103
{ 
104
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(1);
104
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(1);
105
	seqInterface.getArray()[0] = 
105
    seqInterface.getArray()[0] = Interface1::static_type().getTypeName();
106
		::getCppuType( ( ::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); 
107
108
	return createStandardClassWithSequence( 	
106
	return createStandardClassWithSequence( 	
109
											rSMgr,
107
											rSMgr,
110
											sImplementationName,
108
											sImplementationName,
Lines 127-138 Link Here
127
	SAL_THROW( () )
125
	SAL_THROW( () )
128
{ 
126
{ 
129
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(2);
127
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(2);
130
	seqInterface.getArray()[0] =
128
    seqInterface.getArray()[0] = Interface1::static_type().getTypeName();
131
		::getCppuType( ( ::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName();
129
    seqInterface.getArray()[1] = Interface2::static_type().getTypeName();
132
133
	seqInterface.getArray()[1] = 
134
		::getCppuType( ( ::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); 
135
136
	return createStandardClassWithSequence( 	
130
	return createStandardClassWithSequence( 	
137
											rSMgr,
131
											rSMgr,
138
											sImplementationName,
132
											sImplementationName,
Lines 158-172 Link Here
158
	SAL_THROW( () )
152
	SAL_THROW( () )
159
{ 
153
{ 
160
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(3);
154
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(3);
161
	seqInterface.getArray()[0] = 
155
    seqInterface.getArray()[0] = Interface1::static_type().getTypeName();
162
		::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); 
156
    seqInterface.getArray()[1] = Interface2::static_type().getTypeName();
163
157
    seqInterface.getArray()[2] = Interface3::static_type().getTypeName();
164
	seqInterface.getArray()[1] = 
165
		::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); 
166
167
	seqInterface.getArray()[2] = 
168
		::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName();
169
170
	return createStandardClassWithSequence( 	
158
	return createStandardClassWithSequence( 	
171
											rSMgr,
159
											rSMgr,
172
											sImplementationName,
160
											sImplementationName,
Lines 193-210 Link Here
193
	SAL_THROW( () )
181
	SAL_THROW( () )
194
{ 
182
{ 
195
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(4);
183
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(4);
196
	seqInterface.getArray()[0] = 
184
    seqInterface.getArray()[0] = Interface1::static_type().getTypeName();
197
		::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); 
185
    seqInterface.getArray()[1] = Interface2::static_type().getTypeName();
198
	
186
    seqInterface.getArray()[2] = Interface3::static_type().getTypeName();
199
	seqInterface.getArray()[1] = 
187
    seqInterface.getArray()[3] = Interface4::static_type().getTypeName();
200
		::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); 
201
	
202
	seqInterface.getArray()[2] = 
203
		::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName(); 
204
205
	seqInterface.getArray()[3] = 
206
		::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *) 0 ).getTypeName(); 
207
208
	return createStandardClassWithSequence( 	
188
	return createStandardClassWithSequence( 	
209
											rSMgr,
189
											rSMgr,
210
											sImplementationName,
190
											sImplementationName,
Lines 234-254 Link Here
234
	SAL_THROW( () )
214
	SAL_THROW( () )
235
{ 
215
{ 
236
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(5);
216
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(5);
237
	seqInterface.getArray()[0] = 
217
    seqInterface.getArray()[0] = Interface1::static_type().getTypeName();
238
		::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); 
218
    seqInterface.getArray()[1] = Interface2::static_type().getTypeName();
239
219
    seqInterface.getArray()[2] = Interface3::static_type().getTypeName();
240
	seqInterface.getArray()[1] = 
220
    seqInterface.getArray()[3] = Interface4::static_type().getTypeName();
241
		::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); 
221
    seqInterface.getArray()[4] = Interface5::static_type().getTypeName();
242
243
	seqInterface.getArray()[2] = 
244
		::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName(); 
245
246
	seqInterface.getArray()[3] = 
247
		::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *) 0 ).getTypeName(); 
248
249
	seqInterface.getArray()[4] = 
250
		::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *) 0 ).getTypeName(); 
251
252
	return createStandardClassWithSequence( 	
222
	return createStandardClassWithSequence( 	
253
											rSMgr,
223
											rSMgr,
254
											sImplementationName,
224
											sImplementationName,
Lines 277-300 Link Here
277
	SAL_THROW( () )
247
	SAL_THROW( () )
278
{ 
248
{ 
279
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(6);
249
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(6);
280
	seqInterface.getArray()[0] = 
250
    seqInterface.getArray()[0] = Interface1::static_type().getTypeName();
281
		::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); 
251
    seqInterface.getArray()[1] = Interface2::static_type().getTypeName();
282
252
    seqInterface.getArray()[2] = Interface3::static_type().getTypeName();
283
	seqInterface.getArray()[1] = 
253
    seqInterface.getArray()[3] = Interface4::static_type().getTypeName();
284
		::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); 
254
    seqInterface.getArray()[4] = Interface5::static_type().getTypeName();
285
255
    seqInterface.getArray()[5] = Interface6::static_type().getTypeName();
286
	seqInterface.getArray()[2] = 
287
		::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName(); 
288
289
	seqInterface.getArray()[3] = 
290
		::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *) 0 ).getTypeName(); 
291
292
	seqInterface.getArray()[4] = 
293
		::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *) 0 ).getTypeName(); 
294
295
	seqInterface.getArray()[5] = 
296
		::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *) 0 ).getTypeName(); 
297
298
	return createStandardClassWithSequence( 	
256
	return createStandardClassWithSequence( 	
299
											rSMgr,
257
											rSMgr,
300
											sImplementationName,
258
											sImplementationName,
Lines 325-351 Link Here
325
	SAL_THROW( () )
283
	SAL_THROW( () )
326
{ 
284
{ 
327
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(7);
285
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(7);
328
	seqInterface.getArray()[0] = 
286
    seqInterface.getArray()[0] = Interface1::static_type().getTypeName();
329
		::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); 
287
    seqInterface.getArray()[1] = Interface2::static_type().getTypeName();
330
288
    seqInterface.getArray()[2] = Interface3::static_type().getTypeName();
331
	seqInterface.getArray()[1] = 
289
    seqInterface.getArray()[3] = Interface4::static_type().getTypeName();
332
		::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); 
290
    seqInterface.getArray()[4] = Interface5::static_type().getTypeName();
333
291
    seqInterface.getArray()[5] = Interface6::static_type().getTypeName();
334
	seqInterface.getArray()[2] = 
292
    seqInterface.getArray()[6] = Interface7::static_type().getTypeName();
335
		::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName(); 
336
337
	seqInterface.getArray()[3] = 
338
		::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *) 0 ).getTypeName(); 
339
340
	seqInterface.getArray()[4] = 
341
		::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *) 0 ).getTypeName(); 
342
343
	seqInterface.getArray()[5] = 
344
		::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *) 0 ).getTypeName(); 
345
346
	seqInterface.getArray()[6] = 
347
		::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *) 0 ).getTypeName(); 
348
349
	return createStandardClassWithSequence( 	
293
	return createStandardClassWithSequence( 	
350
											rSMgr,
294
											rSMgr,
351
											sImplementationName,
295
											sImplementationName,
Lines 378-407 Link Here
378
	SAL_THROW( () )
322
	SAL_THROW( () )
379
{ 
323
{ 
380
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(8);
324
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(8);
381
	seqInterface.getArray()[0] = 
325
    seqInterface.getArray()[0] = Interface1::static_type().getTypeName();
382
		::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); 
326
    seqInterface.getArray()[1] = Interface2::static_type().getTypeName();
383
327
    seqInterface.getArray()[2] = Interface3::static_type().getTypeName();
384
	seqInterface.getArray()[1] = 
328
    seqInterface.getArray()[3] = Interface4::static_type().getTypeName();
385
		::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); 
329
    seqInterface.getArray()[4] = Interface5::static_type().getTypeName();
386
330
    seqInterface.getArray()[5] = Interface6::static_type().getTypeName();
387
	seqInterface.getArray()[2] = 
331
    seqInterface.getArray()[6] = Interface7::static_type().getTypeName();
388
		::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName(); 
332
    seqInterface.getArray()[7] = Interface8::static_type().getTypeName();
389
390
	seqInterface.getArray()[3] = 
391
		::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *) 0 ).getTypeName(); 
392
393
	seqInterface.getArray()[4] = 
394
		::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *) 0 ).getTypeName(); 
395
396
	seqInterface.getArray()[5] = 
397
		::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *) 0 ).getTypeName(); 
398
399
	seqInterface.getArray()[6] = 
400
		::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *) 0 ).getTypeName(); 
401
402
	seqInterface.getArray()[7] = 
403
		::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *) 0 ).getTypeName(); 
404
405
	return createStandardClassWithSequence( 	
333
	return createStandardClassWithSequence( 	
406
											rSMgr,
334
											rSMgr,
407
											sImplementationName,
335
											sImplementationName,
Lines 433-465 Link Here
433
	SAL_THROW( () )
361
	SAL_THROW( () )
434
{ 
362
{ 
435
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(9);
363
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(9);
436
	seqInterface.getArray()[0] = 
364
    seqInterface.getArray()[0] = Interface1::static_type().getTypeName();
437
		::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); 
365
    seqInterface.getArray()[1] = Interface2::static_type().getTypeName();
438
366
    seqInterface.getArray()[2] = Interface3::static_type().getTypeName();
439
	seqInterface.getArray()[1] = 
367
    seqInterface.getArray()[3] = Interface4::static_type().getTypeName();
440
		::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); 
368
    seqInterface.getArray()[4] = Interface5::static_type().getTypeName();
441
369
    seqInterface.getArray()[5] = Interface6::static_type().getTypeName();
442
	seqInterface.getArray()[2] = 
370
    seqInterface.getArray()[6] = Interface7::static_type().getTypeName();
443
		::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName(); 
371
    seqInterface.getArray()[7] = Interface8::static_type().getTypeName();
444
372
    seqInterface.getArray()[8] = Interface9::static_type().getTypeName();
445
	seqInterface.getArray()[3] = 
446
		::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *) 0 ).getTypeName(); 
447
448
	seqInterface.getArray()[4] = 
449
		::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *) 0 ).getTypeName(); 
450
451
	seqInterface.getArray()[5] = 
452
		::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *) 0 ).getTypeName(); 
453
454
	seqInterface.getArray()[6] = 
455
		::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *) 0 ).getTypeName(); 
456
457
	seqInterface.getArray()[7] = 
458
		::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *) 0 ).getTypeName(); 
459
460
	seqInterface.getArray()[8] = 
461
		::getCppuType( (::com::sun::star::uno::Reference< Interface9 > *) 0 ).getTypeName(); 
462
463
	return createStandardClassWithSequence( 	
373
	return createStandardClassWithSequence( 	
464
											rSMgr,
374
											rSMgr,
465
											sImplementationName,
375
											sImplementationName,
Lines 490-525 Link Here
490
	SAL_THROW( () )
400
	SAL_THROW( () )
491
{ 
401
{ 
492
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(10);
402
	::com::sun::star::uno::Sequence < ::rtl::OUString > seqInterface(10);
493
	seqInterface.getArray()[0] = 
403
    seqInterface.getArray()[0] = Interface1::static_type().getTypeName();
494
		::getCppuType( (::com::sun::star::uno::Reference< Interface1 > *) 0 ).getTypeName(); 
404
    seqInterface.getArray()[1] = Interface2::static_type().getTypeName();
495
405
    seqInterface.getArray()[2] = Interface3::static_type().getTypeName();
496
	seqInterface.getArray()[1] = 
406
    seqInterface.getArray()[3] = Interface4::static_type().getTypeName();
497
		::getCppuType( (::com::sun::star::uno::Reference< Interface2 > *) 0 ).getTypeName(); 
407
    seqInterface.getArray()[4] = Interface5::static_type().getTypeName();
498
408
    seqInterface.getArray()[5] = Interface6::static_type().getTypeName();
499
	seqInterface.getArray()[2] = 
409
    seqInterface.getArray()[6] = Interface7::static_type().getTypeName();
500
		::getCppuType( (::com::sun::star::uno::Reference< Interface3 > *) 0 ).getTypeName(); 
410
    seqInterface.getArray()[7] = Interface8::static_type().getTypeName();
501
411
    seqInterface.getArray()[8] = Interface9::static_type().getTypeName();
502
	seqInterface.getArray()[3] = 
412
    seqInterface.getArray()[9] = Interface10::static_type().getTypeName();
503
		::getCppuType( (::com::sun::star::uno::Reference< Interface4 > *) 0 ).getTypeName(); 
504
505
	seqInterface.getArray()[4] = 
506
		::getCppuType( (::com::sun::star::uno::Reference< Interface5 > *) 0 ).getTypeName(); 
507
508
	seqInterface.getArray()[5] = 
509
		::getCppuType( (::com::sun::star::uno::Reference< Interface6 > *) 0 ).getTypeName(); 
510
511
	seqInterface.getArray()[6] = 
512
		::getCppuType( (::com::sun::star::uno::Reference< Interface7 > *) 0 ).getTypeName(); 
513
514
	seqInterface.getArray()[7] = 
515
		::getCppuType( (::com::sun::star::uno::Reference< Interface8 > *) 0 ).getTypeName(); 
516
517
	seqInterface.getArray()[8] = 
518
		::getCppuType( (::com::sun::star::uno::Reference< Interface9 > *) 0 ).getTypeName(); 
519
520
	seqInterface.getArray()[9] = 
521
		::getCppuType( (::com::sun::star::uno::Reference< Interface10 > *) 0 ).getTypeName(); 
522
523
	return createStandardClassWithSequence( 	
413
	return createStandardClassWithSequence( 	
524
											rSMgr,
414
											rSMgr,
525
											sImplementationName,
415
											sImplementationName,
(-)idl/inc/hash.hxx.orig (-1 / +1 lines)
Lines 99-105 Link Here
99
class SvStringHashTable;
99
class SvStringHashTable;
100
class SvStringHashEntry : public SvRefBase
100
class SvStringHashEntry : public SvRefBase
101
{
101
{
102
friend SvStringHashTable;
102
friend class SvStringHashTable;
103
    ByteString  aName;
103
    ByteString  aName;
104
    UINT32  nHashId;
104
    UINT32  nHashId;
105
    ULONG   nValue;
105
    ULONG   nValue;
(-)stoc/source/defaultregistry/defaultregistry.cxx.orig (-1 / +1 lines)
Lines 183-189 Link Here
183
    virtual Type SAL_CALL getElementType(  ) throw (RuntimeException);
183
    virtual Type SAL_CALL getElementType(  ) throw (RuntimeException);
184
    virtual sal_Bool SAL_CALL hasElements(  ) throw (RuntimeException);
184
    virtual sal_Bool SAL_CALL hasElements(  ) throw (RuntimeException);
185
185
186
	friend NestedKeyImpl;
186
	friend class NestedKeyImpl;
187
protected:
187
protected:
188
	Mutex						m_mutex;
188
	Mutex						m_mutex;
189
	sal_uInt32					m_state;
189
	sal_uInt32					m_state;
(-)stoc/source/simpleregistry/simpleregistry.cxx.orig (-1 / +1 lines)
Lines 175-181 Link Here
175
    virtual sal_Bool SAL_CALL isReadOnly(  ) throw(InvalidRegistryException, RuntimeException);
175
    virtual sal_Bool SAL_CALL isReadOnly(  ) throw(InvalidRegistryException, RuntimeException);
176
    virtual void SAL_CALL mergeKey( const OUString& aKeyName, const OUString& aUrl ) throw(InvalidRegistryException, MergeConflictException, RuntimeException);
176
    virtual void SAL_CALL mergeKey( const OUString& aKeyName, const OUString& aUrl ) throw(InvalidRegistryException, MergeConflictException, RuntimeException);
177
177
178
	friend RegistryKeyImpl;
178
	friend class RegistryKeyImpl;
179
protected:
179
protected:
180
	Mutex		m_mutex;
180
	Mutex		m_mutex;
181
	OUString 	m_url;
181
	OUString 	m_url;
(-)stoc/source/tdmanager/tdmgr.cxx.orig (-2 / +2 lines)
Lines 199-206 Link Here
199
                                       XTypeDescriptionEnumerationAccess,
199
                                       XTypeDescriptionEnumerationAccess,
200
                                       XInitialization >
200
                                       XInitialization >
201
{
201
{
202
	friend EnumerationImpl;
202
	friend class EnumerationImpl;
203
	friend EventListenerImpl;
203
	friend class EventListenerImpl;
204
204
205
	Mutex								_aComponentMutex;
205
	Mutex								_aComponentMutex;
206
	Reference< XComponentContext >      _xContext;
206
	Reference< XComponentContext >      _xContext;
(-)stoc/source/tdmanager/lrucache.hxx.orig (-3 / +3 lines)
Lines 191-197 Link Here
191
    t_Key const & rKey ) const
191
    t_Key const & rKey ) const
192
{
192
{
193
	::osl::MutexGuard aGuard( _aCacheMutex );
193
	::osl::MutexGuard aGuard( _aCacheMutex );
194
	t_Key2Element::const_iterator const iFind( _aKey2Element.find( rKey ) );
194
	typename t_Key2Element::const_iterator const iFind( _aKey2Element.find( rKey ) );
195
	return (iFind != _aKey2Element.end());
195
	return (iFind != _aKey2Element.end());
196
}
196
}
197
//__________________________________________________________________________________________________
197
//__________________________________________________________________________________________________
Lines 200-206 Link Here
200
    t_Key const & rKey ) const
200
    t_Key const & rKey ) const
201
{
201
{
202
	::osl::MutexGuard aGuard( _aCacheMutex );
202
	::osl::MutexGuard aGuard( _aCacheMutex );
203
	const t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) );
203
	const typename t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) );
204
	if (iFind != _aKey2Element.end())
204
	if (iFind != _aKey2Element.end())
205
	{
205
	{
206
		CacheEntry * pEntry = (*iFind).second;
206
		CacheEntry * pEntry = (*iFind).second;
Lines 222-228 Link Here
222
	if (_nCachedElements > 0)
222
	if (_nCachedElements > 0)
223
	{
223
	{
224
		::osl::MutexGuard aGuard( _aCacheMutex );
224
		::osl::MutexGuard aGuard( _aCacheMutex );
225
		t_Key2Element::const_iterator const iFind( _aKey2Element.find( rKey ) );
225
		typename t_Key2Element::const_iterator const iFind( _aKey2Element.find( rKey ) );
226
		
226
		
227
		CacheEntry * pEntry;
227
		CacheEntry * pEntry;
228
		if (iFind == _aKey2Element.end())
228
		if (iFind == _aKey2Element.end())
(-)stoc/source/corereflection/lrucache.hxx.orig (-3 / +3 lines)
Lines 189-195 Link Here
189
inline sal_Bool LRU_Cache< t_Key, t_Val, t_KeyHash, t_KeyEqual >::hasValue( const t_Key & rKey ) const
189
inline sal_Bool LRU_Cache< t_Key, t_Val, t_KeyHash, t_KeyEqual >::hasValue( const t_Key & rKey ) const
190
{
190
{
191
	::osl::MutexGuard aGuard( _aCacheMutex );
191
	::osl::MutexGuard aGuard( _aCacheMutex );
192
	const t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) );
192
	const typename t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) );
193
	return (iFind != _aKey2Element.end());
193
	return (iFind != _aKey2Element.end());
194
}
194
}
195
//__________________________________________________________________________________________________
195
//__________________________________________________________________________________________________
Lines 197-203 Link Here
197
inline t_Val LRU_Cache< t_Key, t_Val, t_KeyHash, t_KeyEqual >::getValue( const t_Key & rKey ) const
197
inline t_Val LRU_Cache< t_Key, t_Val, t_KeyHash, t_KeyEqual >::getValue( const t_Key & rKey ) const
198
{
198
{
199
	::osl::MutexGuard aGuard( _aCacheMutex );
199
	::osl::MutexGuard aGuard( _aCacheMutex );
200
	const t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) );
200
	const typename t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) );
201
	if (iFind != _aKey2Element.end())
201
	if (iFind != _aKey2Element.end())
202
	{
202
	{
203
		CacheEntry * pEntry = (*iFind).second;
203
		CacheEntry * pEntry = (*iFind).second;
Lines 219-225 Link Here
219
	if (_nCachedElements > 0)
219
	if (_nCachedElements > 0)
220
	{
220
	{
221
		::osl::MutexGuard aGuard( _aCacheMutex );
221
		::osl::MutexGuard aGuard( _aCacheMutex );
222
		const t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) );
222
		const typename t_Key2Element::const_iterator iFind( _aKey2Element.find( rKey ) );
223
		
223
		
224
		CacheEntry * pEntry;
224
		CacheEntry * pEntry;
225
		if (iFind == _aKey2Element.end())
225
		if (iFind == _aKey2Element.end())
(-)ucbhelper/inc/ucbhelper/remotecontentproviderscontrol.hxx.orig (-1 / +1 lines)
Lines 163-169 Link Here
163
163
164
    void closed(Listeners::iterator aIt, bool bDistribution);
164
    void closed(Listeners::iterator aIt, bool bDistribution);
165
165
166
    friend Listener; // to access Listeners, setClosed()
166
    friend class Listener; // to access Listeners, setClosed()
167
};
167
};
168
168
169
}
169
}
(-)cppuhelper/prj/d.lst.orig (-1 / +5 lines)
Lines 60-65 Link Here
60
..\%__SRC%\lib\*cppuhelper*.lib %_DEST%\lib%_EXT%\*
60
..\%__SRC%\lib\*cppuhelper*.lib %_DEST%\lib%_EXT%\*
61
61
62
..\%__SRC%\lib\libcppuhelper*.so* %_DEST%\lib%_EXT%\*
62
..\%__SRC%\lib\libcppuhelper*.so* %_DEST%\lib%_EXT%\*
63
..\%__SRC%\lib\libcppuhelperC52.so.3 %_DEST%\lib%_EXT%\libcppuhelper3C52.so
64
..\%__SRC%\lib\libcppuhelpergcc3.so.3 %_DEST%\lib%_EXT%\libcppuhelper3gcc3.so
63
..\%__SRC%\lib\libcppuhelper*.dylib* %_DEST%\lib%_EXT%\*
65
..\%__SRC%\lib\libcppuhelper*.dylib* %_DEST%\lib%_EXT%\*
64
66
65
..\%__SRC%\lib\libcppuhelper*.a %_DEST%\lib%_EXT%\*
67
..\%__SRC%\lib\libcppuhelper*.a %_DEST%\lib%_EXT%\*
66
-- pyuno/source/module/makefile.mk     2004-05-03 18:48:10.000000000 +0200
68
++ pyuno/source/module/makefile.mk       2004-03-01 12:38:50.000000000 +0100
Lines 63-68 Link Here
63
TARGET=pyuno
63
TARGET=pyuno
64
ENABLE_EXCEPTIONS=TRUE
64
ENABLE_EXCEPTIONS=TRUE
65
65
66
LINKFLAGSDEFS = # do not fail with missing symbols
67
66
# --- Settings -----------------------------------------------------
68
# --- Settings -----------------------------------------------------
67
69
68
.INCLUDE :  settings.mk
70
.INCLUDE :  settings.mk
(-)ucb/source/cacher/cachedcontentresultset.cxx.orig (-1 / +1 lines)
Lines 444-450 Link Here
444
				public com::sun::star::lang::XTypeProvider,
444
				public com::sun::star::lang::XTypeProvider,
445
				public com::sun::star::beans::XPropertySetInfo
445
				public com::sun::star::beans::XPropertySetInfo
446
{
446
{
447
friend CachedContentResultSet;
447
friend class CachedContentResultSet;
448
	//my Properties
448
	//my Properties
449
	Sequence< com::sun::star::beans::Property >*
449
	Sequence< com::sun::star::beans::Property >*
450
							m_pProperties;
450
							m_pProperties;
(-)ucb/source/inc/regexpmap.hxx.orig (-3 / +3 lines)
Lines 102-109 Link Here
102
template< typename Val >
102
template< typename Val >
103
class RegexpMapConstIter
103
class RegexpMapConstIter
104
{
104
{
105
	friend RegexpMap< Val >; // to access m_pImpl, ctor
105
	friend class RegexpMap< Val >; // to access m_pImpl, ctor
106
	friend RegexpMapIter< Val >; // to access m_pImpl, ctor
106
	friend class RegexpMapIter< Val >; // to access m_pImpl, ctor
107
107
108
public:
108
public:
109
	RegexpMapConstIter();
109
	RegexpMapConstIter();
Lines 135-141 Link Here
135
template< typename Val >
135
template< typename Val >
136
class RegexpMapIter: public RegexpMapConstIter< Val >
136
class RegexpMapIter: public RegexpMapConstIter< Val >
137
{
137
{
138
	friend RegexpMap< Val >; // to access ctor
138
	friend class RegexpMap< Val >; // to access ctor
139
139
140
public:
140
public:
141
	RegexpMapIter() {}
141
	RegexpMapIter() {}
(-)ucb/source/inc/regexpmap.tpt.orig (-15 / +15 lines)
Lines 112-118 Link Here
112
{
112
{
113
public:
113
public:
114
	typedef RegexpMapImpl< Val > MapImpl;
114
	typedef RegexpMapImpl< Val > MapImpl;
115
	typedef List< Val >::iterator ListIterator;
115
	typedef typename List< Val >::iterator ListIterator;
116
		// Solaris needs these for the ctor...
116
		// Solaris needs these for the ctor...
117
117
118
	inline RegexpMapIterImpl();
118
	inline RegexpMapIterImpl();
Lines 128-134 Link Here
128
128
129
	int getList() const { return m_nList; }
129
	int getList() const { return m_nList; }
130
130
131
	List< Val >::iterator const & getIndex() const { return m_aIndex; }
131
	typename List< Val >::iterator const & getIndex() const { return m_aIndex; }
132
132
133
	void next();
133
	void next();
134
134
Lines 136-142 Link Here
136
136
137
private:
137
private:
138
	mutable RegexpMapEntry< Val > m_aEntry;
138
	mutable RegexpMapEntry< Val > m_aEntry;
139
	List< Val >::iterator m_aIndex;
139
	typename List< Val >::iterator m_aIndex;
140
	RegexpMapImpl< Val > * m_pMap;
140
	RegexpMapImpl< Val > * m_pMap;
141
	int m_nList;
141
	int m_nList;
142
	mutable bool m_bEntrySet;
142
	mutable bool m_bEntrySet;
Lines 452-459 Link Here
452
	{
452
	{
453
		List< Val > & rTheList = m_pImpl->m_aList[aRegexp.getKind()];
453
		List< Val > & rTheList = m_pImpl->m_aList[aRegexp.getKind()];
454
454
455
		List< Val >::iterator aEnd(rTheList.end());
455
		typename List< Val >::iterator aEnd(rTheList.end());
456
		for (List< Val >::iterator aIt(rTheList.begin()); aIt != aEnd; ++aIt)
456
		for (typename List< Val >::iterator aIt(rTheList.begin()); aIt != aEnd; ++aIt)
457
			if (aIt->m_aRegexp == aRegexp)
457
			if (aIt->m_aRegexp == aRegexp)
458
				if (bOverwrite)
458
				if (bOverwrite)
459
				{
459
				{
Lines 474-480 Link Here
474
474
475
//============================================================================
475
//============================================================================
476
template< typename Val >
476
template< typename Val >
477
RegexpMap< Val >::iterator RegexpMap< Val >::find(rtl::OUString const & rKey,
477
typename RegexpMap< Val >::iterator RegexpMap< Val >::find(rtl::OUString const & rKey,
478
												  rtl::OUString * pReverse)
478
												  rtl::OUString * pReverse)
479
{
479
{
480
	Regexp aRegexp(Regexp::parse(rKey));
480
	Regexp aRegexp(Regexp::parse(rKey));
Lines 492-499 Link Here
492
	{
492
	{
493
		List< Val > & rTheList = m_pImpl->m_aList[aRegexp.getKind()];
493
		List< Val > & rTheList = m_pImpl->m_aList[aRegexp.getKind()];
494
494
495
		List< Val > ::iterator aEnd(rTheList.end());
495
		typename List< Val > ::iterator aEnd(rTheList.end());
496
		for (List< Val >::iterator aIt(rTheList.begin()); aIt != aEnd; ++aIt)
496
		for (typename List< Val >::iterator aIt(rTheList.begin()); aIt != aEnd; ++aIt)
497
			if (aIt->m_aRegexp == aRegexp)
497
			if (aIt->m_aRegexp == aRegexp)
498
				return RegexpMapIter< Val >(new RegexpMapIterImpl< Val >(
498
				return RegexpMapIter< Val >(new RegexpMapIterImpl< Val >(
499
					                                m_pImpl,
499
					                                m_pImpl,
Lines 523-536 Link Here
523
523
524
//============================================================================
524
//============================================================================
525
template< typename Val >
525
template< typename Val >
526
RegexpMap< Val >::iterator RegexpMap< Val >::begin()
526
typename RegexpMap< Val >::iterator RegexpMap< Val >::begin()
527
{
527
{
528
	return RegexpMapIter< Val >(new RegexpMapIterImpl< Val >(m_pImpl, true));
528
	return RegexpMapIter< Val >(new RegexpMapIterImpl< Val >(m_pImpl, true));
529
}
529
}
530
530
531
//============================================================================
531
//============================================================================
532
template< typename Val >
532
template< typename Val >
533
RegexpMap< Val >::const_iterator RegexpMap< Val >::begin() const
533
typename RegexpMap< Val >::const_iterator RegexpMap< Val >::begin() const
534
{
534
{
535
	return RegexpMapConstIter< Val >(new RegexpMapIterImpl< Val >(m_pImpl,
535
	return RegexpMapConstIter< Val >(new RegexpMapIterImpl< Val >(m_pImpl,
536
																  true));
536
																  true));
Lines 538-551 Link Here
538
538
539
//============================================================================
539
//============================================================================
540
template< typename Val >
540
template< typename Val >
541
RegexpMap< Val >::iterator RegexpMap< Val >::end()
541
typename RegexpMap< Val >::iterator RegexpMap< Val >::end()
542
{
542
{
543
	return RegexpMapIter< Val >(new RegexpMapIterImpl< Val >(m_pImpl, false));
543
	return RegexpMapIter< Val >(new RegexpMapIterImpl< Val >(m_pImpl, false));
544
}
544
}
545
545
546
//============================================================================
546
//============================================================================
547
template< typename Val >
547
template< typename Val >
548
RegexpMap< Val >::const_iterator RegexpMap< Val >::end() const
548
typename RegexpMap< Val >::const_iterator RegexpMap< Val >::end() const
549
{
549
{
550
	return RegexpMapConstIter< Val >(new RegexpMapIterImpl< Val >(m_pImpl,
550
	return RegexpMapConstIter< Val >(new RegexpMapIterImpl< Val >(m_pImpl,
551
																  false));
551
																  false));
Lines 563-569 Link Here
563
563
564
//============================================================================
564
//============================================================================
565
template< typename Val >
565
template< typename Val >
566
RegexpMap< Val >::size_type RegexpMap< Val >::size() const
566
typename RegexpMap< Val >::size_type RegexpMap< Val >::size() const
567
{
567
{
568
	return (m_pImpl->m_pDefault ? 1 : 0)
568
	return (m_pImpl->m_pDefault ? 1 : 0)
569
		       + m_pImpl->m_aList[Regexp::KIND_PREFIX].size()
569
		       + m_pImpl->m_aList[Regexp::KIND_PREFIX].size()
Lines 581-588 Link Here
581
	{
581
	{
582
		List< Val > const & rTheList = m_pImpl->m_aList[n];
582
		List< Val > const & rTheList = m_pImpl->m_aList[n];
583
583
584
		List< Val >::const_iterator aEnd(rTheList.end());
584
		typename List< Val >::const_iterator aEnd(rTheList.end());
585
		for (List< Val >::const_iterator aIt(rTheList.begin()); aIt != aEnd;
585
		for (typename List< Val >::const_iterator aIt(rTheList.begin()); aIt != aEnd;
586
			 ++aIt)
586
			 ++aIt)
587
			if (aIt->m_aRegexp.matches(rString, pTranslation, pTranslated))
587
			if (aIt->m_aRegexp.matches(rString, pTranslation, pTranslated))
588
				return &aIt->m_aValue;
588
				return &aIt->m_aValue;
(-)psprint/source/helper/ppdparser.cxx.gcc341psprint (-1 / +1 lines)
Lines 68-74 Link Here
68
namespace psp { class PPDKey; }
68
namespace psp { class PPDKey; }
69
69
70
namespace  _STL {
70
namespace  _STL {
71
struct hash< const psp::PPDKey* >
71
template<> struct hash< const psp::PPDKey* >
72
{
72
{
73
    size_t operator()( const psp::PPDKey * pKey) const
73
    size_t operator()( const psp::PPDKey * pKey) const
74
    { return (size_t)pKey; }
74
    { return (size_t)pKey; }
(-)svtools/inc/communi.hxx.orig (-1 / +1 lines)
Lines 141-147 Link Here
141
141
142
class CommunicationManagerServerViaSocket : public CommunicationManagerServer
142
class CommunicationManagerServerViaSocket : public CommunicationManagerServer
143
{
143
{
144
	friend CommunicationManagerServerAcceptThread;
144
	friend class CommunicationManagerServerAcceptThread;
145
public:
145
public:
146
	CommunicationManagerServerViaSocket( ULONG nPort, USHORT nMaxCon, BOOL bUseMultiChannel = FALSE );
146
	CommunicationManagerServerViaSocket( ULONG nPort, USHORT nMaxCon, BOOL bUseMultiChannel = FALSE );
147
	virtual ~CommunicationManagerServerViaSocket();
147
	virtual ~CommunicationManagerServerViaSocket();
(-)svtools/source/dialogs/mcvmath.hxx.orig (-2 / +2 lines)
Lines 107-114 Link Here
107
class Fix
107
class Fix
108
{
108
{
109
private:
109
private:
110
	friend	FixCpx;
110
	friend	class FixCpx;
111
	friend	ColWheel;
111
	friend	class ColWheel;
112
112
113
//	friend	Fix ImpMultBig2( const Fix& a, const Fix& b );
113
//	friend	Fix ImpMultBig2( const Fix& a, const Fix& b );
114
114
(-)svtools/source/svrtf/svparser.cxx.orig (-8 / +1 lines)
Lines 166-179 Link Here
166
166
167
	delete pImplData;
167
	delete pImplData;
168
168
169
#ifdef MPW
169
	delete [] pTokenStack;
170
	// der MPW-Compiler ruft sonst keine Dtoren!
171
	for (int n = 0; n < nTokenStackSize; ++n )
172
		(pTokenStack+n)->TokenStackType::~TokenStackType();
173
	delete (void*) pTokenStack;
174
#else
175
	__DELETE(nTokenStackSize) pTokenStack;
176
#endif
177
}
170
}
178
171
179
void SvParser::ClearTxtConvContext()
172
void SvParser::ClearTxtConvContext()
(-)svtools/source/contnr/svlbox.cxx.orig (-1 / +1 lines)
Lines 724-730 Link Here
724
SvViewDataEntry::~SvViewDataEntry()
724
SvViewDataEntry::~SvViewDataEntry()
725
{
725
{
726
	DBG_DTOR(SvViewDataEntry,0);
726
	DBG_DTOR(SvViewDataEntry,0);
727
	__DELETE(nItmCnt) pItemData;
727
	delete [] pItemData;
728
}
728
}
729
729
730
// ***************************************************************
730
// ***************************************************************
(-)svtools/source/contnr/svtabbx.cxx.orig (-2 / +2 lines)
Lines 186-192 Link Here
186
SvTabListBox::~SvTabListBox()
186
SvTabListBox::~SvTabListBox()
187
{
187
{
188
	// array-delete
188
	// array-delete
189
	__DELETE(nTabCount) pTabList;
189
	delete [] pTabList;
190
#ifdef DBG_UTIL
190
#ifdef DBG_UTIL
191
	pTabList = 0;
191
	pTabList = 0;
192
	nTabCount = 0;
192
	nTabCount = 0;
Lines 199-205 Link Here
199
	if( !pTabs )
199
	if( !pTabs )
200
		return;
200
		return;
201
201
202
	__DELETE(nTabCount) pTabList;
202
	delete [] pTabList;
203
	USHORT nCount = (USHORT)(*pTabs);
203
	USHORT nCount = (USHORT)(*pTabs);
204
	pTabList = new SvLBoxTab[ nCount ];
204
	pTabList = new SvLBoxTab[ nCount ];
205
	nTabCount = nCount;
205
	nTabCount = nCount;
(-)svtools/source/numbers/zformat.cxx.orig (-2 / +2 lines)
Lines 380-387 Link Here
380
{
380
{
381
    for (USHORT i = 0; i < nAnzStrings; i++)
381
    for (USHORT i = 0; i < nAnzStrings; i++)
382
        aI.sStrArray[i].Erase();
382
        aI.sStrArray[i].Erase();
383
    __DELETE(nAnzStrings) aI.sStrArray;
383
    delete [] aI.sStrArray;
384
    __DELETE(nAnzStrings) aI.nTypeArray;
384
    delete [] aI.nTypeArray;
385
}
385
}
386
386
387
void ImpSvNumFor::Enlarge(USHORT nAnz)
387
void ImpSvNumFor::Enlarge(USHORT nAnz)
(-)framework/inc/classes/addonmenu.hxx.orig (-1 / +1 lines)
Lines 120-126 Link Here
120
		rtl::OUString														m_aCommandURL;
120
		rtl::OUString														m_aCommandURL;
121
		::com::sun::star::uno::Reference< com::sun::star::frame::XFrame >&	m_xFrame;
121
		::com::sun::star::uno::Reference< com::sun::star::frame::XFrame >&	m_xFrame;
122
		
122
		
123
	friend AddonMenuManager;
123
	friend class AddonMenuManager;
124
};
124
};
125
125
126
class AddonMenuManager
126
class AddonMenuManager
(-)scaddins/source/analysis/analysishelper.hxx.orig (-1 / +1 lines)
Lines 614-620 Link Here
614
class ConvertData
614
class ConvertData
615
{
615
{
616
protected:
616
protected:
617
	friend ConvertDataList;
617
	friend class ConvertDataList;
618
	double					fConst;
618
	double					fConst;
619
	STRING					aName;
619
	STRING					aName;
620
	ConvertDataClass		eClass;
620
	ConvertDataClass		eClass;
(-)basic/source/app/appwin.hxx.orig (-1 / +1 lines)
Lines 101-107 Link Here
101
101
102
class AppWin : public DockingWindow, public SfxListener		// Dokumentfenster
102
class AppWin : public DockingWindow, public SfxListener		// Dokumentfenster
103
{
103
{
104
	friend MsgEdit;
104
	friend class MsgEdit;
105
protected:
105
protected:
106
	static short nNumber;			// fortlaufende Nummer
106
	static short nNumber;			// fortlaufende Nummer
107
	static short nCount;			// Anzahl Editfenster
107
	static short nCount;			// Anzahl Editfenster
(-)basic/source/app/comm_bas.cxx.orig (-1 / +1 lines)
Lines 463-469 Link Here
463
		char *pBuffer = new char[nLength];
463
		char *pBuffer = new char[nLength];
464
		pReceiveStream->Read( pBuffer, nLength );
464
		pReceiveStream->Read( pBuffer, nLength );
465
		String aReceive( pBuffer, nLength );
465
		String aReceive( pBuffer, nLength );
466
		__DELETE(nLength) pBuffer;
466
		delete [] pBuffer;
467
		pVar->PutString( aReceive );
467
		pVar->PutString( aReceive );
468
		delete pReceiveStream;
468
		delete pReceiveStream;
469
	}
469
	}
(-)automation/source/server/statemnt.hxx.orig (-1 / +1 lines)
Lines 351-357 Link Here
351
351
352
class StatementCommand : public StatementList	// Befehl ausführen (wintree, resetaplication ...)
352
class StatementCommand : public StatementList	// Befehl ausführen (wintree, resetaplication ...)
353
{
353
{
354
	friend ImplRemoteControl;
354
	friend class ImplRemoteControl;
355
protected:
355
protected:
356
	USHORT nMethodId;
356
	USHORT nMethodId;
357
	USHORT nParams;
357
	USHORT nParams;
(-)setup2/inc/chainwidthbuilder.hxx.orig (-1 / +1 lines)
Lines 118-124 Link Here
118
					m_pNewSize = new sal_Int32[nValues];
118
					m_pNewSize = new sal_Int32[nValues];
119
					
119
					
120
					sal_Int32 i = 0;
120
					sal_Int32 i = 0;
121
					for (std::vector<TClass*>::iterator it = m_aList.begin();
121
					for (typename std::vector<TClass*>::iterator it = m_aList.begin();
122
						 it != m_aList.end();
122
						 it != m_aList.end();
123
						 it++)
123
						 it++)
124
					{
124
					{
(-)sfx2/source/view/printer.cxx.orig (-2 / +2 lines)
Lines 203-209 Link Here
203
		else
203
		else
204
		{
204
		{
205
			// statische Font-Sizes verwenden
205
			// statische Font-Sizes verwenden
206
			__DELETE(nSizeCount) pSizes;
206
			delete [] pSizes;
207
			nSizes = 0;
207
			nSizes = 0;
208
		}
208
		}
209
		rDev.SetMapMode(aOldMapMode);
209
		rDev.SetMapMode(aOldMapMode);
Lines 222-228 Link Here
222
222
223
SfxFontSizeInfo::~SfxFontSizeInfo()
223
SfxFontSizeInfo::~SfxFontSizeInfo()
224
{
224
{
225
	__DELETE(nSizes) pSizes;
225
	delete [] pSizes;
226
}
226
}
227
227
228
//--------------------------------------------------------------------
228
//--------------------------------------------------------------------
(-)sfx2/source/inc/cfg.hxx.orig (-1 / +1 lines)
Lines 343-349 Link Here
343
343
344
class SfxAcceleratorConfigPage : public SfxTabPage
344
class SfxAcceleratorConfigPage : public SfxTabPage
345
{
345
{
346
	friend SfxAccCfgTabListBox_Impl;
346
	friend class SfxAccCfgTabListBox_Impl;
347
private:
347
private:
348
	const SfxMacroInfoItem*			m_pMacroInfoItem;
348
	const SfxMacroInfoItem*			m_pMacroInfoItem;
349
	SfxAccCfgTabListBox_Impl		aEntriesBox;
349
	SfxAccCfgTabListBox_Impl		aEntriesBox;
(-)sfx2/source/control/dispatch.cxx.orig (-1 / +1 lines)
Lines 1294-1300 Link Here
1294
	const SfxPoolItem* pRet = Execute(
1294
	const SfxPoolItem* pRet = Execute(
1295
		rItem.GetSlot(), rItem.GetCallMode(), pPtr, rItem.GetModifier() );
1295
		rItem.GetSlot(), rItem.GetCallMode(), pPtr, rItem.GetModifier() );
1296
1296
1297
	__DELETE(rItem.Count() + 1) (SfxPoolItem**)pPtr;
1297
	delete [] (SfxPoolItem**)pPtr;
1298
1298
1299
	return pRet;
1299
	return pRet;
1300
}
1300
}
(-)sfx2/source/toolbox/tbxcust.cxx.orig (-1 / +5 lines)
Lines 580-589 Link Here
580
	return 0;	
580
	return 0;	
581
}
581
}
582
582
583
struct std::hash< SfxConfigManager* >
583
namespace std {
584
template<> struct hash< SfxConfigManager* >
584
{
585
{
585
	size_t operator()(const SfxConfigManager* __s) const { return (size_t)__s; }
586
	size_t operator()(const SfxConfigManager* __s) const { return (size_t)__s; }
586
};
587
};
588
589
590
}  // namespace std
587
 
591
 
588
struct SfxConfigManagerPtrEqual
592
struct SfxConfigManagerPtrEqual
589
{
593
{
(-)sfx2/source/inc/scriptcont.hxx.orig (-1 / +1 lines)
Lines 182-188 Link Here
182
182
183
class SfxScriptLibrary : public SfxLibrary_Impl
183
class SfxScriptLibrary : public SfxLibrary_Impl
184
{
184
{
185
    friend SfxScriptLibraryContainer;
185
    friend class SfxScriptLibraryContainer;
186
186
187
	sal_Bool mbLoadedSource;
187
	sal_Bool mbLoadedSource;
188
	sal_Bool mbLoadedBinary;
188
	sal_Bool mbLoadedBinary;
(-)sfx2/source/bastyp/minarray.cxx.orig (-18 / +18 lines)
Lines 102-108 Link Here
102
SfxPtrArr::~SfxPtrArr()
102
SfxPtrArr::~SfxPtrArr()
103
{
103
{
104
	DBG_MEMTEST();
104
	DBG_MEMTEST();
105
	__DELETE (DEL_ARRAY (nUsed+nUnused)) pData;
105
	delete [] pData;
106
}
106
}
107
107
108
// -----------------------------------------------------------------------
108
// -----------------------------------------------------------------------
Lines 111-117 Link Here
111
{
111
{
112
	DBG_MEMTEST();
112
	DBG_MEMTEST();
113
113
114
	__DELETE (DEL_ARRAY (nUsed+nUnused)) pData;
114
	delete [] pData;
115
115
116
	nUsed = rOrig.nUsed;
116
	nUsed = rOrig.nUsed;
117
	nGrow = rOrig.nGrow;
117
	nGrow = rOrig.nGrow;
Lines 142-148 Link Here
142
		{
142
		{
143
			DBG_ASSERT( nUsed <= nNewSize, "" );
143
			DBG_ASSERT( nUsed <= nNewSize, "" );
144
			memmove( pNewData, pData, sizeof(void*)*nUsed );
144
			memmove( pNewData, pData, sizeof(void*)*nUsed );
145
			__DELETE (DEL_ARRAY (nUsed)) pData;
145
			delete [] pData;
146
		}
146
		}
147
		nUnused = nNewSize-nUsed;
147
		nUnused = nNewSize-nUsed;
148
		pData = pNewData;
148
		pData = pNewData;
Lines 169-175 Link Here
169
	// bleibt vielleicht keiner uebrig
169
	// bleibt vielleicht keiner uebrig
170
	if ( (nUsed-nLen) == 0 )
170
	if ( (nUsed-nLen) == 0 )
171
	{
171
	{
172
		__DELETE (DEL_ARRAY (nUsed+nUnused)) pData;
172
		delete [] pData;
173
		pData = 0;
173
		pData = 0;
174
		nUsed = 0;
174
		nUsed = 0;
175
		nUnused = 0;
175
		nUnused = 0;
Lines 193-199 Link Here
193
		if ( nNewUsed != nPos )
193
		if ( nNewUsed != nPos )
194
			memmove( pNewData+nPos, pData+nPos+nLen,
194
			memmove( pNewData+nPos, pData+nPos+nLen,
195
					 sizeof(void*)*(nNewUsed-nPos) );
195
					 sizeof(void*)*(nNewUsed-nPos) );
196
		__DELETE (DEL_ARRAY (nUsed+nUnused)) pData;
196
		delete [] pData;
197
		pData = pNewData;
197
		pData = pNewData;
198
		nUsed = nNewUsed;
198
		nUsed = nNewUsed;
199
		nUnused = nNewSize - nNewUsed;
199
		nUnused = nNewSize - nNewUsed;
Lines 283-289 Link Here
283
		{
283
		{
284
			DBG_ASSERT( nUsed < nNewSize, "" );
284
			DBG_ASSERT( nUsed < nNewSize, "" );
285
			memmove( pNewData, pData, sizeof(void*)*nUsed );
285
			memmove( pNewData, pData, sizeof(void*)*nUsed );
286
			__DELETE (DEL_ARRAY (nUsed)) pData;
286
			delete [] pData;
287
		}
287
		}
288
		nUnused = nNewSize-nUsed;
288
		nUnused = nNewSize-nUsed;
289
		pData = pNewData;
289
		pData = pNewData;
Lines 338-344 Link Here
338
ByteArr::~ByteArr()
338
ByteArr::~ByteArr()
339
{
339
{
340
	DBG_MEMTEST();
340
	DBG_MEMTEST();
341
	__DELETE (DEL_ARRAY (nUsed+nUnused)) pData;
341
	delete [] pData;
342
}
342
}
343
343
344
// -----------------------------------------------------------------------
344
// -----------------------------------------------------------------------
Lines 347-353 Link Here
347
{
347
{
348
	DBG_MEMTEST();
348
	DBG_MEMTEST();
349
349
350
	__DELETE (DEL_ARRAY (nUsed+nUnused)) pData;
350
	delete [] pData;
351
351
352
	nUsed = rOrig.nUsed;
352
	nUsed = rOrig.nUsed;
353
	nGrow = rOrig.nGrow;
353
	nGrow = rOrig.nGrow;
Lines 377-383 Link Here
377
		{
377
		{
378
			DBG_ASSERT( nUsed <= nNewSize, "" );
378
			DBG_ASSERT( nUsed <= nNewSize, "" );
379
			memmove( pNewData, pData, sizeof(char)*nUsed );
379
			memmove( pNewData, pData, sizeof(char)*nUsed );
380
			__DELETE (DEL_ARRAY (nUsed+nUnused)) pData;
380
			delete [] pData;
381
		}
381
		}
382
		nUnused = nNewSize-nUsed;
382
		nUnused = nNewSize-nUsed;
383
		pData = pNewData;
383
		pData = pNewData;
Lines 404-410 Link Here
404
	// bleibt vielleicht keiner uebrig
404
	// bleibt vielleicht keiner uebrig
405
	if ( (nUsed-nLen) == 0 )
405
	if ( (nUsed-nLen) == 0 )
406
	{
406
	{
407
		__DELETE (DEL_ARRAY (nUsed+nUnused)) pData;
407
		delete [] pData;
408
		pData = 0;
408
		pData = 0;
409
		nUsed = 0;
409
		nUsed = 0;
410
		nUnused = 0;
410
		nUnused = 0;
Lines 428-434 Link Here
428
		if ( nNewUsed != nPos )
428
		if ( nNewUsed != nPos )
429
			memmove( pNewData+nPos, pData+nPos+nLen,
429
			memmove( pNewData+nPos, pData+nPos+nLen,
430
					 sizeof(char)*(nNewUsed-nPos) );
430
					 sizeof(char)*(nNewUsed-nPos) );
431
		__DELETE (DEL_ARRAY (nUsed+nUnused)) pData;
431
		delete [] pData;
432
		pData = pNewData;
432
		pData = pNewData;
433
		nUsed = nNewUsed;
433
		nUsed = nNewUsed;
434
		nUnused = nNewSize - nNewUsed;
434
		nUnused = nNewSize - nNewUsed;
Lines 497-503 Link Here
497
		{
497
		{
498
			DBG_ASSERT( nUsed < nNewSize, "" );
498
			DBG_ASSERT( nUsed < nNewSize, "" );
499
			memmove( pNewData, pData, sizeof(char)*nUsed );
499
			memmove( pNewData, pData, sizeof(char)*nUsed );
500
			__DELETE (DEL_ARRAY (nUsed)) pData;
500
			delete [] pData;
501
		}
501
		}
502
		nUnused = nNewSize-nUsed;
502
		nUnused = nNewSize-nUsed;
503
		pData = pNewData;
503
		pData = pNewData;
Lines 570-576 Link Here
570
WordArr::~WordArr()
570
WordArr::~WordArr()
571
{
571
{
572
	DBG_MEMTEST();
572
	DBG_MEMTEST();
573
	__DELETE (DEL_ARRAY (nUsed+nUnused)) pData;
573
	delete [] pData;
574
}
574
}
575
575
576
// -----------------------------------------------------------------------
576
// -----------------------------------------------------------------------
Lines 579-585 Link Here
579
{
579
{
580
	DBG_MEMTEST();
580
	DBG_MEMTEST();
581
581
582
	__DELETE (DEL_ARRAY (nUsed+nUnused)) pData;
582
	delete [] pData;
583
583
584
	nUsed = rOrig.nUsed;
584
	nUsed = rOrig.nUsed;
585
	nGrow = rOrig.nGrow;
585
	nGrow = rOrig.nGrow;
Lines 609-615 Link Here
609
		{
609
		{
610
			DBG_ASSERT( nUsed <= nNewSize, " " );
610
			DBG_ASSERT( nUsed <= nNewSize, " " );
611
			memmove( pNewData, pData, sizeof(short)*nUsed );
611
			memmove( pNewData, pData, sizeof(short)*nUsed );
612
			__DELETE (DEL_ARRAY (nUsed)) pData;
612
			delete [] pData;
613
		}
613
		}
614
		nUnused = nNewSize-nUsed;
614
		nUnused = nNewSize-nUsed;
615
		pData = pNewData;
615
		pData = pNewData;
Lines 636-642 Link Here
636
	// bleibt vielleicht keiner uebrig
636
	// bleibt vielleicht keiner uebrig
637
	if ( (nUsed-nLen) == 0 )
637
	if ( (nUsed-nLen) == 0 )
638
	{
638
	{
639
		__DELETE (DEL_ARRAY (nUsed+nUnused)) pData;
639
		delete [] pData;
640
		pData = 0;
640
		pData = 0;
641
		nUsed = 0;
641
		nUsed = 0;
642
		nUnused = 0;
642
		nUnused = 0;
Lines 660-666 Link Here
660
		if ( nNewUsed != nPos )
660
		if ( nNewUsed != nPos )
661
			memmove( pNewData+nPos, pData+nPos+nLen,
661
			memmove( pNewData+nPos, pData+nPos+nLen,
662
					 sizeof(short)*(nNewUsed-nPos) );
662
					 sizeof(short)*(nNewUsed-nPos) );
663
			__DELETE (DEL_ARRAY (nUsed+nUnused)) pData;
663
			delete [] pData;
664
		pData = pNewData;
664
		pData = pNewData;
665
		nUsed = nNewUsed;
665
		nUsed = nNewUsed;
666
		nUnused = nNewSize - nNewUsed;
666
		nUnused = nNewSize - nNewUsed;
Lines 729-735 Link Here
729
		{
729
		{
730
			DBG_ASSERT( nUsed < nNewSize, "" );
730
			DBG_ASSERT( nUsed < nNewSize, "" );
731
			memmove( pNewData, pData, sizeof(short)*nUsed );
731
			memmove( pNewData, pData, sizeof(short)*nUsed );
732
			__DELETE (DEL_ARRAY (nUsed)) pData;
732
			delete [] pData;
733
		}
733
		}
734
		nUnused = nNewSize-nUsed;
734
		nUnused = nNewSize-nUsed;
735
		pData = pNewData;
735
		pData = pNewData;
(-)sfx2/source/menu/virtmenu.cxx.orig (-1 / +1 lines)
Lines 349-355 Link Here
349
			(pItems+n)->SfxMenuControl::~SfxMenuControl();
349
			(pItems+n)->SfxMenuControl::~SfxMenuControl();
350
		delete (void*) pItems;
350
		delete (void*) pItems;
351
#else
351
#else
352
		__DELETE(nCount) pItems;
352
		delete [] pItems;
353
#endif
353
#endif
354
	}
354
	}
355
355
(-)connectivity/source/parse/sqlNoException.cxx.orig (-2 lines)
Lines 119-126 Link Here
119
	}
119
	}
120
	// -----------------------------------------------------------------------------
120
	// -----------------------------------------------------------------------------
121
}
121
}
122
// -----------------------------------------------------------------------------
123
DBG_NAME(OSQLParseNode);
124
//-----------------------------------------------------------------------------
122
//-----------------------------------------------------------------------------
125
OSQLParseNode::OSQLParseNode(const sal_Char * pNewValue,
123
OSQLParseNode::OSQLParseNode(const sal_Char * pNewValue,
126
							 SQLNodeType eNewNodeType,
124
							 SQLNodeType eNewNodeType,
(-)connectivity/source/drivers/mozab/makefile.mk.orig (-1 / +1 lines)
Lines 66-72 Link Here
66
TARGET=$(MOZAB_TARGET)
66
TARGET=$(MOZAB_TARGET)
67
TARGET2=$(MOZAB_TARGET)drv
67
TARGET2=$(MOZAB_TARGET)drv
68
68
69
.IF "$(OS)"=="MACOSX" || "$(WITH_MOZILLA)" == "NO"
69
.IF "$(OS)"=="MACOSX" || "$(WITH_MOZILLA)" == "YES"
70
all: 
70
all: 
71
	@echo "		Not building the mozabsrc stuff in OpenOffice.org build"
71
	@echo "		Not building the mozabsrc stuff in OpenOffice.org build"
72
	@echo "		dependency to Mozilla developer snapshots not feasable at the moment"
72
	@echo "		dependency to Mozilla developer snapshots not feasable at the moment"
(-)connectivity/source/drivers/mozab/mozillasrc/makefile.mk.orig (-1 / +1 lines)
Lines 85-91 Link Here
85
85
86
.INCLUDE : settings.mk
86
.INCLUDE : settings.mk
87
87
88
.IF "$(OS)"=="MACOSX" || "$(WITH_MOZILLA)" == "NO"
88
.IF "$(OS)"=="MACOSX" || "$(WITH_MOZILLA)" == "YES"
89
89
90
dummy:
90
dummy:
91
	@echo "		Not building the mozillasrc stuff in OpenOffice.org build"
91
	@echo "		Not building the mozillasrc stuff in OpenOffice.org build"
(-)svx/inc/frmsel.hxx.orig (-2 / +2 lines)
Lines 172-179 Link Here
172
172
173
class SvxFrameSelector : public Control
173
class SvxFrameSelector : public Control
174
{
174
{
175
    friend SvxFrameSelectorAccessible_Impl;
175
    friend class SvxFrameSelectorAccessible_Impl;
176
	friend SvxFrameSelector_Impl;
176
	friend class SvxFrameSelector_Impl;
177
177
178
    SvxFrameShadow      eShadow;        // Schattenposition
178
    SvxFrameShadow      eShadow;        // Schattenposition
179
    Color               aShadowCol;   // aktuelle Schattenfarbe
179
    Color               aShadowCol;   // aktuelle Schattenfarbe
(-)svx/source/inc/hlmarkwn.hxx.orig (-1 / +1 lines)
Lines 114-120 Link Here
114
class SvxHlinkDlgMarkWnd : public ModalDialog //FloatingWindow
114
class SvxHlinkDlgMarkWnd : public ModalDialog //FloatingWindow
115
{
115
{
116
private:
116
private:
117
	friend SvxHlmarkTreeLBox;
117
	friend class SvxHlmarkTreeLBox;
118
118
119
	PushButton		maBtApply;
119
	PushButton		maBtApply;
120
	PushButton		maBtClose;
120
	PushButton		maBtClose;
(-)svx/source/fmcomp/gridcell.cxx.orig (-9 lines)
Lines 3040-3048 Link Here
3040
3040
3041
3041
3042
/*************************************************************************/
3042
/*************************************************************************/
3043
SMART_UNO_IMPLEMENTATION(FmXEditCell, FmXTextCell);
3044
3045
3046
DBG_NAME(FmXEditCell);
3043
DBG_NAME(FmXEditCell);
3047
//------------------------------------------------------------------------------
3044
//------------------------------------------------------------------------------
3048
FmXEditCell::FmXEditCell(DbGridColumn* pColumn, DbCellControl* pControl)
3045
FmXEditCell::FmXEditCell(DbGridColumn* pColumn, DbCellControl* pControl)
Lines 3248-3256 Link Here
3248
}
3245
}
3249
3246
3250
/*************************************************************************/
3247
/*************************************************************************/
3251
SMART_UNO_IMPLEMENTATION(FmXCheckBoxCell, FmXDataCell);
3252
3253
3254
DBG_NAME(FmXCheckBoxCell);
3248
DBG_NAME(FmXCheckBoxCell);
3255
//------------------------------------------------------------------------------
3249
//------------------------------------------------------------------------------
3256
FmXCheckBoxCell::FmXCheckBoxCell(DbGridColumn* pColumn, DbCellControl* pControl)
3250
FmXCheckBoxCell::FmXCheckBoxCell(DbGridColumn* pColumn, DbCellControl* pControl)
Lines 3394-3402 Link Here
3394
}
3388
}
3395
3389
3396
/*************************************************************************/
3390
/*************************************************************************/
3397
SMART_UNO_IMPLEMENTATION(FmXListBoxCell, FmXTextCell);
3398
3399
3400
DBG_NAME(FmXListBoxCell);
3391
DBG_NAME(FmXListBoxCell);
3401
//------------------------------------------------------------------------------
3392
//------------------------------------------------------------------------------
3402
FmXListBoxCell::FmXListBoxCell(DbGridColumn* pColumn, DbCellControl* pControl)
3393
FmXListBoxCell::FmXListBoxCell(DbGridColumn* pColumn, DbCellControl* pControl)
(-)sc/inc/scextopt.hxx.orig (-1 / +1 lines)
Lines 140-146 Link Here
140
{
140
{
141
// Code: colrowst.cxx
141
// Code: colrowst.cxx
142
private:
142
private:
143
	friend ColRowSettings;
143
	friend class ColRowSettings;
144
	// Window -Info
144
	// Window -Info
145
	ScExtTabOptions**		ppExtTabOpts;
145
	ScExtTabOptions**		ppExtTabOpts;
146
146
(-)sc/source/filter/inc/lotrange.hxx.orig (-1 / +1 lines)
Lines 75-81 Link Here
75
75
76
class LotusRange
76
class LotusRange
77
{
77
{
78
	friend LotusRangeList;
78
	friend class LotusRangeList;
79
private:
79
private:
80
	UINT32				nHash;
80
	UINT32				nHash;
81
	UINT16				nColStart;
81
	UINT16				nColStart;
(-)sc/source/filter/inc/lotattr.hxx.orig (-1 / +1 lines)
Lines 109-115 Link Here
109
class LotAttrCache : private List
109
class LotAttrCache : private List
110
{
110
{
111
private:
111
private:
112
	friend LotAttrTable;
112
	friend class LotAttrTable;
113
113
114
	struct ENTRY
114
	struct ENTRY
115
	{
115
	{
(-)sc/source/filter/inc/namebuff.hxx.orig (-1 / +1 lines)
Lines 89-95 Link Here
89
class StringHashEntry
89
class StringHashEntry
90
{
90
{
91
private:
91
private:
92
	friend NameBuffer;
92
	friend class NameBuffer;
93
	String			aString;
93
	String			aString;
94
	UINT32			nHash;
94
	UINT32			nHash;
95
95
(-)sc/source/filter/inc/colrowst.hxx.orig (-1 / +1 lines)
Lines 93-99 Link Here
93
{
93
{
94
private:
94
private:
95
	// ACHTUNG: Col-/Row-Angaben in TWIPS
95
	// ACHTUNG: Col-/Row-Angaben in TWIPS
96
	friend ScExtDocOptions;
96
	friend class ScExtDocOptions;
97
97
98
    ScfUInt16List*      pHorizPb;   // horizontale Seitenumbrueche
98
    ScfUInt16List*      pHorizPb;   // horizontale Seitenumbrueche
99
    ScfUInt16List*      pVertPb;    // vertikale ~
99
    ScfUInt16List*      pVertPb;    // vertikale ~
(-)sc/source/filter/inc/xcl97rec.hxx.orig (-1 / +1 lines)
Lines 655-661 Link Here
655
class XclCf : public ExcRecord, protected XclExpRoot
655
class XclCf : public ExcRecord, protected XclExpRoot
656
{
656
{
657
private:
657
private:
658
	friend XclCondFormat;
658
	friend class XclCondFormat;
659
659
660
	sal_Char*					pVarData;		// formats + formulas
660
	sal_Char*					pVarData;		// formats + formulas
661
	UINT16						nVarLen;		// len of attributes + formulas
661
	UINT16						nVarLen;		// len of attributes + formulas
(-)sc/source/filter/inc/dif.hxx.orig (-1 / +1 lines)
Lines 208-214 Link Here
208
class DifColumn : private List
208
class DifColumn : private List
209
{
209
{
210
private:
210
private:
211
	friend DifAttrCache;
211
	friend class DifAttrCache;
212
	struct ENTRY
212
	struct ENTRY
213
	{
213
	{
214
		UINT32			nNumFormat;
214
		UINT32			nNumFormat;
(-)sw/source/filter/ww8/wrtww8.hxx.orig (-1 / +1 lines)
Lines 406-412 Link Here
406
class SwWW8Writer: public StgWriter
406
class SwWW8Writer: public StgWriter
407
{
407
{
408
friend bool WW8_WrPlcSepx::WriteKFTxt( SwWW8Writer& rWrt ); // pO
408
friend bool WW8_WrPlcSepx::WriteKFTxt( SwWW8Writer& rWrt ); // pO
409
friend void WW8_WrPlcSepx::WriteOlst( SwWW8Writer& rWrt, USHORT i );
409
friend class WW8_WrPlcSepx;
410
friend Writer& OutWW8_SwTxtNode( Writer& rWrt, SwCntntNode& rNode );
410
friend Writer& OutWW8_SwTxtNode( Writer& rWrt, SwCntntNode& rNode );
411
411
412
    wwFontHelper maFontHelper;
412
    wwFontHelper maFontHelper;
(-)sw/source/core/doc/doclay.cxx.orig (-1 / +1 lines)
Lines 1883-1889 Link Here
1883
			break;
1883
			break;
1884
		}
1884
		}
1885
1885
1886
	__DELETE( nFlagSize ) pSetFlags;
1886
	delete [] pSetFlags;
1887
	return aName += String::CreateFromInt32( ++nNum );
1887
	return aName += String::CreateFromInt32( ++nNum );
1888
}
1888
}
1889
1889
(-)sw/source/core/doc/docnum.cxx.orig (-1 / +1 lines)
Lines 2188-2194 Link Here
2188
			}
2188
			}
2189
2189
2190
	}
2190
	}
2191
	__DELETE( nFlagSize ) pSetFlags;
2191
	delete [] pSetFlags;
2192
	if( pChkStr && pChkStr->Len() )
2192
	if( pChkStr && pChkStr->Len() )
2193
		return *pChkStr;
2193
		return *pChkStr;
2194
	return aName += String::CreateFromInt32( ++nNum );
2194
	return aName += String::CreateFromInt32( ++nNum );
(-)sw/source/core/doc/docsort.cxx.orig (-2 / +2 lines)
Lines 887-896 Link Here
887
FlatFndBox::~FlatFndBox()
887
FlatFndBox::~FlatFndBox()
888
{
888
{
889
	_FndBox** ppTmp = (_FndBox**)pArr;
889
	_FndBox** ppTmp = (_FndBox**)pArr;
890
	__DELETE(nRows * nCols * sizeof(_FndBoxPtr)) ppTmp;
890
	delete [] ppTmp;
891
891
892
	if( ppItemSets )
892
	if( ppItemSets )
893
		__DELETE(nRows * nCols * sizeof(SfxItemSet*)) ppItemSets;
893
		delete [] ppItemSets;
894
}
894
}
895
895
896
/*--------------------------------------------------------------------
896
/*--------------------------------------------------------------------
(-)sw/source/core/doc/doctxm.cxx.orig (-1 / +1 lines)
Lines 848-854 Link Here
848
				break;
848
				break;
849
			}
849
			}
850
	}
850
	}
851
	__DELETE( nFlagSize ) pSetFlags;
851
	delete [] pSetFlags;
852
	if( pChkStr )
852
	if( pChkStr )
853
		return *pChkStr;
853
		return *pChkStr;
854
	return aName += String::CreateFromInt32( ++nNum );
854
	return aName += String::CreateFromInt32( ++nNum );
(-)sw/source/core/txtnode/thints.cxx.orig (-1 / +1 lines)
Lines 1075-1081 Link Here
1075
							// uneindeutig
1075
							// uneindeutig
1076
							rSet.InvalidateItem( nWh );
1076
							rSet.InvalidateItem( nWh );
1077
					}
1077
					}
1078
				__DELETE( coArrSz ) aAttrArr;
1078
				delete [] aAttrArr;
1079
			}
1079
			}
1080
		}
1080
		}
1081
		if( aFmtSet.Count() )
1081
		if( aFmtSet.Count() )
(-)sw/source/ui/inc/cfgitems.hxx.orig (-5 / +5 lines)
Lines 94-102 Link Here
94
--------------------------------------------------------- */
94
--------------------------------------------------------- */
95
class SwDocDisplayItem : public SfxPoolItem
95
class SwDocDisplayItem : public SfxPoolItem
96
{
96
{
97
	friend SwWriterApp;
97
	friend class SwWriterApp;
98
    friend SwShdwCrsrOptionsTabPage;
98
    friend class SwShdwCrsrOptionsTabPage;
99
    friend SwModule;
99
    friend class SwModule;
100
100
101
    BOOL bParagraphEnd      :1;
101
    BOOL bParagraphEnd      :1;
102
    BOOL bTab               :1;
102
    BOOL bTab               :1;
Lines 148-154 Link Here
148
	BOOL bFieldName			:1;
148
	BOOL bFieldName			:1;
149
	BOOL bNotes				:1;
149
	BOOL bNotes				:1;
150
150
151
    friend SwContentOptPage;
151
    friend class SwContentOptPage;
152
152
153
public:
153
public:
154
							TYPEINFO();
154
							TYPEINFO();
Lines 170-176 Link Here
170
170
171
class SwAddPrinterItem : public SfxPoolItem, public SwPrintData
171
class SwAddPrinterItem : public SfxPoolItem, public SwPrintData
172
{
172
{
173
	friend 	SwAddPrinterTabPage;
173
	friend class SwAddPrinterTabPage;
174
174
175
public:
175
public:
176
	TYPEINFO();
176
	TYPEINFO();
(-)sw/source/ui/inc/glossary.hxx.orig (-2 / +2 lines)
Lines 163-170 Link Here
163
class SwOneExampleFrame;
163
class SwOneExampleFrame;
164
class SwGlossaryDlg : public SvxStandardDialog
164
class SwGlossaryDlg : public SvxStandardDialog
165
{
165
{
166
	friend SwNewGlosNameDlg;
166
	friend class SwNewGlosNameDlg;
167
	friend SwGlTreeListBox;
167
	friend class SwGlTreeListBox;
168
168
169
	CheckBox		aInsertTipCB;
169
	CheckBox		aInsertTipCB;
170
	FixedText		aNameLbl;
170
	FixedText		aNameLbl;
(-)sw/source/core/undo/undraw.cxx.orig (-3 / +3 lines)
Lines 308-314 Link Here
308
	else
308
	else
309
		delete pObjArr->pFmt;		// das GroupObject-Format
309
		delete pObjArr->pFmt;		// das GroupObject-Format
310
310
311
	__DELETE ( nSize ) pObjArr;
311
	delete [] pObjArr;
312
}
312
}
313
313
314
void SwUndoDrawGroup::Undo( SwUndoIter& )
314
void SwUndoDrawGroup::Undo( SwUndoIter& )
Lines 471-477 Link Here
471
	else
471
	else
472
		delete pObjArr->pFmt;		// das GroupObject-Format
472
		delete pObjArr->pFmt;		// das GroupObject-Format
473
473
474
	__DELETE ( nSize ) pObjArr;
474
	delete [] pObjArr;
475
}
475
}
476
476
477
void SwUndoDrawUnGroup::Undo( SwUndoIter& rIter )
477
void SwUndoDrawUnGroup::Undo( SwUndoIter& rIter )
Lines 584-590 Link Here
584
		for( USHORT n = 0; n < pMarkLst->GetMarkCount(); ++n, ++pTmp )
584
		for( USHORT n = 0; n < pMarkLst->GetMarkCount(); ++n, ++pTmp )
585
			delete pTmp->pFmt;
585
			delete pTmp->pFmt;
586
	}
586
	}
587
	__DELETE ( nSize ) pObjArr;
587
	delete [] pObjArr;
588
	delete pMarkLst;
588
	delete pMarkLst;
589
}
589
}
590
590
(-)sw/source/core/docnode/ndsect.cxx.orig (-1 / +1 lines)
Lines 1454-1460 Link Here
1454
			}
1454
			}
1455
1455
1456
	}
1456
	}
1457
	__DELETE( nFlagSize ) pSetFlags;
1457
	delete [] pSetFlags;
1458
	if( pChkStr )
1458
	if( pChkStr )
1459
		return *pChkStr;
1459
		return *pChkStr;
1460
	return aName += String::CreateFromInt32( ++nNum );
1460
	return aName += String::CreateFromInt32( ++nNum );
(-)sw/source/core/docnode/ndtbl.cxx.orig (-1 / +1 lines)
Lines 3313-3319 Link Here
3313
			break;
3313
			break;
3314
		}
3314
		}
3315
3315
3316
	__DELETE( nFlagSize ) pSetFlags;
3316
	delete [] pSetFlags;
3317
	return aName += String::CreateFromInt32( ++nNum );
3317
	return aName += String::CreateFromInt32( ++nNum );
3318
}
3318
}
3319
3319
(-)sw/source/core/bastyp/calc.cxx.orig (-1 / +1 lines)
Lines 1745-1751 Link Here
1745
{
1745
{
1746
	for ( USHORT i = 0; i < nCount; ++i )
1746
	for ( USHORT i = 0; i < nCount; ++i )
1747
		delete *(ppHashTable+i);
1747
		delete *(ppHashTable+i);
1748
	__DELETE(nCount) ppHashTable;
1748
	delete [] ppHashTable;
1749
}
1749
}
1750
1750
1751
SwCalcExp::SwCalcExp( const String& rStr, const SwSbxValue& rVal,
1751
SwCalcExp::SwCalcExp( const String& rStr, const SwSbxValue& rVal,
(-)sw/source/ui/wizard/wizpage.hxx.orig (-1 / +1 lines)
Lines 121-127 Link Here
121
121
122
class WizardFrame
122
class WizardFrame
123
{
123
{
124
friend WizardIni;
124
friend class WizardIni;
125
	BOOL b2ndHide;
125
	BOOL b2ndHide;
126
	BOOL bIsDa;
126
	BOOL bIsDa;
127
protected:
127
protected:
(-)sw/source/ui/wizard/wizag.hxx.orig (-2 / +2 lines)
Lines 122-128 Link Here
122
#define DIALOGLINES 6
122
#define DIALOGLINES 6
123
class AgenList
123
class AgenList
124
{
124
{
125
friend AgenDialog;
125
friend class AgenDialog;
126
	AgendaDlgRec aRec[DIALOGLINES];
126
	AgendaDlgRec aRec[DIALOGLINES];
127
	AgenDialog*  pDlg;
127
	AgenDialog*  pDlg;
128
	ScrollBar*   pScrl;
128
	ScrollBar*   pScrl;
Lines 158-164 Link Here
158
158
159
class AgenDialog: public WizardAgenDialog, private WizardGo
159
class AgenDialog: public WizardAgenDialog, private WizardGo
160
{
160
{
161
friend AgenList;
161
friend class AgenList;
162
	WizardAgenPage 		aPage1;
162
	WizardAgenPage 		aPage1;
163
	SwAgendaWizardCfg   aConfig;
163
	SwAgendaWizardCfg   aConfig;
164
	AgenList       		aList;
164
	AgenList       		aList;
(-)sw/source/ui/wizard/wizmulti.cxx.orig (-1 / +1 lines)
Lines 176-182 Link Here
176
MultiDialog::~MultiDialog()
176
MultiDialog::~MultiDialog()
177
{
177
{
178
	if( WinList )
178
	if( WinList )
179
		__DELETE( StepAnz ) WinList;
179
		delete [] WinList;
180
}
180
}
181
181
182
void MultiDialog::Init(Button* pPrev, Button* pNext)
182
void MultiDialog::Init(Button* pPrev, Button* pNext)
(-)sw/source/filter/ww1/w1class.hxx.orig (-1 / +1 lines)
Lines 352-358 Link Here
352
		return 256; }
352
		return 256; }
353
	friend ostream& operator <<(ostream&, Ww1StyleSheet&);
353
	friend ostream& operator <<(ostream&, Ww1StyleSheet&);
354
	void Out(Ww1Shell&, Ww1Manager&);
354
	void Out(Ww1Shell&, Ww1Manager&);
355
	friend Ww1Style;
355
	friend class Ww1Style;
356
	BOOL GetError() {
356
	BOOL GetError() {
357
		return !bOK; }
357
		return !bOK; }
358
};
358
};
(-)dbaccess/source/core/dataaccess/SharedConnection.hxx.orig (-1 / +3 lines)
Lines 200-207 Link Here
200
        virtual sal_Int32 SAL_CALL getTransactionIsolation(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
200
        virtual sal_Int32 SAL_CALL getTransactionIsolation(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
201
        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);
201
        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);
202
	};
202
	};
203
	
203
204
#ifdef IMPLEMENT_GET_IMPLEMENTATION_ID
204
	IMPLEMENT_GET_IMPLEMENTATION_ID( OSharedConnection );
205
	IMPLEMENT_GET_IMPLEMENTATION_ID( OSharedConnection );
206
#endif
205
//........................................................................
207
//........................................................................
206
}	// namespace dbaccess
208
}	// namespace dbaccess
207
//........................................................................
209
//........................................................................
(-)comphelper/inc/comphelper/types.hxx (-9 / +9 lines)
Lines 2-10 Link Here
2
 *
2
 *
3
 *  $RCSfile: types.hxx,v $
3
 *  $RCSfile: types.hxx,v $
4
 *
4
 *
5
 *  $Revision: 1.5 $
5
 *  $Revision: 1.5.204.2 $
6
 *
6
 *
7
 *  last change: $Author: fs $ $Date: 2000/11/19 15:20:37 $
7
 *  last change: $Author: hr $ $Date: 2004/07/13 11:27:01 $
8
 *
8
 *
9
 *  The Contents of this file are made available subject to the terms of
9
 *  The Contents of this file are made available subject to the terms of
10
 *  either of the following licenses
10
 *  either of the following licenses
Lines 133-139 Link Here
133
	template <class TYPE>
133
	template <class TYPE>
134
	sal_Bool isA(const staruno::Type& _rType, TYPE* pDummy)
134
	sal_Bool isA(const staruno::Type& _rType, TYPE* pDummy)
135
	{
135
	{
136
		return  _rType.equals(::getCppuType(pDummy));
136
		return  _rType.equals(getCppuType(pDummy));
137
	}
137
	}
138
138
139
	//-------------------------------------------------------------------------
139
	//-------------------------------------------------------------------------
Lines 143-149 Link Here
143
	template <class TYPE>
143
	template <class TYPE>
144
	sal_Bool isA(const staruno::Any& _rVal, TYPE* pDummy)
144
	sal_Bool isA(const staruno::Any& _rVal, TYPE* pDummy)
145
	{
145
	{
146
		return  _rVal.getValueType().equals(::getCppuType(pDummy));
146
		return  _rVal.getValueType().equals(getCppuType(pDummy));
147
	}
147
	}
148
148
149
	//-------------------------------------------------------------------------
149
	//-------------------------------------------------------------------------
Lines 152-158 Link Here
152
	template <class TYPE>
152
	template <class TYPE>
153
	sal_Bool isAReference(const staruno::Type& _rType, TYPE* pDummy)
153
	sal_Bool isAReference(const staruno::Type& _rType, TYPE* pDummy)
154
	{
154
	{
155
		return  _rType.equals(::getCppuType(reinterpret_cast<staruno::Reference<TYPE>*>(NULL)));
155
		return  _rType.equals(getCppuType(reinterpret_cast<staruno::Reference<TYPE>*>(NULL)));
156
	}
156
	}
157
157
158
	//-------------------------------------------------------------------------
158
	//-------------------------------------------------------------------------
Lines 161-167 Link Here
161
	template <class TYPE>
161
	template <class TYPE>
162
	sal_Bool isAReference(const staruno::Any& _rVal, TYPE* pDummy)
162
	sal_Bool isAReference(const staruno::Any& _rVal, TYPE* pDummy)
163
	{
163
	{
164
		return  _rVal.getValueType().equals(::getCppuType(reinterpret_cast<staruno::Reference<TYPE>*>(NULL)));
164
		return  _rVal.getValueType().equals(getCppuType(reinterpret_cast<staruno::Reference<TYPE>*>(NULL)));
165
	}
165
	}
166
166
167
	//-------------------------------------------------------------------------
167
	//-------------------------------------------------------------------------
Lines 179-188 Link Here
179
	}
179
	}
180
	//-------------------------------------------------------------------------
180
	//-------------------------------------------------------------------------
181
	template <class TYPE>
181
	template <class TYPE>
182
	sal_Bool getImplementation(TYPE*& _pObject, const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxIFace)
182
	sal_Bool getImplementation(TYPE*& _pObject, const staruno::Reference< staruno::XInterface >& _rxIFace)
183
	{
183
	{
184
		_pObject = NULL;
184
		_pObject = NULL;
185
		::com::sun::star::uno::Reference< ::com::sun::star::lang::XUnoTunnel > xTunnel(_rxIFace, UNO_QUERY);
185
		staruno::Reference< starlang::XUnoTunnel > xTunnel(_rxIFace, staruno::UNO_QUERY);
186
		if (xTunnel.is())
186
		if (xTunnel.is())
187
			_pObject = reinterpret_cast< TYPE* >(xTunnel->getSomething(TYPE::getUnoTunnelImplementationId()));
187
			_pObject = reinterpret_cast< TYPE* >(xTunnel->getSomething(TYPE::getUnoTunnelImplementationId()));
188
188
Lines 199-205 Link Here
199
199
200
	/** examine a sequence for the <type scope="com.sun.star.uno">Type</type> of it's elements.
200
	/** examine a sequence for the <type scope="com.sun.star.uno">Type</type> of it's elements.
201
	*/
201
	*/
202
	::com::sun::star::uno::Type getSequenceElementType(const ::com::sun::star::uno::Type& _rSequenceType);
202
	staruno::Type getSequenceElementType(const staruno::Type& _rSequenceType);
203
203
204
//=========================================================================
204
//=========================================================================
205
//= replacement of the former UsrAny.getXXX methods
205
//= replacement of the former UsrAny.getXXX methods
(-)cppu/inc/com/sun/star/uno/Any.hxx (-4 / +4 lines)
Lines 191-204 Link Here
191
template< class C >
191
template< class C >
192
inline Any SAL_CALL makeAny( const C & value ) SAL_THROW( () )
192
inline Any SAL_CALL makeAny( const C & value ) SAL_THROW( () )
193
{ 
193
{ 
194
	return Any( &value, ::getCppuType( &value ) );
194
	return Any( &value, getCppuType( &value ) );
195
}
195
}
196
196
197
//__________________________________________________________________________________________________
197
//__________________________________________________________________________________________________
198
template< class C >
198
template< class C >
199
inline void SAL_CALL operator <<= ( Any & rAny, const C & value ) SAL_THROW( () )
199
inline void SAL_CALL operator <<= ( Any & rAny, const C & value ) SAL_THROW( () )
200
{ 
200
{ 
201
	const Type & rType = ::getCppuType( &value );
201
	const Type & rType = getCppuType( &value );
202
	::uno_type_any_assign(
202
	::uno_type_any_assign(
203
		&rAny, const_cast< C * >( &value ), rType.getTypeLibType(),
203
		&rAny, const_cast< C * >( &value ), rType.getTypeLibType(),
204
        (uno_AcquireFunc)cpp_acquire, (uno_ReleaseFunc)cpp_release );
204
        (uno_AcquireFunc)cpp_acquire, (uno_ReleaseFunc)cpp_release );
Lines 207-213 Link Here
207
template< class C >
207
template< class C >
208
inline sal_Bool SAL_CALL operator >>= ( const Any & rAny, C & value ) SAL_THROW( () )
208
inline sal_Bool SAL_CALL operator >>= ( const Any & rAny, C & value ) SAL_THROW( () )
209
{
209
{
210
	const Type & rType = ::getCppuType( &value );
210
	const Type & rType = getCppuType( &value );
211
	return ::uno_type_assignData(
211
	return ::uno_type_assignData(
212
		&value, rType.getTypeLibType(),
212
		&value, rType.getTypeLibType(),
213
		rAny.pData, rAny.pType,
213
		rAny.pData, rAny.pType,
Lines 510-516 Link Here
510
template< class C >
510
template< class C >
511
inline sal_Bool SAL_CALL operator == ( const Any & rAny, const C & value ) SAL_THROW( () )
511
inline sal_Bool SAL_CALL operator == ( const Any & rAny, const C & value ) SAL_THROW( () )
512
{
512
{
513
	const Type & rType = ::getCppuType( &value );
513
	const Type & rType = getCppuType( &value );
514
	return ::uno_type_equalData(
514
	return ::uno_type_equalData(
515
		rAny.pData, rAny.pType,
515
		rAny.pData, rAny.pType,
516
		const_cast< C * >( &value ), rType.getTypeLibType(),
516
		const_cast< C * >( &value ), rType.getTypeLibType(),
(-)cppu/inc/com/sun/star/uno/Reference.hxx (-2 / +2 lines)
Lines 104-110 Link Here
104
{
104
{
105
    return static_cast< interface_type * >(
105
    return static_cast< interface_type * >(
106
        BaseReference::iquery(
106
        BaseReference::iquery(
107
            pInterface, ::getCppuType( (const Reference< interface_type > *)0 ) ) );
107
            pInterface, getCppuType( (const Reference< interface_type > *)0 ) ) );
108
}
108
}
109
#ifndef EXCEPTIONS_OFF
109
#ifndef EXCEPTIONS_OFF
110
extern "C" rtl_uString * SAL_CALL cppu_unsatisfied_iquery_msg(
110
extern "C" rtl_uString * SAL_CALL cppu_unsatisfied_iquery_msg(
Lines 129-135 Link Here
129
{
129
{
130
    return static_cast< interface_type * >(
130
    return static_cast< interface_type * >(
131
        BaseReference::iquery_throw(
131
        BaseReference::iquery_throw(
132
            pInterface, ::getCppuType( (const Reference< interface_type > *)0 ) ) );
132
            pInterface, getCppuType( (const Reference< interface_type > *)0 ) ) );
133
}
133
}
134
#endif
134
#endif
135
135
(-)cppu/inc/com/sun/star/uno/Sequence.hxx (-10 / +10 lines)
Lines 97-103 Link Here
97
template< class E >
97
template< class E >
98
inline Sequence< E >::Sequence() SAL_THROW( () )
98
inline Sequence< E >::Sequence() SAL_THROW( () )
99
{
99
{
100
	const Type & rType = ::getCppuType( this );
100
	const Type & rType = getCppuType( this );
101
	::uno_type_sequence_construct(
101
	::uno_type_sequence_construct(
102
        &_pSequence, rType.getTypeLibType(),
102
        &_pSequence, rType.getTypeLibType(),
103
        0, 0, (uno_AcquireFunc)cpp_acquire );
103
        0, 0, (uno_AcquireFunc)cpp_acquire );
Lines 119-125 Link Here
119
template< class E >
119
template< class E >
120
inline Sequence< E >::Sequence( const E * pElements, sal_Int32 len ) SAL_THROW( () )
120
inline Sequence< E >::Sequence( const E * pElements, sal_Int32 len ) SAL_THROW( () )
121
{
121
{
122
	const Type & rType = ::getCppuType( this );
122
	const Type & rType = getCppuType( this );
123
	::uno_type_sequence_construct(
123
	::uno_type_sequence_construct(
124
		&_pSequence, rType.getTypeLibType(),
124
		&_pSequence, rType.getTypeLibType(),
125
        const_cast< E * >( pElements ), len, (uno_AcquireFunc)cpp_acquire );
125
        const_cast< E * >( pElements ), len, (uno_AcquireFunc)cpp_acquire );
Lines 128-134 Link Here
128
template< class E >
128
template< class E >
129
inline Sequence< E >::Sequence( sal_Int32 len ) SAL_THROW( () )
129
inline Sequence< E >::Sequence( sal_Int32 len ) SAL_THROW( () )
130
{
130
{
131
	const Type & rType = ::getCppuType( this );
131
	const Type & rType = getCppuType( this );
132
	::uno_type_sequence_construct(
132
	::uno_type_sequence_construct(
133
		&_pSequence, rType.getTypeLibType(),
133
		&_pSequence, rType.getTypeLibType(),
134
        0, len, (uno_AcquireFunc)cpp_acquire );
134
        0, len, (uno_AcquireFunc)cpp_acquire );
Lines 137-143 Link Here
137
template< class E >
137
template< class E >
138
inline Sequence< E >::~Sequence() SAL_THROW( () )
138
inline Sequence< E >::~Sequence() SAL_THROW( () )
139
{
139
{
140
	const Type & rType = ::getCppuType( this );
140
	const Type & rType = getCppuType( this );
141
	::uno_type_destructData(
141
	::uno_type_destructData(
142
		this, rType.getTypeLibType(), (uno_ReleaseFunc)cpp_release );
142
		this, rType.getTypeLibType(), (uno_ReleaseFunc)cpp_release );
143
}
143
}
Lines 145-151 Link Here
145
template< class E >
145
template< class E >
146
inline Sequence< E > & Sequence< E >::operator = ( const Sequence< E > & rSeq ) SAL_THROW( () )
146
inline Sequence< E > & Sequence< E >::operator = ( const Sequence< E > & rSeq ) SAL_THROW( () )
147
{
147
{
148
	const Type & rType = ::getCppuType( this );
148
	const Type & rType = getCppuType( this );
149
	::uno_type_sequence_assign(
149
	::uno_type_sequence_assign(
150
		&_pSequence, rSeq._pSequence, rType.getTypeLibType(), (uno_ReleaseFunc)cpp_release );
150
		&_pSequence, rSeq._pSequence, rType.getTypeLibType(), (uno_ReleaseFunc)cpp_release );
151
	return *this;
151
	return *this;
Lines 156-162 Link Here
156
{
156
{
157
	if (_pSequence == rSeq._pSequence)
157
	if (_pSequence == rSeq._pSequence)
158
		return sal_True;
158
		return sal_True;
159
	const Type & rType = ::getCppuType( this );
159
	const Type & rType = getCppuType( this );
160
	return ::uno_type_equalData(
160
	return ::uno_type_equalData(
161
		const_cast< Sequence< E > * >( this ), rType.getTypeLibType(),
161
		const_cast< Sequence< E > * >( this ), rType.getTypeLibType(),
162
		const_cast< Sequence< E > * >( &rSeq ), rType.getTypeLibType(),
162
		const_cast< Sequence< E > * >( &rSeq ), rType.getTypeLibType(),
Lines 172-178 Link Here
172
template< class E >
172
template< class E >
173
inline E * Sequence< E >::getArray() SAL_THROW( () )
173
inline E * Sequence< E >::getArray() SAL_THROW( () )
174
{
174
{
175
	const Type & rType = ::getCppuType( this );
175
	const Type & rType = getCppuType( this );
176
	::uno_type_sequence_reference2One(
176
	::uno_type_sequence_reference2One(
177
		&_pSequence, rType.getTypeLibType(),
177
		&_pSequence, rType.getTypeLibType(),
178
        (uno_AcquireFunc)cpp_acquire, (uno_ReleaseFunc)cpp_release );
178
        (uno_AcquireFunc)cpp_acquire, (uno_ReleaseFunc)cpp_release );
Lines 183-189 Link Here
183
inline E & Sequence< E >::operator [] ( sal_Int32 nIndex ) SAL_THROW( () )
183
inline E & Sequence< E >::operator [] ( sal_Int32 nIndex ) SAL_THROW( () )
184
{
184
{
185
	OSL_ENSURE( nIndex >= 0 && nIndex < getLength(), "### illegal index of sequence!" );
185
	OSL_ENSURE( nIndex >= 0 && nIndex < getLength(), "### illegal index of sequence!" );
186
	const Type & rType = ::getCppuType( this );
186
	const Type & rType = getCppuType( this );
187
	::uno_type_sequence_reference2One(
187
	::uno_type_sequence_reference2One(
188
		&_pSequence, rType.getTypeLibType(),
188
		&_pSequence, rType.getTypeLibType(),
189
        (uno_AcquireFunc)cpp_acquire, (uno_ReleaseFunc)cpp_release );
189
        (uno_AcquireFunc)cpp_acquire, (uno_ReleaseFunc)cpp_release );
Lines 200-206 Link Here
200
template< class E >
200
template< class E >
201
inline void Sequence< E >::realloc( sal_Int32 nSize ) SAL_THROW( () )
201
inline void Sequence< E >::realloc( sal_Int32 nSize ) SAL_THROW( () )
202
{
202
{
203
	const Type & rType = ::getCppuType( this );
203
	const Type & rType = getCppuType( this );
204
	::uno_type_sequence_realloc(
204
	::uno_type_sequence_realloc(
205
		&_pSequence, rType.getTypeLibType(), nSize,
205
		&_pSequence, rType.getTypeLibType(), nSize,
206
        (uno_AcquireFunc)cpp_acquire, (uno_ReleaseFunc)cpp_release );
206
        (uno_AcquireFunc)cpp_acquire, (uno_ReleaseFunc)cpp_release );
Lines 226-232 Link Here
226
{
226
{
227
	if (! ::com::sun::star::uno::Sequence< E >::s_pType)
227
	if (! ::com::sun::star::uno::Sequence< E >::s_pType)
228
	{
228
	{
229
		const ::com::sun::star::uno::Type & rElementType = ::getCppuType(
229
		const ::com::sun::star::uno::Type & rElementType = getCppuType(
230
			(typename ::com::sun::star::uno::Sequence< E >::ElementType const *)0 );
230
			(typename ::com::sun::star::uno::Sequence< E >::ElementType const *)0 );
231
		::typelib_static_sequence_type_init(
231
		::typelib_static_sequence_type_init(
232
			& ::com::sun::star::uno::Sequence< E >::s_pType,
232
			& ::com::sun::star::uno::Sequence< E >::s_pType,
(-)cppu/inc/com/sun/star/uno/Type.hxx (-6 / +6 lines)
Lines 250-256 Link Here
250
{
250
{
251
	if (! ::com::sun::star::uno::Array< T >::s_pType)
251
	if (! ::com::sun::star::uno::Array< T >::s_pType)
252
	{
252
	{
253
		const ::com::sun::star::uno::Type & rElementType = ::getCppuType( *pT );
253
		const ::com::sun::star::uno::Type & rElementType = getCppuType( *pT );
254
		sal_Int32 size = sizeof( **pT );
254
		sal_Int32 size = sizeof( **pT );
255
		sal_Int32 dim1 = sizeof( *pT ) / size;
255
		sal_Int32 dim1 = sizeof( *pT ) / size;
256
		::typelib_static_array_type_init(
256
		::typelib_static_array_type_init(
Lines 266-272 Link Here
266
{
266
{
267
	if (! ::com::sun::star::uno::Array< T >::s_pType)
267
	if (! ::com::sun::star::uno::Array< T >::s_pType)
268
	{
268
	{
269
		const ::com::sun::star::uno::Type & rElementType = ::getCppuType( **pT );
269
		const ::com::sun::star::uno::Type & rElementType = getCppuType( **pT );
270
		sal_Int32 size = sizeof( ***pT );
270
		sal_Int32 size = sizeof( ***pT );
271
		sal_Int32 dim2 = sizeof( **pT ) / size;
271
		sal_Int32 dim2 = sizeof( **pT ) / size;
272
		sal_Int32 dim1 = sizeof( *pT ) / dim2 / size;
272
		sal_Int32 dim1 = sizeof( *pT ) / dim2 / size;
Lines 283-289 Link Here
283
{
283
{
284
	if (! ::com::sun::star::uno::Array< T >::s_pType)
284
	if (! ::com::sun::star::uno::Array< T >::s_pType)
285
	{
285
	{
286
		const ::com::sun::star::uno::Type & rElementType = ::getCppuType( ***pT );
286
		const ::com::sun::star::uno::Type & rElementType = getCppuType( ***pT );
287
		sal_Int32 size = sizeof( ****pT );
287
		sal_Int32 size = sizeof( ****pT );
288
		sal_Int32 dim3 = sizeof( ***pT ) / size;
288
		sal_Int32 dim3 = sizeof( ***pT ) / size;
289
		sal_Int32 dim2 = sizeof( **pT ) / dim3 / size;
289
		sal_Int32 dim2 = sizeof( **pT ) / dim3 / size;
Lines 301-307 Link Here
301
{
301
{
302
	if (! ::com::sun::star::uno::Array< T >::s_pType)
302
	if (! ::com::sun::star::uno::Array< T >::s_pType)
303
	{
303
	{
304
		const ::com::sun::star::uno::Type & rElementType = ::getCppuType( ****pT );
304
		const ::com::sun::star::uno::Type & rElementType = getCppuType( ****pT );
305
		sal_Int32 size = sizeof( *****pT );
305
		sal_Int32 size = sizeof( *****pT );
306
		sal_Int32 dim4 = sizeof( ****pT ) / size;
306
		sal_Int32 dim4 = sizeof( ****pT ) / size;
307
		sal_Int32 dim3 = sizeof( ***pT ) / dim4 / size;
307
		sal_Int32 dim3 = sizeof( ***pT ) / dim4 / size;
Lines 320-326 Link Here
320
{
320
{
321
	if (! ::com::sun::star::uno::Array< T >::s_pType)
321
	if (! ::com::sun::star::uno::Array< T >::s_pType)
322
	{
322
	{
323
		const ::com::sun::star::uno::Type & rElementType = ::getCppuType( *****pT );
323
		const ::com::sun::star::uno::Type & rElementType = getCppuType( *****pT );
324
		sal_Int32 size = sizeof( ******pT );
324
		sal_Int32 size = sizeof( ******pT );
325
		sal_Int32 dim5 = sizeof( *****pT ) / size;
325
		sal_Int32 dim5 = sizeof( *****pT ) / size;
326
		sal_Int32 dim4 = sizeof( ****pT ) / dim5 / size;
326
		sal_Int32 dim4 = sizeof( ****pT ) / dim5 / size;
Lines 340-346 Link Here
340
{
340
{
341
	if (! ::com::sun::star::uno::Array< T >::s_pType)
341
	if (! ::com::sun::star::uno::Array< T >::s_pType)
342
	{
342
	{
343
		const ::com::sun::star::uno::Type & rElementType = ::getCppuType( ******pT );
343
		const ::com::sun::star::uno::Type & rElementType = getCppuType( ******pT );
344
		sal_Int32 size = sizeof( *******pT );
344
		sal_Int32 size = sizeof( *******pT );
345
		sal_Int32 dim6 = sizeof( ******pT ) / size;
345
		sal_Int32 dim6 = sizeof( ******pT ) / size;
346
		sal_Int32 dim5 = sizeof( *****pT ) / dim6 / size;
346
		sal_Int32 dim5 = sizeof( *****pT ) / dim6 / size;
(-)cppu/inc/uno/lbnames.h (-1 / +1 lines)
Lines 94-100 Link Here
94
#define	TMP_CPPU_ENV gcc2
94
#define	TMP_CPPU_ENV gcc2
95
#elif (__GNUC__ == 2)
95
#elif (__GNUC__ == 2)
96
#error "Tested gcc 2 versions are 2.91 and 2.95.  Patch uno/lbnames.h to try your gcc 2 version."
96
#error "Tested gcc 2 versions are 2.91 and 2.95.  Patch uno/lbnames.h to try your gcc 2 version."
97
#elif (__GNUC__ == 3 && __GNUC_MINOR__ <= 3)
97
#elif (__GNUC__ == 3 && __GNUC_MINOR__ <= 4)
98
#define __CPPU_ENV gcc3
98
#define __CPPU_ENV gcc3
99
#elif (__GNUC__ == 3)
99
#elif (__GNUC__ == 3)
100
#error "Tested gcc 3 version is <= 3.3.  Patch uno/lbnames.h to try your gcc 3 version."
100
#error "Tested gcc 3 version is <= 3.3.  Patch uno/lbnames.h to try your gcc 3 version."
(-)cppu/inc/uno/mapping.hxx (-2 / +2 lines)
Lines 340-346 Link Here
340
		::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(UNO_LB_UNO) ),
340
		::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(UNO_LB_UNO) ),
341
		::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(CPPU_CURRENT_LANGUAGE_BINDING_NAME) ) );
341
		::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(CPPU_CURRENT_LANGUAGE_BINDING_NAME) ) );
342
	OSL_ASSERT( aMapping.is() );
342
	OSL_ASSERT( aMapping.is() );
343
	aMapping.mapInterface( (void **)ppRet, pUnoI, ::getCppuType( ppRet ) );
343
	aMapping.mapInterface( (void **)ppRet, pUnoI, getCppuType( ppRet ) );
344
	return (0 != *ppRet);
344
	return (0 != *ppRet);
345
}
345
}
346
/** Maps an UNO interface of the currently used compiler environment to binary C UNO.
346
/** Maps an UNO interface of the currently used compiler environment to binary C UNO.
Lines 357-363 Link Here
357
		::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(CPPU_CURRENT_LANGUAGE_BINDING_NAME) ),
357
		::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(CPPU_CURRENT_LANGUAGE_BINDING_NAME) ),
358
		::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(UNO_LB_UNO) ) );
358
		::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(UNO_LB_UNO) ) );
359
	OSL_ASSERT( aMapping.is() );
359
	OSL_ASSERT( aMapping.is() );
360
	aMapping.mapInterface( (void **)ppRet, x.get(), ::getCppuType( &x ) );
360
	aMapping.mapInterface( (void **)ppRet, x.get(), getCppuType( &x ) );
361
	return (0 != *ppRet);
361
	return (0 != *ppRet);
362
}
362
}
363
363
(-)cppu/test/surrogate.hxx (-2 / +2 lines)
Lines 125-131 Link Here
125
	rOut.clear();
125
	rOut.clear();
126
	
126
	
127
	typelib_TypeDescription * pTD = 0;
127
	typelib_TypeDescription * pTD = 0;
128
	const com::sun::star::uno::Type & rType = ::getCppuType( &rOriginal );
128
	const com::sun::star::uno::Type & rType = getCppuType( &rOriginal );
129
	TYPELIB_DANGER_GET( &pTD, rType.getTypeLibType() );
129
	TYPELIB_DANGER_GET( &pTD, rType.getTypeLibType() );
130
	OSL_ENSURE( pTD, "### cannot get typedescription!" );
130
	OSL_ENSURE( pTD, "### cannot get typedescription!" );
131
	if (pTD)
131
	if (pTD)
Lines 157-163 Link Here
157
	if (aCpp2Uno.is() && aUno2Cpp.is())
157
	if (aCpp2Uno.is() && aUno2Cpp.is())
158
	{
158
	{
159
		typelib_TypeDescription * pTD = 0;
159
		typelib_TypeDescription * pTD = 0;
160
		const com::sun::star::uno::Type & rType = ::getCppuType( &rOriginal );
160
		const com::sun::star::uno::Type & rType = getCppuType( &rOriginal );
161
		TYPELIB_DANGER_GET( &pTD, rType.getTypeLibType() );
161
		TYPELIB_DANGER_GET( &pTD, rType.getTypeLibType() );
162
		OSL_ENSURE( pTD, "### cannot get typedescription!" );
162
		OSL_ENSURE( pTD, "### cannot get typedescription!" );
163
		if (pTD)
163
		if (pTD)
(-)cppu/test/testcppu.cxx (-3 / +3 lines)
Lines 324-331 Link Here
324
	a3.td.dDouble = 2;
324
	a3.td.dDouble = 2;
325
	a3.bBool = sal_True;
325
	a3.bBool = sal_True;
326
	a3.aAny = makeAny( (sal_Int32)2 );
326
	a3.aAny = makeAny( (sal_Int32)2 );
327
    OSL_ASSERT( a3.aAny.isExtractableTo( ::getCppuType( (sal_Int64 const *)0 ) ) );
327
    OSL_ASSERT( a3.aAny.isExtractableTo( getCppuType( (sal_Int64 const *)0 ) ) );
328
    OSL_ASSERT( ::getCppuType( (sal_Int64 const *)0 ).isAssignableFrom( a3.aAny.getValueType() ) );
328
    OSL_ASSERT( getCppuType( (sal_Int64 const *)0 ).isAssignableFrom( a3.aAny.getValueType() ) );
329
	bAssignable = uno_type_assignData(
329
	bAssignable = uno_type_assignData(
330
		&sz3, getCppuType( (Test3*)0).getTypeLibType(), 
330
		&sz3, getCppuType( (Test3*)0).getTypeLibType(), 
331
		&a3, getCppuType( (Test3*)0).getTypeLibType(),
331
		&a3, getCppuType( (Test3*)0).getTypeLibType(),
Lines 579-585 Link Here
579
static void test_assignSimple( const T & rVal, /*const*/ Any /*&*/ rAny )
579
static void test_assignSimple( const T & rVal, /*const*/ Any /*&*/ rAny )
580
{
580
{
581
	typelib_TypeDescription * pTD = 0;
581
	typelib_TypeDescription * pTD = 0;
582
	::getCppuType( &rVal ).getDescription( &pTD );
582
	getCppuType( &rVal ).getDescription( &pTD );
583
	sal_Bool bTable = s_aAssignableFromTab[pTD->eTypeClass-1][rAny.getValueTypeClass()-1];
583
	sal_Bool bTable = s_aAssignableFromTab[pTD->eTypeClass-1][rAny.getValueTypeClass()-1];
584
	OSL_ASSERT(
584
	OSL_ASSERT(
585
		(bTable!=sal_False) ==
585
		(bTable!=sal_False) ==
(-)cppu/test/test_di.cxx (-11 / +11 lines)
Lines 648-654 Link Here
648
{
648
{
649
    try
649
    try
650
    {
650
    {
651
        Any aRet( xObj->queryInterface( ::getCppuType( (const lang::IllegalArgumentException *)0 ) ) );
651
        Any aRet( xObj->queryInterface( getCppuType( (const lang::IllegalArgumentException *)0 ) ) );
652
        OSL_ASSERT( ! aRet.hasValue() );
652
        OSL_ASSERT( ! aRet.hasValue() );
653
    }
653
    }
654
    catch (RuntimeException &)
654
    catch (RuntimeException &)
Lines 719-742 Link Here
719
            
719
            
720
			// C++ -> UNO
720
			// C++ -> UNO
721
			Mapping mapping( pCppEnv, pUnoEnv );
721
			Mapping mapping( pCppEnv, pUnoEnv );
722
			mapping.mapInterface( (void **)&pUnoI, xOriginal.get(), ::getCppuType( &xOriginal ) );
722
			mapping.mapInterface( (void **)&pUnoI, xOriginal.get(), getCppuType( &xOriginal ) );
723
            
723
            
724
#ifdef EXTRA_MAPPING
724
#ifdef EXTRA_MAPPING
725
            // UNO -> ano C++a
725
            // UNO -> ano C++a
726
			::uno_createEnvironment( &pCppEnv, aCppEnvTypeName.pData, 0 );
726
			::uno_createEnvironment( &pCppEnv, aCppEnvTypeName.pData, 0 );
727
			mapping = Mapping( pUnoEnv, pCppEnv );
727
			mapping = Mapping( pUnoEnv, pCppEnv );
728
			mapping.mapInterface( (void **)&xMapped, pUnoI, ::getCppuType( &xMapped ) );
728
			mapping.mapInterface( (void **)&xMapped, pUnoI, getCppuType( &xMapped ) );
729
            // ano C++a -> ano UNOa
729
            // ano C++a -> ano UNOa
730
			::uno_createEnvironment( &pUnoEnv, aUnoEnvTypeName.pData, 0 );
730
			::uno_createEnvironment( &pUnoEnv, aUnoEnvTypeName.pData, 0 );
731
			mapping = Mapping( pCppEnv, pUnoEnv );
731
			mapping = Mapping( pCppEnv, pUnoEnv );
732
			mapping.mapInterface( (void **)&pUnoI, xMapped.get(), ::getCppuType( &xMapped ) );
732
			mapping.mapInterface( (void **)&pUnoI, xMapped.get(), getCppuType( &xMapped ) );
733
            pExtraMapping = " <-> c++ <-> uno";
733
            pExtraMapping = " <-> c++ <-> uno";
734
#endif
734
#endif
735
            
735
            
736
			// ano UNOa -> ano C++b
736
			// ano UNOa -> ano C++b
737
			::uno_createEnvironment( &pCppEnv, aCppEnvTypeName.pData, 0 );
737
			::uno_createEnvironment( &pCppEnv, aCppEnvTypeName.pData, 0 );
738
			mapping = Mapping( pUnoEnv, pCppEnv );
738
			mapping = Mapping( pUnoEnv, pCppEnv );
739
			mapping.mapInterface( (void **)&xMapped, pUnoI, ::getCppuType( &xMapped ) );
739
			mapping.mapInterface( (void **)&xMapped, pUnoI, getCppuType( &xMapped ) );
740
			(*pUnoI->release)( pUnoI );
740
			(*pUnoI->release)( pUnoI );
741
			(*pCppEnv->release)( pCppEnv );
741
			(*pCppEnv->release)( pCppEnv );
742
			(*pUnoEnv->release)( pUnoEnv );
742
			(*pUnoEnv->release)( pUnoEnv );
Lines 786-799 Link Here
786
			::uno_getEnvironment( &pCppEnv, aCppEnvTypeName.pData, 0 );
786
			::uno_getEnvironment( &pCppEnv, aCppEnvTypeName.pData, 0 );
787
			::uno_getEnvironment( &pUnoEnv, aUnoEnvTypeName.pData, 0 );
787
			::uno_getEnvironment( &pUnoEnv, aUnoEnvTypeName.pData, 0 );
788
			Mapping aCpp2Uno( pCppEnv, pUnoEnv );
788
			Mapping aCpp2Uno( pCppEnv, pUnoEnv );
789
			aCpp2Uno.mapInterface( (void **)&pUnoI1, xOriginal.get(), ::getCppuType( &xOriginal ) );
789
			aCpp2Uno.mapInterface( (void **)&pUnoI1, xOriginal.get(), getCppuType( &xOriginal ) );
790
			(*pCppEnv->release)( pCppEnv );
790
			(*pCppEnv->release)( pCppEnv );
791
			
791
			
792
			// UNO -> C
792
			// UNO -> C
793
			uno_Environment * pCEnv = 0;
793
			uno_Environment * pCEnv = 0;
794
			::uno_getEnvironment( &pCEnv, aCEnvTypeName.pData, 0 );
794
			::uno_getEnvironment( &pCEnv, aCEnvTypeName.pData, 0 );
795
			Mapping aUno2C( pUnoEnv, pCEnv );
795
			Mapping aUno2C( pUnoEnv, pCEnv );
796
			aUno2C.mapInterface( &pC, pUnoI1, ::getCppuType( &xOriginal ) );
796
			aUno2C.mapInterface( &pC, pUnoI1, getCppuType( &xOriginal ) );
797
			(*pUnoI1->release)( pUnoI1 );
797
			(*pUnoI1->release)( pUnoI1 );
798
			(*pUnoEnv->release)( pUnoEnv );
798
			(*pUnoEnv->release)( pUnoEnv );
799
			
799
			
Lines 801-807 Link Here
801
			uno_Environment * pAnoUnoEnv = 0;
801
			uno_Environment * pAnoUnoEnv = 0;
802
			::uno_createEnvironment( &pAnoUnoEnv, aUnoEnvTypeName.pData, 0 ); // anonymous
802
			::uno_createEnvironment( &pAnoUnoEnv, aUnoEnvTypeName.pData, 0 ); // anonymous
803
			Mapping aC2Uno( pCEnv, pAnoUnoEnv );
803
			Mapping aC2Uno( pCEnv, pAnoUnoEnv );
804
			aC2Uno.mapInterface( (void **)&pUnoI2, pC, ::getCppuType( &xOriginal ) );
804
			aC2Uno.mapInterface( (void **)&pUnoI2, pC, getCppuType( &xOriginal ) );
805
			(*pCEnv->pExtEnv->releaseInterface)( pCEnv->pExtEnv, pC );
805
			(*pCEnv->pExtEnv->releaseInterface)( pCEnv->pExtEnv, pC );
806
			(*pCEnv->release)( pCEnv );
806
			(*pCEnv->release)( pCEnv );
807
			
807
			
Lines 811-817 Link Here
811
			Mapping aUno2Cpp( pAnoUnoEnv, pAnoCppEnv );
811
			Mapping aUno2Cpp( pAnoUnoEnv, pAnoCppEnv );
812
			(*pAnoCppEnv->release)( pAnoCppEnv );
812
			(*pAnoCppEnv->release)( pAnoCppEnv );
813
			(*pAnoUnoEnv->release)( pAnoUnoEnv );
813
			(*pAnoUnoEnv->release)( pAnoUnoEnv );
814
			aUno2Cpp.mapInterface( (void **)&xMapped, pUnoI2, ::getCppuType( &xOriginal ) );
814
			aUno2Cpp.mapInterface( (void **)&xMapped, pUnoI2, getCppuType( &xOriginal ) );
815
			(*pUnoI2->release)( pUnoI2 );
815
			(*pUnoI2->release)( pUnoI2 );
816
			}
816
			}
817
			
817
			
Lines 849-855 Link Here
849
			OSL_ENSURE(	pXIface != 0, "create test object failed\n");
849
			OSL_ENSURE(	pXIface != 0, "create test object failed\n");
850
850
851
			/* Get interface XFoo2 */
851
			/* Get interface XFoo2 */
852
			if (CUNO_EXCEPTION_OCCURED( CUNO_CALL(pXIface)->queryInterface( pXIface, &aExc, (com_sun_star_uno_XInterface**)&pXLBTest, ::getCppuType( &xMapped ).getTypeLibType()) ))
852
			if (CUNO_EXCEPTION_OCCURED( CUNO_CALL(pXIface)->queryInterface( pXIface, &aExc, (com_sun_star_uno_XInterface**)&pXLBTest, getCppuType( &xMapped ).getTypeLibType()) ))
853
			{
853
			{
854
				uno_any_destruct( &aExc, 0 );
854
				uno_any_destruct( &aExc, 0 );
855
			}
855
			}
Lines 858-864 Link Here
858
			Mapping aC2Cpp(
858
			Mapping aC2Cpp(
859
				OUString( RTL_CONSTASCII_USTRINGPARAM(UNO_LB_C) ),
859
				OUString( RTL_CONSTASCII_USTRINGPARAM(UNO_LB_C) ),
860
				OUString( RTL_CONSTASCII_USTRINGPARAM(CPPU_CURRENT_LANGUAGE_BINDING_NAME) ) );
860
				OUString( RTL_CONSTASCII_USTRINGPARAM(CPPU_CURRENT_LANGUAGE_BINDING_NAME) ) );
861
			aC2Cpp.mapInterface( (void **)&xMapped, pXLBTest, ::getCppuType( &xMapped ) );
861
			aC2Cpp.mapInterface( (void **)&xMapped, pXLBTest, getCppuType( &xMapped ) );
862
			
862
			
863
			OSL_ENSURE(	xMapped.is(), "mapping interface failed\n");
863
			OSL_ENSURE(	xMapped.is(), "mapping interface failed\n");
864
864

Return to bug 50233