From 155362949b25fd8491b44064db5acc0fc801521c Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Tue, 22 Jun 2010 13:48:17 +0000 Subject: [PATCH] paint events cannot be constructed outside a native redraw in OSX git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64691 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/events/propagation.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/events/propagation.cpp b/tests/events/propagation.cpp index af78f456e7..bbc7428be6 100644 --- a/tests/events/propagation.cpp +++ b/tests/events/propagation.cpp @@ -331,6 +331,7 @@ void EventPropagationTestCase::ScrollWindowWithHandler() TestScrollWindow * const win = new TestScrollWindow(parent); +#ifndef __WXOSX__ TestPaintEvtHandler h('h'); win->PushEventHandler(&h); wxON_BLOCK_EXIT_OBJ1( *win, wxWindow::PopEventHandler, false ); @@ -338,6 +339,7 @@ void EventPropagationTestCase::ScrollWindowWithHandler() wxPaintEvent event(win->GetId()); win->ProcessWindowEvent(event); CPPUNIT_ASSERT_EQUAL( "ohPD", g_str ); +#endif g_str.clear(); wxCommandEvent eventCmd(TEST_EVT); -- 2.47.2