added Makefile[.in] for build using wxGTK method. Note that wxGTK's createall

script doesn't yet look this deep, so it's not very usefull now...

also fixed some wxGTK compile problems.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1835 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Harco de Hilster
1999-03-01 01:26:11 +00:00
parent 4ac1ab8836
commit af6c301b95
5 changed files with 40 additions and 35 deletions

View File

@@ -150,8 +150,10 @@ void csFrame::OnSize(wxSizeEvent& event)
// Make sure the correct toolbars are showing for the active view
void csFrame::OnIdle(wxIdleEvent& event)
{
wxFrame::OnIdle(event);
/* HH: gtk's wxFrame nor wxWindow have an OnIdle method. Is this a bug? */
#ifndef __WXGTK__
wxDocMDIParentFrame::OnIdle(event);
#endif
wxSashLayoutWindow* paletteWin = wxGetApp().GetDiagramPaletteSashWindow();
wxSashLayoutWindow* diagramToolBarWin = wxGetApp().GetDiagramToolBarSashWindow();
if (!paletteWin || !diagramToolBarWin)