Further WinCE adaptations

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33272 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2005-04-02 17:26:08 +00:00
parent 62675ef3b7
commit e6f85deebb
2 changed files with 35 additions and 7 deletions

View File

@@ -689,7 +689,13 @@ void LifeNavigator::OnClose(wxCloseEvent& event)
// canvas constructor
LifeCanvas::LifeCanvas(wxWindow *parent, Life *life, bool interactive)
: wxWindow(parent, wxID_ANY, wxDefaultPosition, wxSize(100, 100),
wxSUNKEN_BORDER|wxFULL_REPAINT_ON_RESIZE)
wxFULL_REPAINT_ON_RESIZE
#if !defined(__SMARTPHONE__) && !defined(__POCKETPC__)
|wxSUNKEN_BORDER
#else
|wxSIMPLE_BORDER
#endif
)
{
m_life = life;
m_interactive = interactive;