diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-05-22 14:20:57 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-05-22 14:20:57 +0000 |
commit | 3061785f8b4ecfad6b4fe33e1b8e9f2d278d847f (patch) | |
tree | 34f751ad3a3e0c21d21530b0131a2cddae3d1e52 /svx/source/unodraw | |
parent | 9c8888ab6b518ae53d3135c1d47c0011339893c8 (diff) |
INTEGRATION: CWS chart2mst3 (1.4.634); FILE MERGED
2007/02/09 14:23:22 iha 1.4.634.6: resync m195 -> m202 - link problems on windows non pro
2006/11/25 10:29:16 bm 1.4.634.5: RESYNC: (1.8-1.9); FILE MERGED
2006/11/24 20:47:47 bm 1.4.634.4: RESYNC: (1.7-1.8); FILE MERGED
2006/10/19 06:09:00 bm 1.4.634.3: RESYNC: (1.5-1.7); FILE MERGED
2005/10/09 00:17:58 bm 1.4.634.2: RESYNC: (1.4-1.5); FILE MERGED
2005/03/21 13:37:39 bm 1.4.634.1: some more symbols need an export specifier SVX_DLLPUBLIC
Diffstat (limited to 'svx/source/unodraw')
-rw-r--r-- | svx/source/unodraw/XPropertyTable.cxx | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/svx/source/unodraw/XPropertyTable.cxx b/svx/source/unodraw/XPropertyTable.cxx index 95cdf01d3a50..88a9fdf32e26 100644 --- a/svx/source/unodraw/XPropertyTable.cxx +++ b/svx/source/unodraw/XPropertyTable.cxx @@ -4,9 +4,9 @@ * * $RCSfile: XPropertyTable.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: vg $ $Date: 2006-11-21 17:13:20 $ + * last change: $Author: vg $ $Date: 2007-05-22 15:20:57 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -36,6 +36,8 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_svx.hxx" +#include "XPropertyTable.hxx" + #ifndef _COM_SUN_STAR_DRAWING_POLYPOLYGONBEZIERCOORDS_HPP_ #include <com/sun/star/drawing/PolyPolygonBezierCoords.hpp> #endif @@ -64,10 +66,6 @@ #include <cppuhelper/implbase2.hxx> -#ifndef _XTABLE_HXX -#include "xtable.hxx" -#endif - #ifndef _SVX_UNOPOLYHELPER_HXX #include "unopolyhelper.hxx" #endif @@ -349,7 +347,7 @@ public: virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw( uno::RuntimeException); }; -Reference< XInterface > SvxUnoXColorTable_createInstance( XPropertyTable* pTable ) throw() +uno::Reference< XInterface > SAL_CALL SvxUnoXColorTable_createInstance( XPropertyTable* pTable ) throw() { return (OWeakObject*) new SvxUnoXColorTable( pTable ); } @@ -412,7 +410,7 @@ public: virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw( uno::RuntimeException); }; -Reference< XInterface > SvxUnoXLineEndTable_createInstance( XPropertyList* pTable ) throw() +uno::Reference< XInterface > SAL_CALL SvxUnoXLineEndTable_createInstance( XPropertyList* pTable ) throw() { return (OWeakObject*)new SvxUnoXLineEndTable( pTable ); } @@ -485,7 +483,7 @@ public: virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw( uno::RuntimeException); }; -Reference< XInterface > SvxUnoXDashTable_createInstance( XPropertyList* pTable ) throw() +uno::Reference< XInterface > SAL_CALL SvxUnoXDashTable_createInstance( XPropertyList* pTable ) throw() { return (OWeakObject*)new SvxUnoXDashTable( pTable ); } @@ -567,7 +565,7 @@ public: virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw( uno::RuntimeException); }; -Reference< XInterface > SvxUnoXHatchTable_createInstance( XPropertyList* pTable ) throw() +uno::Reference< XInterface > SAL_CALL SvxUnoXHatchTable_createInstance( XPropertyList* pTable ) throw() { return (OWeakObject*)new SvxUnoXHatchTable( pTable ); } @@ -644,7 +642,7 @@ public: virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw( uno::RuntimeException); }; -Reference< XInterface > SvxUnoXGradientTable_createInstance( XPropertyList* pTable ) throw() +uno::Reference< XInterface > SAL_CALL SvxUnoXGradientTable_createInstance( XPropertyList* pTable ) throw() { return (OWeakObject*)new SvxUnoXGradientTable( pTable ); } @@ -733,7 +731,7 @@ public: virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw( uno::RuntimeException); }; -Reference< XInterface > SvxUnoXBitmapTable_createInstance( XPropertyList* pTable ) throw() +uno::Reference< XInterface > SAL_CALL SvxUnoXBitmapTable_createInstance( XPropertyList* pTable ) throw() { return (OWeakObject*)new SvxUnoXBitmapTable( pTable ); } |