X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/723c433f658db8fb6b58d3b69c861482d8b8d0ad..c5453c7956e115a1e7290f01cbbd730a5d8f3448:/utils/emulator/src/emulator.h?ds=sidebyside diff --git a/utils/emulator/src/emulator.h b/utils/emulator/src/emulator.h index 5e14259c65..5fdf0f98be 100644 --- a/utils/emulator/src/emulator.h +++ b/utils/emulator/src/emulator.h @@ -5,17 +5,13 @@ // Modified by: // Created: 2002-03-10 // RCS-ID: $Id$ -// Copyright: (c) wxWindows team +// Copyright: (c) wxWidgets team // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// #ifndef _WX_EMULATOR_H_ #define _WX_EMULATOR_H_ -#ifdef __GNUG__ - #pragma interface "emulator.h" -#endif - #define wxEMULATOR_VERSION 0.1 // Information about the emulator decorations @@ -24,7 +20,7 @@ class wxEmulatorInfo: public wxObject public: wxEmulatorInfo() { Init(); } - wxEmulatorInfo(const wxEmulatorInfo& info) { Init(); Copy(info); } + wxEmulatorInfo(const wxEmulatorInfo& info) : wxObject() { Init(); Copy(info); } void operator= (const wxEmulatorInfo& info) { Copy(info); } void Copy(const wxEmulatorInfo& info); @@ -131,7 +127,7 @@ public: void OnCloseWindow(wxCloseEvent& event); private: - // any class wishing to process wxWindows events must use this macro + // any class wishing to process wxWidgets events must use this macro DECLARE_EVENT_TABLE() };