summaryrefslogtreecommitdiff
path: root/include/tools/errinf.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/tools/errinf.hxx')
-rw-r--r--include/tools/errinf.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/tools/errinf.hxx b/include/tools/errinf.hxx
index 89155398e59e..a16b56a179f4 100644
--- a/include/tools/errinf.hxx
+++ b/include/tools/errinf.hxx
@@ -30,7 +30,7 @@
class EDcr_Impl;
class ErrHdl_Impl;
-class Window;
+namespace vcl { class Window; }
class ErrorInfo
{
@@ -121,20 +121,20 @@ class TOOLS_DLLPUBLIC ErrorContext
private:
ErrorContext* pNext;
- Window* pWin;
+ vcl::Window* pWin;
public:
- ErrorContext(Window *pWin=0);
+ ErrorContext(vcl::Window *pWin=0);
virtual ~ErrorContext();
virtual bool GetString( sal_uIntPtr nErrId, OUString& rCtxStr ) = 0;
- Window* GetParent() { return pWin; }
+ vcl::Window* GetParent() { return pWin; }
static ErrorContext* GetContext();
};
typedef sal_uInt16 WindowDisplayErrorFunc(
- Window *, sal_uInt16 nMask, const OUString &rErr, const OUString &rAction);
+ vcl::Window *, sal_uInt16 nMask, const OUString &rErr, const OUString &rAction);
typedef void BasicDisplayErrorFunc(
const OUString &rErr, const OUString &rAction);