From: Steve Lamerton Date: Wed, 22 Sep 2010 12:45:45 +0000 (+0000) Subject: Re-enable disabled wxWindow label tests under wxGTK as they were fixed in r65374 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a323f63a8df1f285efba29e4be28e6bde3f6d4ff Re-enable disabled wxWindow label tests under wxGTK as they were fixed in r65374 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65588 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/controls/windowtest.cpp b/tests/controls/windowtest.cpp index 72266b2753..971160269e 100644 --- a/tests/controls/windowtest.cpp +++ b/tests/controls/windowtest.cpp @@ -185,11 +185,9 @@ void WindowTestCase::Mouse() void WindowTestCase::Properties() { -#ifndef __WXGTK__ m_window->SetLabel("label"); CPPUNIT_ASSERT_EQUAL("label", m_window->GetLabel()); -#endif m_window->SetName("name"); @@ -370,15 +368,11 @@ void WindowTestCase::FindWindowBy() { m_window->SetId(wxID_HIGHEST + 1); m_window->SetName("name"); -#ifndef __WXGTK__ m_window->SetLabel("label"); -#endif CPPUNIT_ASSERT_EQUAL(m_window, wxWindow::FindWindowById(wxID_HIGHEST + 1)); CPPUNIT_ASSERT_EQUAL(m_window, wxWindow::FindWindowByName("name")); -#ifndef __WXGTK__ CPPUNIT_ASSERT_EQUAL(m_window, wxWindow::FindWindowByLabel("label")); -#endif CPPUNIT_ASSERT_EQUAL(static_cast(NULL), wxWindow::FindWindowById(wxID_HIGHEST + 3));