]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed compilation with 2.8 compatibility off: wxTR_EXTENDED is deprecated
authorVáclav Slavík <vslavik@fastmail.fm>
Tue, 27 Mar 2007 09:40:02 +0000 (09:40 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Tue, 27 Mar 2007 09:40:02 +0000 (09:40 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45089 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/xrc/xh_tree.cpp

index 5c3e346f785394c44f3656693043084178f71970..1591d626a75c43f41eb91c57415cdb5d8cbb4c2a 100644 (file)
@@ -37,8 +37,10 @@ wxTreeCtrlXmlHandler::wxTreeCtrlXmlHandler()
     XRC_ADD_STYLE(wxTR_HAS_VARIABLE_ROW_HEIGHT);
     XRC_ADD_STYLE(wxTR_SINGLE);
     XRC_ADD_STYLE(wxTR_MULTIPLE);
-    XRC_ADD_STYLE(wxTR_EXTENDED);
     XRC_ADD_STYLE(wxTR_DEFAULT_STYLE);
+#if WXWIN_COMPATIBILITY_2_8
+    XRC_ADD_STYLE(wxTR_EXTENDED);
+#endif
     AddWindowStyles();
 }