]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/treectrl.cpp
only use font/colours in SetWidgetStyle() if they're set
[wxWidgets.git] / src / msw / treectrl.cpp
index cd18d9d3f370563c432e2365414da14953b268a9..dcbb70016a71cc106dfdbbcfedad4d08d1714a6e 100644 (file)
@@ -787,6 +787,18 @@ wxTreeCtrl::~wxTreeCtrl()
 // accessors
 // ----------------------------------------------------------------------------
 
 // accessors
 // ----------------------------------------------------------------------------
 
+/* static */ wxVisualAttributes
+wxTreeCtrl::GetClassDefaultAttributes(wxWindowVariant variant)
+{
+    wxVisualAttributes attrs = GetCompositeControlsDefaultAttributes(variant);
+
+    // common controls have their own default font
+    attrs.font = wxGetCCDefaultFont();
+
+    return attrs;
+}
+
+
 // simple wrappers which add error checking in debug mode
 
 bool wxTreeCtrl::DoGetItem(wxTreeViewItem* tvItem) const
 // simple wrappers which add error checking in debug mode
 
 bool wxTreeCtrl::DoGetItem(wxTreeViewItem* tvItem) const