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/inc | |
parent | f871b281c91bfb2780619052705f864b6a566b6d (diff) |
Removed the rest of FORWARD_DECLARE_INTERFACE.
Diffstat (limited to 'reportdesign/inc')
-rw-r--r-- | reportdesign/inc/RptDef.hxx | 17 | ||||
-rw-r--r-- | reportdesign/inc/UndoActions.hxx | 9 |
2 files changed, 19 insertions, 7 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; |