diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2011-08-11 19:58:59 -0400 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2011-08-11 19:58:59 -0400 |
commit | ceb46895530a870e4b981d677f8fc7b3174460da (patch) | |
tree | 9c390040c487de3eadbd11107c55c4d3a177c458 /reportdesign | |
parent | f871b281c91bfb2780619052705f864b6a566b6d (diff) |
Removed the rest of FORWARD_DECLARE_INTERFACE.
Diffstat (limited to 'reportdesign')
-rw-r--r-- | reportdesign/inc/RptDef.hxx | 17 | ||||
-rw-r--r-- | reportdesign/inc/UndoActions.hxx | 9 | ||||
-rw-r--r-- | reportdesign/source/ui/inc/RptUndo.hxx | 13 |
3 files changed, 29 insertions, 10 deletions
diff --git a/reportdesign/inc/RptDef.hxx b/reportdesign/inc/RptDef.hxx index c3bbd9cd1edc..95765bbe3f71 100644 --- a/reportdesign/inc/RptDef.hxx +++ b/reportdesign/inc/RptDef.hxx @@ -37,11 +37,18 @@ #include <svx/fmglob.hxx> #include <boost/shared_ptr.hpp> - -FORWARD_DECLARE_INTERFACE(report,XReportComponent) -FORWARD_DECLARE_INTERFACE(report,XReportDefinition) -FORWARD_DECLARE_INTERFACE(style,XStyle) -FORWARD_DECLARE_INTERFACE(beans,XPropertySet) +namespace com { namespace sun { namespace star { + namespace report { + class XReportComponent; + class XReportDefinition; + } + namespace style { + class XStyle; + } + namespace beans { + class XPropertySet; + } +}}} namespace rptui { diff --git a/reportdesign/inc/UndoActions.hxx b/reportdesign/inc/UndoActions.hxx index c16cab9900f0..f63613ac6473 100644 --- a/reportdesign/inc/UndoActions.hxx +++ b/reportdesign/inc/UndoActions.hxx @@ -60,8 +60,13 @@ #include <memory> #include <boost/shared_ptr.hpp> -FORWARD_DECLARE_INTERFACE(awt,XControl) -FORWARD_DECLARE_INTERFACE(awt,XControlContainer) +namespace com { namespace sun { namespace star { + namespace awt { + class XControl; + class XControlContainer; + } +}}} + namespace dbaui { class IController; diff --git a/reportdesign/source/ui/inc/RptUndo.hxx b/reportdesign/source/ui/inc/RptUndo.hxx index 1ac8295fb7c2..504de5216457 100644 --- a/reportdesign/source/ui/inc/RptUndo.hxx +++ b/reportdesign/source/ui/inc/RptUndo.hxx @@ -31,9 +31,16 @@ #include "UndoActions.hxx" #include <functional> -FORWARD_DECLARE_INTERFACE(awt,XControl) -FORWARD_DECLARE_INTERFACE(awt,XControlContainer) -FORWARD_DECLARE_INTERFACE(drawing,XShape) +namespace com { namespace sun { namespace star { + namespace awt { + class XControl; + class XControlContainer; + } + namespace drawing { + class XShape; + } +}}} + namespace dbaui { class IController; |