]> git.saurik.com Git - wxWidgets.git/commitdiff
Override InheritAttributes() to do nothing in wxNonOwnedWindow.
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 5 Mar 2012 13:00:57 +0000 (13:00 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 5 Mar 2012 13:00:57 +0000 (13:00 +0000)
Non owner windows shouldn't inherit attributes from their parent. This wasn't
a problem in wxMSW where InheritAttributes() was never called for them but was
in wxGTK (and possibly other ports) where dialogs inherited font from their
parent.

Closes #2766.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70813 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/nonownedwnd.h

index 536b55cef4c79442efb0fbe77814ebe655ccaa72..696edb5e9b4cda7c3d2b0270e15b4bfbee947d27 100644 (file)
@@ -69,6 +69,13 @@ public:
         // client area origin so simply do nothing here.
     }
 
+    virtual void InheritAttributes()
+    {
+        // Non owned windows don't inherit attributes from their parent window
+        // (if the parent frame is red, it doesn't mean that all dialogs shown
+        // by it should be red as well), so don't do anything here neither.
+    }
+
 protected:
     virtual bool DoClearShape()
     {