summaryrefslogtreecommitdiff
path: root/include/svtools/colrdlg.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svtools/colrdlg.hxx')
-rw-r--r--include/svtools/colrdlg.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svtools/colrdlg.hxx b/include/svtools/colrdlg.hxx
index 37bfc6d1799f..daee9bb1fef6 100644
--- a/include/svtools/colrdlg.hxx
+++ b/include/svtools/colrdlg.hxx
@@ -24,7 +24,7 @@
#include <tools/color.hxx>
-class Window;
+namespace vcl { class Window; }
// - ColorDialog -
@@ -39,7 +39,7 @@ namespace svtools
class SVT_DLLPUBLIC SvColorDialog
{
public:
- SvColorDialog( ::Window* pParent );
+ SvColorDialog( vcl::Window* pParent );
virtual ~SvColorDialog();
void SetColor( const Color& rColor );
@@ -50,7 +50,7 @@ public:
virtual short Execute();
private:
- Window* mpParent;
+ vcl::Window* mpParent;
Color maColor;
sal_Int16 meMode;
};