From: Jon S. B. <jb...@us...> - 2007-05-12 20:46:32
|
Update of /cvsroot/jsbsimcommander/src/gui In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2859/src/gui Modified Files: actuator_dlg.cpp Log Message: Adjustment, adding actuator bitmap to actuator class Index: actuator_dlg.cpp =================================================================== RCS file: /cvsroot/jsbsimcommander/src/gui/actuator_dlg.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** actuator_dlg.cpp 14 Apr 2007 06:02:48 -0000 1.2 --- actuator_dlg.cpp 12 May 2007 20:46:29 -0000 1.3 *************** *** 29,32 **** --- 29,37 ---- #include "actuator_dlg.h" + // All non-MSW platforms use an xpm. MSW uses an .ico file + #if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__) + #include "actuator.xpm" + #endif + ActuatorComponentEditor::ActuatorComponentEditor(Actuator *actuator, wxWindow* parent, int id, const wxString& title, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxTHICK_FRAME|wxSTAY_ON_TOP|wxFULL_REPAINT_ON_RESIZE) |