projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added a flag to enable selecting .app bundles (programs) from the file open dialog.
[wxWidgets.git]
/
src
/
mgl
/
dcclient.cpp
diff --git
a/src/mgl/dcclient.cpp
b/src/mgl/dcclient.cpp
index 2afdbad27956fb864bb76d6af7a1ac8d681acfda..d238dbc95cb9d8edf207b11d994b0db4bf4fa724 100644
(file)
--- a/
src/mgl/dcclient.cpp
+++ b/
src/mgl/dcclient.cpp
@@
-7,7
+7,7
@@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#if
def __GNUG__
+#if
defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "dcclient.h"
#endif
#pragma implementation "dcclient.h"
#endif
@@
-69,5
+69,6
@@
wxClientDC::wxClientDC(wxWindow *win) : wxWindowDC(win)
{
wxRect r = m_wnd->GetClientRect();
m_globalClippingRegion.Intersect(r);
{
wxRect r = m_wnd->GetClientRect();
m_globalClippingRegion.Intersect(r);
+ SetClippingRegion(m_globalClippingRegion);
SetDeviceOrigin(r.x, r.y);
}
SetDeviceOrigin(r.x, r.y);
}