summaryrefslogtreecommitdiff
path: root/include/vcl/fltcall.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/fltcall.hxx')
-rw-r--r--include/vcl/fltcall.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/fltcall.hxx b/include/vcl/fltcall.hxx
index ca64e68f0902..6e7ab514ea5a 100644
--- a/include/vcl/fltcall.hxx
+++ b/include/vcl/fltcall.hxx
@@ -28,12 +28,12 @@
class FilterConfigItem;
class SvStream;
class Graphic;
-class Window;
+namespace vcl { class Window; }
struct FltCallDialogParameter
{
- Window* pWindow;
+ vcl::Window* pWindow;
ResMgr* pResMgr;
FieldUnit eFieldUnit;
OUString aFilterExt;
@@ -41,7 +41,7 @@ struct FltCallDialogParameter
// In and Out PropertySequence for all filter dialogs
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aFilterData;
- FltCallDialogParameter( Window* pW, ResMgr* pRsMgr, FieldUnit eFiUni ) :
+ FltCallDialogParameter( vcl::Window* pW, ResMgr* pRsMgr, FieldUnit eFiUni ) :
pWindow ( pW ),
pResMgr ( pRsMgr ),
eFieldUnit ( eFiUni ) {};