From: Paul Cornett Date: Thu, 19 Sep 2013 06:16:34 +0000 (+0000) Subject: fix building with WXWIN_COMPATIBILITY_2_8 == 0 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f363cee882672e147340240cf0bb194a68e37833?ds=sidebyside fix building with WXWIN_COMPATIBILITY_2_8 == 0 wxPG_EX_DISABLE_TLP_TRACKING does nothing since r61779 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74840 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/propgrid/propgrid.cpp b/samples/propgrid/propgrid.cpp index f80c1dbe4a..5b0d08e0f3 100644 --- a/samples/propgrid/propgrid.cpp +++ b/samples/propgrid/propgrid.cpp @@ -3214,7 +3214,6 @@ struct PropertyGridPopup : wxPopupWindow { m_panel = new wxScrolledWindow(this, wxID_ANY, wxDefaultPosition, wxSize(200, 200)); m_grid = new wxPropertyGrid(m_panel, ID_POPUPGRID, wxDefaultPosition, wxSize(400,400), wxPG_SPLITTER_AUTO_CENTER); - m_grid->SetExtraStyle(wxPG_EX_DISABLE_TLP_TRACKING /*| wxPG_EX_HELP_AS_TOOLTIPS*/); m_grid->SetColumnCount(3); wxPGProperty *prop=m_grid->Append(new wxStringProperty("test_name", wxPG_LABEL, "test_value"));