From 1d7ed72986389e8311915e763f10da9ba1519059 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sat, 22 Dec 2007 09:07:56 +0000 Subject: [PATCH] changing to wxDC, so that wxGCDC can be used as well git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50886 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/dfb/private/overlay.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/wx/dfb/private/overlay.h b/include/wx/dfb/private/overlay.h index 2006f661ad..6115abf00b 100644 --- a/include/wx/dfb/private/overlay.h +++ b/include/wx/dfb/private/overlay.h @@ -17,7 +17,7 @@ wxDFB_DECLARE_INTERFACE(IDirectFBSurface); class WXDLLIMPEXP_FWD_CORE wxWindow; -class WXDLLIMPEXP_FWD_CORE wxWindowDC; +class WXDLLIMPEXP_FWD_CORE wxDC; class wxOverlayImpl { @@ -27,10 +27,10 @@ public: void Reset(); bool IsOk(); - void Init(wxWindowDC* dc, int x , int y , int width , int height); - void BeginDrawing(wxWindowDC* dc); - void EndDrawing(wxWindowDC* dc); - void Clear(wxWindowDC* dc); + void Init(wxDC* dc, int x , int y , int width , int height); + void BeginDrawing(wxDC* dc); + void EndDrawing(wxDC* dc); + void Clear(wxDC* dc); // wxDFB specific methods: bool IsEmpty() const { return m_isEmpty; } -- 2.45.2