summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-04-25 14:32:28 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-04-25 14:32:39 +0200
commit19a1d2383d343375b3c4b4ab1845df6435679bd6 (patch)
treed49c2d4ef631bec860a7b0ceefd125956429992e /include
parent53b8d25caa1e000eeca27f3ca4f92d9cda83c652 (diff)
PCH quickfix
Change-Id: I457288d881ba74db2127e8543b0de70b6498002d
Diffstat (limited to 'include')
-rw-r--r--include/svtools/DocumentToGraphicRenderer.hxx17
-rw-r--r--include/svtools/GraphicExportOptionsDialog.hxx10
2 files changed, 8 insertions, 19 deletions
diff --git a/include/svtools/DocumentToGraphicRenderer.hxx b/include/svtools/DocumentToGraphicRenderer.hxx
index 3033e6473129..2120ea43b7cd 100644
--- a/include/svtools/DocumentToGraphicRenderer.hxx
+++ b/include/svtools/DocumentToGraphicRenderer.hxx
@@ -30,22 +30,17 @@
#include "svtools/svtdllapi.h"
-using namespace css;
-using namespace css::uno;
-using namespace css::lang;
-using namespace css::beans;
-
class SVT_DLLPUBLIC DocumentToGraphicRenderer
{
- const Reference<XComponent>& mxDocument;
+ const css::uno::Reference<css::lang::XComponent>& mxDocument;
- Reference<frame::XModel> mxModel;
- Reference<frame::XController> mxController;
- Reference<view::XRenderable> mxRenderable;
- Reference<awt::XToolkit> mxToolkit;
+ css::uno::Reference<css::frame::XModel> mxModel;
+ css::uno::Reference<css::frame::XController> mxController;
+ css::uno::Reference<css::view::XRenderable> mxRenderable;
+ css::uno::Reference<css::awt::XToolkit> mxToolkit;
public:
- DocumentToGraphicRenderer(const Reference<XComponent>& xDocument);
+ DocumentToGraphicRenderer(const css::uno::Reference<css::lang::XComponent>& xDocument);
~DocumentToGraphicRenderer();
sal_Int32 getCurrentPageWriter( );
diff --git a/include/svtools/GraphicExportOptionsDialog.hxx b/include/svtools/GraphicExportOptionsDialog.hxx
index b346f8c25671..9f3784f912be 100644
--- a/include/svtools/GraphicExportOptionsDialog.hxx
+++ b/include/svtools/GraphicExportOptionsDialog.hxx
@@ -34,12 +34,6 @@
#include "svtools/svtdllapi.h"
-using namespace css;
-using namespace css::uno;
-using namespace css::lang;
-using namespace css::frame;
-using namespace css::beans;
-
class SVT_DLLPUBLIC GraphicExportOptionsDialog : public ModalDialog
{
private:
@@ -67,10 +61,10 @@ private:
DECL_LINK( resolutionModifiedHandle, void* );
public:
- GraphicExportOptionsDialog( Window* pWindow, const Reference<XComponent>& rxSourceDocument );
+ GraphicExportOptionsDialog( Window* pWindow, const css::uno::Reference<css::lang::XComponent>& rxSourceDocument );
~GraphicExportOptionsDialog();
- Sequence<PropertyValue> getFilterData();
+ css::uno::Sequence<css::beans::PropertyValue> getFilterData();
};
#endif