summaryrefslogtreecommitdiff
path: root/filter/source/placeware/exporter.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-30 14:17:06 +0200
committerNoel Grandin <noel@peralex.com>2015-10-01 12:20:41 +0200
commitbd8a4ae22376cf9e43df3f4924d37daa8a0796c1 (patch)
tree0c60a496c0570a08d953c093e6cc34e0d8d198b5 /filter/source/placeware/exporter.hxx
parentf1de3e14df9665ce48d676ac6f3439506d2b81f2 (diff)
com::sun::star->css in filter/
Change-Id: I3a5e6a349c903259698118542b0000b0f119859e
Diffstat (limited to 'filter/source/placeware/exporter.hxx')
-rw-r--r--filter/source/placeware/exporter.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/filter/source/placeware/exporter.hxx b/filter/source/placeware/exporter.hxx
index 8d352e61cffd..4c7f2a7a9d72 100644
--- a/filter/source/placeware/exporter.hxx
+++ b/filter/source/placeware/exporter.hxx
@@ -32,21 +32,21 @@ class PageEntry;
class PlaceWareExporter
{
public:
- PlaceWareExporter( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext );
+ PlaceWareExporter( const css::uno::Reference< css::uno::XComponentContext >& rxContext );
~PlaceWareExporter();
- bool doExport( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent > xDoc,
- ::com::sun::star::uno::Reference < ::com::sun::star::io::XOutputStream > xOutputStream,
- const OUString& rURL,
- ::com::sun::star::uno::Reference < ::com::sun::star::uno::XInterface > xHandler,
- ::com::sun::star::uno::Reference < ::com::sun::star::task::XStatusIndicator >& rxStatusIndicator );
+ bool doExport( css::uno::Reference< css::lang::XComponent > xDoc,
+ css::uno::Reference < css::io::XOutputStream > xOutputStream,
+ const OUString& rURL,
+ css::uno::Reference < css::uno::XInterface > xHandler,
+ css::uno::Reference < css::task::XStatusIndicator >& rxStatusIndicator );
private:
- PageEntry* exportPage( ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XDrawPage >&xDrawPage );
+ PageEntry* exportPage( css::uno::Reference< css::drawing::XDrawPage >&xDrawPage );
- ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > mxContext;
- ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XGraphicExportFilter > mxGraphicExporter;
- ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionHandler > mxInteractionHandler;
+ css::uno::Reference< css::uno::XComponentContext > mxContext;
+ css::uno::Reference< css::drawing::XGraphicExportFilter > mxGraphicExporter;
+ css::uno::Reference< css::task::XInteractionHandler > mxInteractionHandler;
};
#endif