]> git.saurik.com Git - wxWidgets.git/commitdiff
corrected warnings when compiling with -Wall -W
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Tue, 7 May 2002 21:58:27 +0000 (21:58 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Tue, 7 May 2002 21:58:27 +0000 (21:58 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15412 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

87 files changed:
include/wx/arrimpl.cpp
include/wx/bmpbuttn.h
include/wx/clntdata.h
include/wx/date.h
include/wx/fontenc.h
include/wx/generic/accel.h
include/wx/gtk/brush.h
include/wx/gtk/colour.h
include/wx/gtk/pen.h
include/wx/gtk/region.h
include/wx/gtk1/brush.h
include/wx/gtk1/colour.h
include/wx/gtk1/pen.h
include/wx/gtk1/region.h
include/wx/hash.h
include/wx/iconbndl.h
include/wx/image.h
include/wx/mac/accel.h
include/wx/mac/brush.h
include/wx/mac/choice.h
include/wx/mac/colour.h
include/wx/mac/control.h
include/wx/mac/filedlg.h
include/wx/mac/listbox.h
include/wx/mac/private.h
include/wx/mac/statline.h
include/wx/mac/stattext.h
include/wx/mac/toolbar.h
include/wx/mac/toplevel.h
include/wx/memtext.h
include/wx/quantize.h
include/wx/time.h
src/common/artstd.cpp
src/common/valgen.cpp
src/common/valtext.cpp
src/common/variant.cpp
src/generic/accel.cpp
src/generic/fdrepdlg.cpp
src/generic/filedlgg.cpp
src/gtk/bitmap.cpp
src/gtk/brush.cpp
src/gtk/colour.cpp
src/gtk/cursor.cpp
src/gtk/font.cpp
src/gtk/pen.cpp
src/gtk/region.cpp
src/gtk1/bitmap.cpp
src/gtk1/brush.cpp
src/gtk1/colour.cpp
src/gtk1/cursor.cpp
src/gtk1/font.cpp
src/gtk1/pen.cpp
src/gtk1/region.cpp
src/mac/accel.cpp
src/mac/brush.cpp
src/mac/carbon/accel.cpp
src/mac/carbon/brush.cpp
src/mac/carbon/colour.cpp
src/mac/carbon/dc.cpp
src/mac/carbon/dcmemory.cpp
src/mac/carbon/font.cpp
src/mac/carbon/gsocket.c
src/mac/carbon/icon.cpp
src/mac/carbon/spinbutt.cpp
src/mac/carbon/statbrma.cpp
src/mac/carbon/stattext.cpp
src/mac/carbon/textctrl.cpp
src/mac/carbon/thread.cpp
src/mac/carbon/toolbar.cpp
src/mac/carbon/utilsexc.cpp
src/mac/carbon/window.cpp
src/mac/colour.cpp
src/mac/dc.cpp
src/mac/dcmemory.cpp
src/mac/font.cpp
src/mac/gsocket.c
src/mac/icon.cpp
src/mac/spinbutt.cpp
src/mac/statbrma.cpp
src/mac/stattext.cpp
src/mac/textctrl.cpp
src/mac/thread.cpp
src/mac/toolbar.cpp
src/mac/utilsexc.cpp
src/mac/window.cpp
src/unix/gsocket.c
src/unix/mimetype.cpp

index 844eb4b75143dbc38eb91dda7fc4dd6458d8a716..8296608a019b2155b8c41ae55b633a13a0a0ec84 100644 (file)
@@ -52,7 +52,7 @@ name& name::operator=(const name& src)                                        \
   return *this;                                                               \
 }                                                                             \
                                                                               \
-name::name(const name& src)                                                   \
+name::name(const name& src) : wxArrayPtrVoid()                                \
 {                                                                             \
   DoCopy(src);                                                                \
 }                                                                             \
index 884796042a14c03ea49cf34c05014df17af4205a..ee7a64bf0b151c06986df51fe37ec8594b497932 100644 (file)
@@ -27,7 +27,10 @@ WXDLLEXPORT_DATA(extern const wxChar*) wxButtonNameStr;
 class WXDLLEXPORT wxBitmapButtonBase : public wxButton
 {
 public:
-    wxBitmapButtonBase() { m_marginX = m_marginY = 0; }
+    wxBitmapButtonBase()
+        : m_bmpNormal(), m_bmpSelected(), m_bmpFocus(), m_bmpDisabled()
+        , m_marginX(0), m_marginY(0)
+        { }
 
     // set the bitmaps
     void SetBitmapLabel(const wxBitmap& bitmap)
index a632635ad80d9e91975920370f6d8d46d607ff2f..1b0f1792aac61d2f8af1d2f0d7142b41cd51c12b 100644 (file)
@@ -39,7 +39,7 @@ public:
 class WXDLLEXPORT wxStringClientData : public wxClientData
 {
 public:
-    wxStringClientData() { }
+    wxStringClientData() : m_data() { }
     wxStringClientData( const wxString &data ) : m_data(data) { }
     void SetData( const wxString &data ) { m_data = data; }
     const wxString& GetData() const { return m_data; }
index 635457d9d3e0a81d725113d0324e7ff201e833d1..b3b8dd97796e270cf438349128ac8949a7433434 100644 (file)
@@ -55,7 +55,7 @@ public:
     wxDate(long j) : m_date((double)(j + 0.5)) { Init(); }
     wxDate(int m, int d, int y) : m_date(d, (wxDateTime::Month)m, y) { Init(); }
     wxDate(const wxString& dat) { Init(); (void)m_date.ParseDate(dat); }
-    wxDate(const wxDate &date) { *this = date; }
+    wxDate(const wxDate &date) : wxObject() { *this = date; }
 
     wxDate(const wxDateTime& dt) { Init(); m_date = dt; }
 
index d4a9ee6a1e1e6bcacca6b45a84fbf0baaa4a481c..73c832a771f93c11661d8d94ae379b689a8b1921 100644 (file)
@@ -103,7 +103,11 @@ struct WXDLLEXPORT wxNativeEncodingInfo
     wxFontEncoding encoding;    // so that we know what this struct represents
 
 #if defined(__WXMSW__) || defined(__WXPM__) || defined(__WXMAC__)
-    wxNativeEncodingInfo() { charset = 0; /* ANSI_CHARSET */ }
+    wxNativeEncodingInfo()
+        : facename()
+        , encoding(wxFONTENCODING_SYSTEM)
+        , charset(0) /* ANSI_CHARSET */
+    { }
 
     int      charset;
 #elif defined(_WX_X_FONTLIKE)
index bdd4ff8a85f29692f35d264cda5412e9a4750208..290de47d1a717bd0ffcae97a7023c9ac37566034 100644 (file)
@@ -28,7 +28,8 @@ public:
     virtual ~wxAcceleratorTable();
 
     wxAcceleratorTable(const wxAcceleratorTable& accel)
-      { Ref(accel); }
+        : wxObject()
+        { Ref(accel); }
     wxAcceleratorTable& operator=(const wxAcceleratorTable& accel)
       { if ( m_refData != accel.m_refData ) Ref(accel); return *this; }
 
index 2859c6ad397a1355cfb5c342fc3489c78037762d..dd20823aed936ba8a62b650a45391252c4f2593f 100644 (file)
@@ -40,7 +40,9 @@ public:
     wxBrush( const wxBitmap &stippleBitmap );
     ~wxBrush();
     
-    wxBrush( const wxBrush &brush ) { Ref(brush); }
+    wxBrush( const wxBrush &brush )
+        : wxGDIObject()
+        { Ref(brush); }
     wxBrush& operator = ( const wxBrush& brush ) { Ref(brush); return *this; }
     
     bool Ok() const { return m_refData != NULL; }
index bce0560ddb8a69f9adeded965f92655f32a375cf..e399d074b27af718fec1eb9b7a9b06356701ccd2 100644 (file)
@@ -49,7 +49,9 @@ public:
     wxColour( const wxString &colourName ) { InitFromName(colourName); }
     wxColour( const char *colourName ) { InitFromName(colourName); }
 
-    wxColour( const wxColour& col ) { Ref(col); }
+    wxColour( const wxColour& col )
+        : wxGDIObject()
+        { Ref(col); }
     wxColour& operator = ( const wxColour& col ) { Ref(col); return *this; }
 
     ~wxColour();
index cf1464fdb13360fe1e3f49798d776d82cb2106bc..9f9fe6e9c5c1e5c7b52052c980d4337b893e6a1d 100644 (file)
@@ -45,7 +45,9 @@ public:
     wxPen( const wxColour &colour, int width, int style );
     ~wxPen();
     
-    wxPen( const wxPen& pen ) { Ref(pen); }
+    wxPen( const wxPen& pen )
+        : wxGDIObject()
+        { Ref(pen); }
     wxPen& operator = ( const wxPen& pen ) { Ref(pen); return *this; }
     
     bool Ok() const { return m_refData != NULL; }
index c4f58a97d773845bd66ed7f80a0b5643cdc282d3..5adf4edeb9e4e1b006f9fdaf7f330ab30cbfd3a1 100644 (file)
@@ -73,7 +73,9 @@ public:
     wxRegion( size_t n, const wxPoint *points, int fillStyle = wxODDEVEN_RULE );
     ~wxRegion();
 
-    wxRegion( const wxRegion& region ) { Ref(region); }
+    wxRegion( const wxRegion& region )
+        : wxGDIObject()
+        { Ref(region); }
     wxRegion& operator = ( const wxRegion& region ) { Ref(region); return *this; }
 
     bool Ok() const { return m_refData != NULL; }
index 2859c6ad397a1355cfb5c342fc3489c78037762d..dd20823aed936ba8a62b650a45391252c4f2593f 100644 (file)
@@ -40,7 +40,9 @@ public:
     wxBrush( const wxBitmap &stippleBitmap );
     ~wxBrush();
     
-    wxBrush( const wxBrush &brush ) { Ref(brush); }
+    wxBrush( const wxBrush &brush )
+        : wxGDIObject()
+        { Ref(brush); }
     wxBrush& operator = ( const wxBrush& brush ) { Ref(brush); return *this; }
     
     bool Ok() const { return m_refData != NULL; }
index bce0560ddb8a69f9adeded965f92655f32a375cf..e399d074b27af718fec1eb9b7a9b06356701ccd2 100644 (file)
@@ -49,7 +49,9 @@ public:
     wxColour( const wxString &colourName ) { InitFromName(colourName); }
     wxColour( const char *colourName ) { InitFromName(colourName); }
 
-    wxColour( const wxColour& col ) { Ref(col); }
+    wxColour( const wxColour& col )
+        : wxGDIObject()
+        { Ref(col); }
     wxColour& operator = ( const wxColour& col ) { Ref(col); return *this; }
 
     ~wxColour();
index cf1464fdb13360fe1e3f49798d776d82cb2106bc..9f9fe6e9c5c1e5c7b52052c980d4337b893e6a1d 100644 (file)
@@ -45,7 +45,9 @@ public:
     wxPen( const wxColour &colour, int width, int style );
     ~wxPen();
     
-    wxPen( const wxPen& pen ) { Ref(pen); }
+    wxPen( const wxPen& pen )
+        : wxGDIObject()
+        { Ref(pen); }
     wxPen& operator = ( const wxPen& pen ) { Ref(pen); return *this; }
     
     bool Ok() const { return m_refData != NULL; }
index c4f58a97d773845bd66ed7f80a0b5643cdc282d3..5adf4edeb9e4e1b006f9fdaf7f330ab30cbfd3a1 100644 (file)
@@ -73,7 +73,9 @@ public:
     wxRegion( size_t n, const wxPoint *points, int fillStyle = wxODDEVEN_RULE );
     ~wxRegion();
 
-    wxRegion( const wxRegion& region ) { Ref(region); }
+    wxRegion( const wxRegion& region )
+        : wxGDIObject()
+        { Ref(region); }
     wxRegion& operator = ( const wxRegion& region ) { Ref(region); return *this; }
 
     bool Ok() const { return m_refData != NULL; }
index 5868ef8dff56f2db8ac4d9e25f0daab0bf2c0d24..557238d6a410a0aead0bc2b7a4b27895edb184a8 100644 (file)
@@ -79,7 +79,8 @@ private:
 class WXDLLEXPORT wxHashTableLong : public wxObject
 {
 public:
-    wxHashTableLong(size_t size = wxHASH_SIZE_DEFAULT) { Init(size); }
+    wxHashTableLong(size_t size = wxHASH_SIZE_DEFAULT)
+        { Init(size); }
     virtual ~wxHashTableLong();
 
     void Create(size_t size = wxHASH_SIZE_DEFAULT);
@@ -158,7 +159,8 @@ public:
     ~wxHashTable();
 
     // copy ctor and assignment operator
-    wxHashTable(const wxHashTable& table) : wxObject() { DoCopy(table); }
+    wxHashTable(const wxHashTable& table) : wxObject()
+        { DoCopy(table); }
     wxHashTable& operator=(const wxHashTable& table)
         { Clear(); DoCopy(table); return *this; }
 
index fa7dae30cd33469bd55a7efef3cbe0167813fa87..e70715ff7a19779ed9d6f4c49259849149929b9e 100644 (file)
@@ -32,16 +32,16 @@ class WXDLLEXPORT wxIconBundle
 {
 public:
     // default constructor
-    wxIconBundle() {}
+    wxIconBundle() : m_icons() {}
     // initializes the bundle with the icon(s) found in the file
-    wxIconBundle( const wxString& file, long type )
+    wxIconBundle( const wxString& file, long type ) : m_icons()
         { AddIcon( file, type ); }
     // initializes the bundle with a single icon
-    wxIconBundle( const wxIcon& icon )
+    wxIconBundle( const wxIcon& icon ) : m_icons()
         { AddIcon( icon ); }
 
     const wxIconBundle& operator =( const wxIconBundle& ic );
-    wxIconBundle( const wxIconBundle& ic )
+    wxIconBundle( const wxIconBundle& ic ) : m_icons()
         { *this = ic; }
 
     ~wxIconBundle() { DeleteIcons(); }
index 7522d068541b532cfc0cc8f944aa1658261c4c53..6df67faa3c9e11ebdc649dfce081b66525fabc62 100644 (file)
@@ -43,7 +43,9 @@ class WXDLLEXPORT wxImage;
 class WXDLLEXPORT wxImageHandler: public wxObject
 {
 public:
-    wxImageHandler() { m_name = ""; m_extension = ""; m_type = 0; }
+    wxImageHandler()
+        : m_name(""), m_extension(""), m_mime(), m_type(0)
+        { }
 
 #if wxUSE_STREAMS
     virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=TRUE, int index=-1 );
index fd7d76e277247a9d41bebce9b02eae94b3915850..3586e6cefb5e8cfd0b8dd4c7c70a5f726cf2c0b4 100644 (file)
@@ -27,14 +27,20 @@ public:
     wxAcceleratorTable(int n, wxAcceleratorEntry entries[]); // Load from array
 
     // Copy constructors
-    inline wxAcceleratorTable(const wxAcceleratorTable& accel) { Ref(accel); }
-    inline wxAcceleratorTable(const wxAcceleratorTable* accel) { if (accel) Ref(*accel); }
+    wxAcceleratorTable(const wxAcceleratorTable& accel)
+        : wxObject()
+    { Ref(accel); }
+    wxAcceleratorTable(const wxAcceleratorTable* accel)
+    { if (accel) Ref(*accel); }
 
     ~wxAcceleratorTable();
 
-    inline wxAcceleratorTable& operator = (const wxAcceleratorTable& accel) { if (*this == accel) return (*this); Ref(accel); return *this; }
-    inline bool operator == (const wxAcceleratorTable& accel) { return m_refData == accel.m_refData; }
-    inline bool operator != (const wxAcceleratorTable& accel) { return m_refData != accel.m_refData; }
+    wxAcceleratorTable& operator = (const wxAcceleratorTable& accel)
+    { if (*this == accel) return (*this); Ref(accel); return *this; }
+    bool operator == (const wxAcceleratorTable& accel)
+    { return m_refData == accel.m_refData; }
+    bool operator != (const wxAcceleratorTable& accel)
+    { return m_refData != accel.m_refData; }
 
     bool Ok() const;
 
index 0fbf59175300e11bde00bc54879aba0a1312b22e..af030c9dbecf2b0220c8f2f678c327597e91d3b8 100644 (file)
@@ -39,7 +39,9 @@ public:
   wxBrush(short macThemeBrush ) ;
   wxBrush(const wxColour& col, int style);
   wxBrush(const wxBitmap& stipple);
-  inline wxBrush(const wxBrush& brush) { Ref(brush); }
+  wxBrush(const wxBrush& brush)
+      : wxGDIObject()
+      { Ref(brush); }
   ~wxBrush();
 
   virtual void SetColour(const wxColour& col)  ;
@@ -49,9 +51,12 @@ public:
   virtual void SetMacTheme(short macThemeBrush) ;
   virtual void SetMacThemeBackground(unsigned long macThemeBackground ,  WXRECTPTR extent) ;
 
-  inline wxBrush& operator = (const wxBrush& brush) { if (*this == brush) return (*this); Ref(brush); return *this; }
-  inline bool operator == (const wxBrush& brush) { return m_refData == brush.m_refData; }
-  inline bool operator != (const wxBrush& brush) { return m_refData != brush.m_refData; }
+  wxBrush& operator = (const wxBrush& brush)
+  { if (*this == brush) return (*this); Ref(brush); return *this; }
+  bool operator == (const wxBrush& brush)
+  { return m_refData == brush.m_refData; }
+  bool operator != (const wxBrush& brush)
+  { return m_refData != brush.m_refData; }
 
   wxMacBrushKind MacGetBrushKind()  const ;
 
index 998f06d20329dce6c9bdfb0b63650b3294a7c47a..82c7a52228711308647cc405e47fb46fb63eca89 100644 (file)
@@ -27,11 +27,14 @@ WX_DEFINE_ARRAY( char * , wxChoiceDataArray ) ;
 // Choice item
 class WXDLLEXPORT wxChoice: public wxChoiceBase
 {
-  DECLARE_DYNAMIC_CLASS(wxChoice)
-
- public:
-  wxChoice() {}
-  virtual ~wxChoice() ;
+    DECLARE_DYNAMIC_CLASS(wxChoice)
+
+public:
+    wxChoice()
+        : m_strings(), m_datas(), m_macPopUpMenuHandle(NULL)
+        {}
+    
+    virtual ~wxChoice() ;
 
   wxChoice(wxWindow *parent, wxWindowID id,
            const wxPoint& pos = wxDefaultPosition,
index 13f24cc716ff51aa97f1753129bff678acac8756..f4afea1ba2966c1963576fb8635e540012cc086b 100644 (file)
@@ -28,11 +28,17 @@ public:
   wxColour();
     // from RGB
   wxColour( unsigned char red, unsigned char green, unsigned char blue );
-  wxColour( unsigned long colRGB ) { Set(colRGB); }
+  wxColour( unsigned long colRGB )
+      : m_isInit(FALSE), m_red(0), m_blue(0), m_green(0)
+      { Set(colRGB); }
   
     // implicit conversion from the colour name
-  wxColour( const wxString &colourName ) { InitFromName(colourName); }
-  wxColour( const char *colourName ) { InitFromName(colourName); }
+  wxColour( const wxString &colourName )
+      : m_isInit(FALSE), m_red(0), m_blue(0), m_green(0)
+      { InitFromName(colourName); }
+  wxColour( const char *colourName )
+      : m_isInit(FALSE), m_red(0), m_blue(0), m_green(0)
+      { InitFromName(colourName); }
 
     // copy ctors and assignment operators
   wxColour( const wxColour& col );
index 02f59ad05e409305c0a23dbf155b6f8a480c4344..cef07af9c5afc67acd2c41f63af9624a47bfc70f 100644 (file)
@@ -102,11 +102,11 @@ protected:
 
 protected:
    // For controls like radiobuttons which are really composite
-       WXWidget                m_macControl ;
-       bool                            m_macControlIsShown ;
-       wxList m_subControls;
-       int                                                     m_macHorizontalBorder ;
-       int                                                     m_macVerticalBorder ;
+   WXWidget m_macControl ;
+   bool     m_macControlIsShown ;
+   wxList   m_subControls;
+   int      m_macHorizontalBorder ;
+   int      m_macVerticalBorder ;
 
    virtual wxSize DoGetBestSize() const;
 
index be26bc025048c225e98bf0243b0e7720af8a8d87..c0b724ecbb519782682d0fddd74111507bce2885 100644 (file)
@@ -65,9 +65,9 @@ public:
     int ShowModal();
     
     // not supported for file dialog, RR
-    virtual void DoSetSize(int x, int y,
-                           int width, int height,
-                           int sizeFlags = wxSIZE_AUTO) {}
+    virtual void DoSetSize(int WXUNUSED(x), int WXUNUSED(y),
+                           int WXUNUSED(width), int WXUNUSED(height),
+                           int WXUNUSED(sizeFlags) = wxSIZE_AUTO) {}
 
 };
 
index 0d1f1f7ad5f36ce327b1185db5b5343dec9d5539..126567e96c4029f3844e041111575bff8a67f45b 100644 (file)
@@ -92,7 +92,7 @@ public:
     virtual void* DoGetItemClientData(int n) const;
     virtual void DoSetItemClientObject(int n, wxClientData* clientData);
     virtual wxClientData* DoGetItemClientObject(int n) const;
-         virtual void           DoSetSize(int x, int y,int width, int height,int sizeFlags = wxSIZE_AUTO ) ;
+    virtual void        DoSetSize(int x, int y,int width, int height,int sizeFlags = wxSIZE_AUTO ) ;
 
     // wxCheckListBox support
 #if wxUSE_OWNER_DRAWN
@@ -108,29 +108,29 @@ public:
 
     // Windows callbacks
 
-    virtual void SetupColours();
-    virtual void       MacHandleControlClick( WXWidget control , wxInt16 controlpart ) ;
+    virtual void    SetupColours();
+    virtual void    MacHandleControlClick( WXWidget control , wxInt16 controlpart ) ;
 
-       void*           m_macList ;
-       wxArrayString   m_stringArray ;
-       wxListDataArray m_dataArray ;
-       wxArrayInt m_selectionPreImage ;
-       void                    MacSetRedraw( bool doDraw ) ;
+    void*           m_macList ;
+    wxArrayString   m_stringArray ;
+    wxListDataArray m_dataArray ;
+    wxArrayInt      m_selectionPreImage ;
+    void            MacSetRedraw( bool doDraw ) ;
 protected:
-       void                    MacDestroy() ;                  
-       void                    MacDelete( int n ) ;
-       void                    MacInsert( int n , const char * text) ;
-       void                    MacAppend( const char * text) ;
-       void                    MacSet( int n , const char *text ) ;
-       void                    MacClear() ;
-       void                    MacSetSelection( int n , bool select ) ;
-       int                     MacGetSelection() const ;
-       int                             MacGetSelections(wxArrayInt& aSelections) const ;
-       bool                    MacIsSelected( int n ) const ;
-       void                    MacScrollTo( int n ) ;
-       void                    OnSize( const wxSizeEvent &size ) ;
-       void                    MacDoClick() ;
-       void                    MacDoDoubleClick() ;
+    void            MacDestroy() ;
+    void            MacDelete( int n ) ;
+    void            MacInsert( int n , const char * text) ;
+    void            MacAppend( const char * text) ;
+    void            MacSet( int n , const char *text ) ;
+    void            MacClear() ;
+    void            MacSetSelection( int n , bool select ) ;
+    int             MacGetSelection() const ;
+    int             MacGetSelections(wxArrayInt& aSelections) const ;
+    bool            MacIsSelected( int n ) const ;
+    void            MacScrollTo( int n ) ;
+    void            OnSize( const wxSizeEvent &size ) ;
+    void            MacDoClick() ;
+    void            MacDoDoubleClick() ;
 
     // do we have multiple selections?
     bool HasMultipleSelection() const;
@@ -150,7 +150,7 @@ protected:
 
 private:
     DECLARE_DYNAMIC_CLASS(wxListBox)
-       DECLARE_EVENT_TABLE()
+    DECLARE_EVENT_TABLE()
 };
 
 #endif
index 2afc85b37267f4953addd031d927f4abff75f08f..af3ab308ec3fc008c4188e3a3e50cf4ecc3c15d4 100644 (file)
 
 class wxMacPortStateHelper 
 {
-public :
-       wxMacPortStateHelper( GrafPtr newport) ; 
-       wxMacPortStateHelper() ;
-       ~wxMacPortStateHelper() ;
+    DECLARE_NO_COPY_CLASS(wxMacPortStateHelper)
+        
+public:
+    wxMacPortStateHelper( GrafPtr newport) ; 
+    wxMacPortStateHelper() ;
+    ~wxMacPortStateHelper() ;
 
-       void Setup( GrafPtr newport ) ;
-       void Clear() ;
-       bool IsCleared() { return m_clip == NULL ; }
-       GrafPtr GetCurrentPort() { return m_currentPort ; }
+    void Setup( GrafPtr newport ) ;
+    void Clear() ;
+    bool IsCleared() { return m_clip == NULL ; }
+    GrafPtr GetCurrentPort() { return m_currentPort ; }
 
-private :
-       GrafPtr                 m_currentPort ;
-       GrafPtr                 m_oldPort ;
-       RgnHandle               m_clip ;
-       ThemeDrawingState m_drawingState ;
-       short                   m_textFont ;
-       short                   m_textSize ;
-       short                   m_textStyle ;
-       short           m_textMode ;
+private:
+    GrafPtr          m_currentPort ;
+    GrafPtr          m_oldPort ;
+    RgnHandle        m_clip ;
+    ThemeDrawingState m_drawingState ;
+    short            m_textFont ;
+    short            m_textSize ;
+    short            m_textStyle ;
+    short            m_textMode ;
 } ;
 
 class WXDLLEXPORT wxMacPortSetter
 {
-public :
-       wxMacPortSetter( const wxDC* dc ) ;
-       ~wxMacPortSetter() ;
-private :
-       wxMacPortStateHelper m_ph ;
-       const wxDC* m_dc ;
+    DECLARE_NO_COPY_CLASS(wxMacPortSetter)
+        
+public:
+    wxMacPortSetter( const wxDC* dc ) ;
+    ~wxMacPortSetter() ;
+private:
+    wxMacPortStateHelper m_ph ;
+    const wxDC* m_dc ;
 } ;
 
 class wxMacDrawingHelper
 {
-public :
-       wxMacDrawingHelper( wxWindowMac * theWindow , bool clientArea = false ) ;
-       ~wxMacDrawingHelper() ;
-       bool Ok() { return m_ok ; }
-       void LocalToWindow( Rect *rect) { OffsetRect( rect , m_origin.h , m_origin.v ) ; }
-       void LocalToWindow( Point *pt ) { AddPt( m_origin , pt ) ; }
-       void LocalToWindow( RgnHandle rgn ) { OffsetRgn( rgn , m_origin.h , m_origin.v ) ; }
-  const Point& GetOrigin() { return m_origin ; }
-private :
-  Point     m_origin ;
-       GrafPtr         m_formerPort ;
-       GrafPtr         m_currentPort ;
-       PenState        m_savedPenState ;
-       bool                    m_ok ;
+    DECLARE_NO_COPY_CLASS(wxMacDrawingHelper)
+        
+public:
+    wxMacDrawingHelper( wxWindowMac * theWindow , bool clientArea = false ) ;
+    ~wxMacDrawingHelper() ;
+    bool Ok() { return m_ok ; }
+    void LocalToWindow( Rect *rect) { OffsetRect( rect , m_origin.h , m_origin.v ) ; }
+    void LocalToWindow( Point *pt ) { AddPt( m_origin , pt ) ; }
+    void LocalToWindow( RgnHandle rgn ) { OffsetRgn( rgn , m_origin.h , m_origin.v ) ; }
+    const Point& GetOrigin() { return m_origin ; }
+private:
+    Point     m_origin ;
+    GrafPtr   m_formerPort ;
+    GrafPtr   m_currentPort ;
+    PenState  m_savedPenState ;
+    bool      m_ok ;
 } ;
 
 
index af6516c90de3f68cb5f2d0bcfd05eb0113005d9c..51eda5000209c2eaebcecb3493aac4b278e3f371 100644 (file)
@@ -27,7 +27,7 @@ class WXDLLEXPORT wxStaticLine : public wxStaticLineBase
 
 public:
     // constructors and pseudo-constructors
-    wxStaticLine() { }
+    wxStaticLine() : m_statbox(NULL) { }
 
     wxStaticLine( wxWindow *parent,
                   wxWindowID id,
@@ -35,6 +35,7 @@ public:
                   const wxSize &size = wxDefaultSize,
                   long style = wxLI_HORIZONTAL,
                   const wxString &name = wxStaticTextNameStr )
+        : m_statbox(NULL)
     {
         Create(parent, id, pos, size, style, name);
     }
index 934d7e81186971638f1ddf6c33eb6065ab028cbc..fb9fdff70f593673fbf9539d7847d4566a688837 100644 (file)
@@ -20,7 +20,7 @@ class WXDLLEXPORT wxStaticText: public wxStaticTextBase
 {
   DECLARE_DYNAMIC_CLASS(wxStaticText)
  public:
-  inline wxStaticText() { }
+  inline wxStaticText() : m_label() { }
 
   inline wxStaticText(wxWindow *parent, wxWindowID id,
            const wxString& label,
index 2bc339b0136583f4dea899a8037b66476d625bd9..2c24882618d70a15c382422540207ddd6a3456ff 100644 (file)
@@ -31,12 +31,14 @@ class WXDLLEXPORT wxToolBar: public wxToolBarBase
    * Public interface
    */
 
-   wxToolBar() { Init(); }
+   wxToolBar() : m_macToolHandles() { Init(); }
 
 
-  inline wxToolBar(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
-            long style = wxNO_BORDER|wxTB_HORIZONTAL,
-            const wxString& name = wxToolBarNameStr)
+  inline wxToolBar(wxWindow *parent, wxWindowID id,
+                   const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
+                   long style = wxNO_BORDER|wxTB_HORIZONTAL,
+                   const wxString& name = wxToolBarNameStr)
+      : m_macToolHandles()
   {
     Init();
     Create(parent, id, pos, size, style, name);
index 89f8cc9580c9380bcfb1f78543f8da35a9a8224c..8d51f95e7996ea7e2f2f93a3141fb42a5cf77dd4 100644 (file)
@@ -58,35 +58,36 @@ public:
     virtual void SetIcons(const wxIconBundle& icons) { SetIcon( icons.GetIcon( -1 ) ); }
     virtual void Restore();
 
-    virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL) { return FALSE; }
+    virtual bool ShowFullScreen(bool WXUNUSED(show), long WXUNUSED(style) = wxFULLSCREEN_ALL)
+    { return FALSE; }
     virtual bool IsFullScreen() const { return FALSE; }
 
     // implementation from now on
     // --------------------------
 
-       virtual void MacCreateRealWindow( const wxString& title,
-           const wxPoint& pos,
-           const wxSize& size,
-           long style,
-           const wxString& name ) ;
-       static WXWindow MacGetWindowInUpdate() { return s_macWindowInUpdate ; }
-       virtual void MacGetPortParams(WXPOINTPTR localOrigin, WXRECTPTR clipRect, WXWindow *window , wxWindowMac** rootwin ) ;
-  virtual void Clear() ;
-  virtual WXWidget MacGetContainerForEmbedding() ;
-  WXWindow MacGetWindowRef() { return m_macWindow ; }
-       virtual void MacActivate( WXEVENTREF ev , bool inIsActivating ) ;
-       virtual void MacUpdate( long timestamp ) ;
-       virtual void MacMouseDown( WXEVENTREF ev , short windowPart ) ;
-       virtual void MacMouseUp( WXEVENTREF ev , short windowPart ) ;
-       virtual void MacMouseMoved( WXEVENTREF ev , short windowPart ) ;
-       virtual void MacKeyDown( WXEVENTREF ev ) ;
-       virtual void MacFireMouseEvent( WXEVENTREF ev ) ;
-  virtual void Raise();
-  virtual void Lower();
-  virtual void SetTitle( const wxString& title);
-  virtual bool Show( bool show = TRUE );
-  virtual void DoMoveWindow(int x, int y, int width, int height);
-  void MacInvalidate( const WXRECTPTR rect, bool eraseBackground ) ;
+    virtual void MacCreateRealWindow( const wxString& title,
+                                      const wxPoint& pos,
+                                      const wxSize& size,
+                                      long style,
+                                      const wxString& name ) ;
+    static WXWindow MacGetWindowInUpdate() { return s_macWindowInUpdate ; }
+    virtual void MacGetPortParams(WXPOINTPTR localOrigin, WXRECTPTR clipRect, WXWindow *window , wxWindowMac** rootwin ) ;
+    virtual void Clear() ;
+    virtual WXWidget MacGetContainerForEmbedding() ;
+    WXWindow MacGetWindowRef() { return m_macWindow ; }
+    virtual void MacActivate( WXEVENTREF ev , bool inIsActivating ) ;
+    virtual void MacUpdate( long timestamp ) ;
+    virtual void MacMouseDown( WXEVENTREF ev , short windowPart ) ;
+    virtual void MacMouseUp( WXEVENTREF ev , short windowPart ) ;
+    virtual void MacMouseMoved( WXEVENTREF ev , short windowPart ) ;
+    virtual void MacKeyDown( WXEVENTREF ev ) ;
+    virtual void MacFireMouseEvent( WXEVENTREF ev ) ;
+    virtual void Raise();
+    virtual void Lower();
+    virtual void SetTitle( const wxString& title);
+    virtual bool Show( bool show = TRUE );
+    virtual void DoMoveWindow(int x, int y, int width, int height);
+    void MacInvalidate( const WXRECTPTR rect, bool eraseBackground ) ;
 protected:
     // common part of all ctors
     void Init();
@@ -105,7 +106,7 @@ protected:
     WXHRGN m_macNoEraseUpdateRgn ;
     bool m_macNeedsErasing ;
 
-         static WXWindow s_macWindowInUpdate ;
+    static WXWindow s_macWindowInUpdate ;
 };
 
 // list of all frames and modeless dialogs
index de373e5546f32ba2543bbbd345c086d1dd21c6de..92617b24f16db3018317ae9e6dfd7febb3b8975a 100644 (file)
@@ -30,18 +30,18 @@ protected:
     virtual bool OnExists() const
         { return FALSE; }
 
-    virtual bool OnOpen(const wxString &strBufferName,
-                        wxTextBufferOpenMode OpenMode)
+    virtual bool OnOpen(const wxString & WXUNUSED(strBufferName),
+                        wxTextBufferOpenMode WXUNUSED(OpenMode))
         { return TRUE; }
 
     virtual bool OnClose()
         { return TRUE; }
 
-    virtual bool OnRead(wxMBConv& conv)
+    virtual bool OnRead(wxMBConv& WXUNUSED(conv))
         { return TRUE; }
 
-    virtual bool OnWrite(wxTextFileType typeNew,
-                         wxMBConv& conv = wxConvLibc)
+    virtual bool OnWrite(wxTextFileType WXUNUSED(typeNew),
+                         wxMBConv& WXUNUSED(conv) = wxConvLibc)
         { return TRUE; }
 };
 
index 4d68a6901ee2ce1e5b11fa33fd0fcce0f1dc4bd2..fac092df9a9e9b7ad267e4f681cd3e110f43ec7b 100644 (file)
@@ -42,7 +42,8 @@ DECLARE_DYNAMIC_CLASS(wxQuantize)
 
 //// Constructor
 
-    wxQuantize() {};
+    wxQuantize() {}
+    ~wxQuantize() {}
 
 //// Operations
 
index af2e71a502b0ae7c3fe8c27013bc2f5280dd74ef..4e4bdf1535997988547f531ab6794210e0fcf22c 100644 (file)
@@ -47,7 +47,7 @@ public:
     wxTime() : m_time(wxDateTime::Now()) { }
     wxTime(clockTy s) : m_time((time_t)(s - wxTIME_EPOCH_DIFF)) { }
     void operator=(const wxTime& t) { m_time = t.m_time; }
-    wxTime(const wxTime& t) { *this = t; }
+    wxTime(const wxTime& t) : wxObject() { *this = t; }
     wxTime(hourTy h, minuteTy m, secondTy s = 0, bool WXUNUSED(dst) = FALSE)
         : m_time(h, m, s) { }
 
index cc08b0d756c8faa8410dc00cb7d58cf40b22b5ba..9a8e4f53eb476bf2ff70d0087c800df65e31b2d8 100644 (file)
@@ -169,7 +169,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxDefaultArtProviderModule, wxModule)
 
 wxBitmap wxDefaultArtProvider::CreateBitmap(const wxArtID& id,
                                             const wxArtClient& client,
-                                            const wxSize& size)
+                                            const wxSize& WXUNUSED(size))
 {
     // wxMessageBox icons:
     ART_MSGBOX(wxART_ERROR,       wxICON_ERROR,       error)
index 706dfe892e7ed6d0f2f1ba2d0e7eafe4b01eeb06..02da993d2524cd15bef6679853757a899d04b76b 100644 (file)
@@ -81,6 +81,7 @@ wxGenericValidator::wxGenericValidator(wxArrayInt *val)
 }
 
 wxGenericValidator::wxGenericValidator(const wxGenericValidator& val)
+    : wxValidator()
 {
     Copy(val);
 }
index 4c8a4748688dcc0828ae8577306d0078744ca9a9..fc7bc3e4c752f86a5a57244ce0a5c6f1f408c7ca 100644 (file)
@@ -61,6 +61,7 @@ wxTextValidator::wxTextValidator(long style, wxString *val)
 }
 
 wxTextValidator::wxTextValidator(const wxTextValidator& val)
+    : wxValidator()
 {
     Copy(val);
 }
index 894c1cf9aa3f5171806753a6ba133bb690b2177f..abbd2de6e5b0dc7876cd4fdb5592dd9c442999e3 100644 (file)
@@ -1390,6 +1390,7 @@ wxVariant::wxVariant(const wxArrayString& val, const wxString& name) // Strings
 }
 
 wxVariant::wxVariant(const wxVariant& variant)
+    : wxObject()
 {
     if (!variant.IsNull())
     {
index 21a745b598d4b42e84d4b6d2941c66be70030ea5..ff0483376b0ad01b2af60abc5b8fc45961277b7a 100644 (file)
@@ -59,6 +59,7 @@ public:
     }
 
     wxAccelRefData(const wxAccelRefData& data)
+        : wxObjectRefData()
     {
         m_accels.DeleteContents(TRUE);
         m_accels = data.m_accels;
index a5a0040077c13e8e9bb2d3bed64ec9b57c919ec8..d613e1e4c9bb4d41fcbf28fa14140d6d5b00fa9e 100644 (file)
@@ -251,22 +251,22 @@ void wxGenericFindReplaceDialog::SendEvent(const wxEventType& evtType)
 // event handlers
 // ----------------------------------------------------------------------------
 
-void wxGenericFindReplaceDialog::OnFind(wxCommandEvent& event)
+void wxGenericFindReplaceDialog::OnFind(wxCommandEvent& WXUNUSED(event))
 {
     SendEvent(wxEVT_COMMAND_FIND_NEXT);
 }
 
-void wxGenericFindReplaceDialog::OnReplace(wxCommandEvent& event)
+void wxGenericFindReplaceDialog::OnReplace(wxCommandEvent& WXUNUSED(event))
 {
     SendEvent(wxEVT_COMMAND_FIND_REPLACE);
 }
 
-void wxGenericFindReplaceDialog::OnReplaceAll(wxCommandEvent& event)
+void wxGenericFindReplaceDialog::OnReplaceAll(wxCommandEvent& WXUNUSED(event))
 {
     SendEvent(wxEVT_COMMAND_FIND_REPLACE_ALL);
 }
 
-void wxGenericFindReplaceDialog::OnCancel(wxCommandEvent& event)
+void wxGenericFindReplaceDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
 {
     SendEvent(wxEVT_COMMAND_FIND_CLOSE);
 
index 9d3d7bc280e4057351ffa32fe83010fae13044ed..00fe75da389cfa83b60afe3157ab60d21d2e22c8 100644 (file)
@@ -579,7 +579,7 @@ void wxFileData::MakeItem( wxListItem &item )
 //  wxFileCtrl
 //-----------------------------------------------------------------------------
 
-IMPLEMENT_DYNAMIC_CLASS(wxFileCtrl,wxListCtrl);
+IMPLEMENT_DYNAMIC_CLASS(wxFileCtrl,wxListCtrl)
 
 BEGIN_EVENT_TABLE(wxFileCtrl,wxListCtrl)
     EVT_LIST_DELETE_ITEM(-1, wxFileCtrl::OnListDeleteItem)
index 1b3afbebba05322c32f1469448385dfc3d844fcf..033071565ef845fdc622e3258135bef48b7be14c 100644 (file)
@@ -814,6 +814,7 @@ wxImage wxBitmap::ConvertToImage() const
 }
 
 wxBitmap::wxBitmap( const wxBitmap& bmp )
+    : wxGDIObject()
 {
     Ref( bmp );
 }
index c6b35cc4a26b4b11504f715bc2820fe3fcd327fd..f20993f3cb664031e7cc2147a8b07100790fcafa 100644 (file)
@@ -28,6 +28,7 @@ public:
     }
     
     wxBrushRefData( const wxBrushRefData& data )
+        : wxObjectRefData()
     {
         m_style = data.m_style;
         m_stipple = data.m_stipple;
index 1b82a30b01a39f2cfce2d81c7b5ea25b7aa70792..84c790a329fcea1dbd7299c85b0355ce1c6054de 100644 (file)
@@ -36,6 +36,7 @@ public:
     }
     
     wxColourRefData(const wxColourRefData& data)
+        : wxObjectRefData()
     {
         m_color = data.m_color;
         m_colormap = data.m_colormap;
index 8bcc0d0ce19cafc7c6407445a2c9554981dee74b..159bb4bffa4b403731c55e93aab2aa3e44e2d29a 100644 (file)
@@ -142,6 +142,7 @@ wxCursor::wxCursor(const char bits[], int width, int  height,
 
 
 wxCursor::wxCursor( const wxCursor &cursor )
+    : wxObject()
 {
     Ref( cursor );
 }
index 1fd76d1df0d03eb30222796b118540ecead5594d..79921f481a8534a166b06a33e0fd9147d350933f 100644 (file)
@@ -174,6 +174,7 @@ void wxFontRefData::Init(int pointSize,
 }
 
 wxFontRefData::wxFontRefData( const wxFontRefData& data )
+    : wxObjectRefData()
 {
     m_pointSize = data.m_pointSize;
     m_family = data.m_family;
index 7ba9b5940d8aab67a040861fca2e93d4557b75f8..11f787bd324d12392c91d48f3c38e350227e877e 100644 (file)
@@ -34,6 +34,7 @@ public:
     }
     
     wxPenRefData( const wxPenRefData& data )
+        : wxObjectRefData()
     {
         m_style = data.m_style;
         m_width = data.m_width;
index 91b9d1f043d1d2ee727654e88e2e249eff098028..11ca072cd31d321376918745024b83fb78ac067d 100644 (file)
@@ -39,6 +39,7 @@ public:
     }
     
     wxRegionRefData(const wxRegionRefData& refData)
+        : wxObjectRefData()
     {
 #ifdef __WXGTK20__
         m_region = gdk_region_copy(refData.m_region);
@@ -66,8 +67,8 @@ public:
 #define M_REGIONDATA ((wxRegionRefData *)m_refData)
 #define M_REGIONDATA_OF(rgn) ((wxRegionRefData *)(rgn.m_refData))
 
-IMPLEMENT_DYNAMIC_CLASS(wxRegion, wxGDIObject);
-IMPLEMENT_DYNAMIC_CLASS(wxRegionIterator,wxObject);
+IMPLEMENT_DYNAMIC_CLASS(wxRegion, wxGDIObject)
+IMPLEMENT_DYNAMIC_CLASS(wxRegionIterator,wxObject)
 
 // ----------------------------------------------------------------------------
 // wxRegion construction
index 1b3afbebba05322c32f1469448385dfc3d844fcf..033071565ef845fdc622e3258135bef48b7be14c 100644 (file)
@@ -814,6 +814,7 @@ wxImage wxBitmap::ConvertToImage() const
 }
 
 wxBitmap::wxBitmap( const wxBitmap& bmp )
+    : wxGDIObject()
 {
     Ref( bmp );
 }
index c6b35cc4a26b4b11504f715bc2820fe3fcd327fd..f20993f3cb664031e7cc2147a8b07100790fcafa 100644 (file)
@@ -28,6 +28,7 @@ public:
     }
     
     wxBrushRefData( const wxBrushRefData& data )
+        : wxObjectRefData()
     {
         m_style = data.m_style;
         m_stipple = data.m_stipple;
index 1b82a30b01a39f2cfce2d81c7b5ea25b7aa70792..84c790a329fcea1dbd7299c85b0355ce1c6054de 100644 (file)
@@ -36,6 +36,7 @@ public:
     }
     
     wxColourRefData(const wxColourRefData& data)
+        : wxObjectRefData()
     {
         m_color = data.m_color;
         m_colormap = data.m_colormap;
index 8bcc0d0ce19cafc7c6407445a2c9554981dee74b..159bb4bffa4b403731c55e93aab2aa3e44e2d29a 100644 (file)
@@ -142,6 +142,7 @@ wxCursor::wxCursor(const char bits[], int width, int  height,
 
 
 wxCursor::wxCursor( const wxCursor &cursor )
+    : wxObject()
 {
     Ref( cursor );
 }
index 1fd76d1df0d03eb30222796b118540ecead5594d..79921f481a8534a166b06a33e0fd9147d350933f 100644 (file)
@@ -174,6 +174,7 @@ void wxFontRefData::Init(int pointSize,
 }
 
 wxFontRefData::wxFontRefData( const wxFontRefData& data )
+    : wxObjectRefData()
 {
     m_pointSize = data.m_pointSize;
     m_family = data.m_family;
index 7ba9b5940d8aab67a040861fca2e93d4557b75f8..11f787bd324d12392c91d48f3c38e350227e877e 100644 (file)
@@ -34,6 +34,7 @@ public:
     }
     
     wxPenRefData( const wxPenRefData& data )
+        : wxObjectRefData()
     {
         m_style = data.m_style;
         m_width = data.m_width;
index 91b9d1f043d1d2ee727654e88e2e249eff098028..11ca072cd31d321376918745024b83fb78ac067d 100644 (file)
@@ -39,6 +39,7 @@ public:
     }
     
     wxRegionRefData(const wxRegionRefData& refData)
+        : wxObjectRefData()
     {
 #ifdef __WXGTK20__
         m_region = gdk_region_copy(refData.m_region);
@@ -66,8 +67,8 @@ public:
 #define M_REGIONDATA ((wxRegionRefData *)m_refData)
 #define M_REGIONDATA_OF(rgn) ((wxRegionRefData *)(rgn.m_refData))
 
-IMPLEMENT_DYNAMIC_CLASS(wxRegion, wxGDIObject);
-IMPLEMENT_DYNAMIC_CLASS(wxRegionIterator,wxObject);
+IMPLEMENT_DYNAMIC_CLASS(wxRegion, wxGDIObject)
+IMPLEMENT_DYNAMIC_CLASS(wxRegionIterator,wxObject)
 
 // ----------------------------------------------------------------------------
 // wxRegion construction
index 181460adf445d2a2ee12e19aca7cb9f0df59f6d8..798aa720268d1268858fe239dd4baa9614ad1e7a 100644 (file)
@@ -46,8 +46,8 @@ public:
 #define M_ACCELDATA ((wxAcceleratorRefData *)m_refData)
 
 wxAcceleratorRefData::wxAcceleratorRefData()
+    : m_accels()
 {
-    m_accels.DeleteContents( TRUE );
 }
 
 wxAcceleratorRefData::~wxAcceleratorRefData()
@@ -57,7 +57,7 @@ wxAcceleratorRefData::~wxAcceleratorRefData()
 
 wxAcceleratorTable::wxAcceleratorTable()
 {
-  m_refData = NULL;
+    m_refData = NULL;
 }
 
 wxAcceleratorTable::~wxAcceleratorTable()
index f38b3782d99053c54a6c0a7b0229d34d1a096616..ba06a370e269268a6b805c24fb9db500fbd3bbfe 100644 (file)
@@ -46,14 +46,15 @@ protected:
 #define M_BRUSHDATA ((wxBrushRefData *)m_refData)
 
 wxBrushRefData::wxBrushRefData()
+    : m_style(wxSOLID)
 {
-    m_style = wxSOLID;
     m_macBrushKind = kwxMacBrushColour ;
 }
 
 wxBrushRefData::wxBrushRefData(const wxBrushRefData& data)
+    : wxGDIRefData()
+    , m_style(data.m_style)
 {
-  m_style = data.m_style;
   m_stipple = data.m_stipple;
   m_colour = data.m_colour;
   m_macBrushKind = data.m_macBrushKind ;
index 181460adf445d2a2ee12e19aca7cb9f0df59f6d8..798aa720268d1268858fe239dd4baa9614ad1e7a 100644 (file)
@@ -46,8 +46,8 @@ public:
 #define M_ACCELDATA ((wxAcceleratorRefData *)m_refData)
 
 wxAcceleratorRefData::wxAcceleratorRefData()
+    : m_accels()
 {
-    m_accels.DeleteContents( TRUE );
 }
 
 wxAcceleratorRefData::~wxAcceleratorRefData()
@@ -57,7 +57,7 @@ wxAcceleratorRefData::~wxAcceleratorRefData()
 
 wxAcceleratorTable::wxAcceleratorTable()
 {
-  m_refData = NULL;
+    m_refData = NULL;
 }
 
 wxAcceleratorTable::~wxAcceleratorTable()
index f38b3782d99053c54a6c0a7b0229d34d1a096616..ba06a370e269268a6b805c24fb9db500fbd3bbfe 100644 (file)
@@ -46,14 +46,15 @@ protected:
 #define M_BRUSHDATA ((wxBrushRefData *)m_refData)
 
 wxBrushRefData::wxBrushRefData()
+    : m_style(wxSOLID)
 {
-    m_style = wxSOLID;
     m_macBrushKind = kwxMacBrushColour ;
 }
 
 wxBrushRefData::wxBrushRefData(const wxBrushRefData& data)
+    : wxGDIRefData()
+    , m_style(data.m_style)
 {
-  m_style = data.m_style;
   m_stipple = data.m_stipple;
   m_colour = data.m_colour;
   m_macBrushKind = data.m_macBrushKind ;
index 82fb8a7928c521e24d62ab46c81fcbd5ea210cbe..5755910b267b247478910f10a1425e14bf586cd8 100644 (file)
@@ -52,6 +52,7 @@ wxColour::wxColour (unsigned char r, unsigned char g, unsigned char b)
 }
 
 wxColour::wxColour (const wxColour& col)
+    : wxObject()
 {
     m_red = col.m_red;
     m_green = col.m_green;
@@ -125,4 +126,4 @@ void wxColour::Set( const WXCOLORREF* color )
     m_red = col->red>>8 ;
     m_blue = col->blue>>8 ;
     m_green = col->green>>8 ;
-}
\ No newline at end of file
+}
index fcd86ce2835fad420786be5c8fb8ca435d7f7518..c6f0d29f89a8d4fe99ad307fccf4f260786d9b89 100644 (file)
@@ -909,8 +909,8 @@ void  wxDC::DoDrawLines(int n, wxPoint points[],
 }
 
 void  wxDC::DoDrawPolygon(int n, wxPoint points[],
-                               wxCoord xoffset, wxCoord yoffset,
-                               int fillStyle )
+                          wxCoord xoffset, wxCoord yoffset,
+                          int fillStyle )
 {
        wxCHECK_RET(Ok(), wxT("Invalid DC"));
        wxMacPortSetter helper(this) ;
@@ -1201,7 +1201,6 @@ bool  wxDC::DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height,
        if ( LockPixels(bmappixels) )
        {
         wxMacPortSetter helper(this) ;
-        RGBColor tempColor ;
     
        if ( source->GetDepth() == 1 )
        {
index 9985a00b9efa7286ca9e9496d1757f66c2798819..5e3f603ce8c0d7ce3efd3ae1ae29b8cb3f75494b 100644 (file)
@@ -23,6 +23,7 @@
 IMPLEMENT_DYNAMIC_CLASS(wxMemoryDC,wxPaintDC)
 
 wxMemoryDC::wxMemoryDC(void)
+    : m_selected()
 {
   m_ok = TRUE;
     SetBackground(*wxWHITE_BRUSH);
@@ -32,8 +33,9 @@ wxMemoryDC::wxMemoryDC(void)
 };
 
 wxMemoryDC::wxMemoryDC( wxDC *WXUNUSED(dc) )
+    : m_selected()
 {
- m_ok = TRUE;
 m_ok = TRUE;
     SetBackground(*wxWHITE_BRUSH);
     SetBrush(*wxWHITE_BRUSH);
     SetPen(*wxBLACK_PEN);
index ab906cad670ebc795f1f203b7454e501793c052f..d30015eaf9e533df8061bf055a112e549ad5d9b6 100644 (file)
@@ -54,9 +54,9 @@ void wxFontRefData::Init(int pointSize,
     m_faceName = faceName;
     m_encoding = encoding;
 
-       m_macFontNum = 0 ;
-       m_macFontSize = 0;
-       m_macFontStyle = 0;
+    m_macFontNum = 0 ;
+    m_macFontSize = 0;
+    m_macFontStyle = 0;
     m_fontId = 0;
 }
 
index 290f75ee641655730a2d99d98e9b7d0965f9c7e6..bbeaa29fcf83dc7d16dbccb30b6aeefcd0fc67e0 100644 (file)
@@ -1650,10 +1650,12 @@ void _GSocket_Internal_Proc(unsigned long e , void* d )
 /* Hack added for Mac OS X */
 GSocketError GAddress_UNIX_GetPath(GAddress *addr, char *path, size_t buf)
 {
+    return GSOCK_INVADDR;
 }
 
 GSocketError GAddress_UNIX_SetPath(GAddress *addr, const char *path)
 {
+    return GSOCK_INVADDR;
 }
 
 #endif  /* wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__) */
index e886c1073ca51df91d7d384906f292e45b9e33b5..5ec5f3ec80ee14571aea01c9ad8a472698435e6c 100644 (file)
@@ -31,24 +31,23 @@ wxIcon::wxIcon()
 }
 
 wxIcon::wxIcon(const char bits[], int width, int height) :
-    wxBitmap(bits,width,height )
+    wxBitmap(bits, width, height)
 {
     
 }
 
 wxIcon::wxIcon( const char **bits ) :
-    wxBitmap(bits  )
+    wxBitmap(bits)
 {
 }
 
 wxIcon::wxIcon( char **bits ) :
-    wxBitmap(bits )
+    wxBitmap(bits)
 {
 }
 
 wxIcon::wxIcon(const wxString& icon_file, int flags,
     int desiredWidth, int desiredHeight)
-
 {
     LoadFile(icon_file, (wxBitmapType) flags, desiredWidth, desiredHeight);
 }
index e3beab732260c050d4c289571239892518cf6319..91a05baddda5a628939af956a11dcac345b90bea 100644 (file)
@@ -27,7 +27,7 @@
 
 #if !USE_SHARED_LIBRARY
     IMPLEMENT_DYNAMIC_CLASS(wxSpinButton, wxControl)
-    IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxScrollEvent);
+    IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxScrollEvent)
 #endif
 
 wxSpinButton::wxSpinButton()
index 139b505f8e271a5bca60bc055c078a26d6499ef7..59f6573dae2c7f385145378cdaffdeb415541377 100644 (file)
@@ -147,4 +147,4 @@ void wxStatusBarMac::MacSuperEnabled( bool enabled )
 {
     Refresh(FALSE) ;
     wxWindow::MacSuperEnabled( enabled ) ;
-}
\ No newline at end of file
+}
index 2982b7c5c4be9b726a936966abb1003832fb3409..c36ecf6845edc05eefc73b1e990fef44a720c74e 100644 (file)
@@ -164,7 +164,6 @@ void wxStaticText::OnPaint( wxPaintEvent &event )
 
 wxSize wxStaticText::DoGetBestSize() const
 {
-    int x,y ;
     int widthTextMax = 0, widthLine,
         heightTextTotal = 0, heightLineDefault = 0, heightLine = 0;
         
index 7ab64897097f3cc205d29f6bee79fa5730cedf58..f479c01bb70ef9dcf6a05e8d85902fd4b6b8cf92 100644 (file)
@@ -253,7 +253,6 @@ bool wxTextCtrl::CanPaste() const
     if (!IsEditable())
         return FALSE;
 
-    long offset ;
 #if TARGET_CARBON
     OSStatus err = noErr;
     ScrapRef scrapRef;
@@ -275,6 +274,7 @@ bool wxTextCtrl::CanPaste() const
     return FALSE;
     
 #else
+    long offset ;
     if ( GetScrap( NULL , 'TEXT' , &offset ) > 0 )
     {
         return TRUE ;
@@ -304,7 +304,7 @@ void wxTextCtrl::SetInsertionPointEnd()
 
 long wxTextCtrl::GetInsertionPoint() const
 {
-   ControlEditTextSelectionRec selection ;
+    //   ControlEditTextSelectionRec selection ;
    TEHandle teH ;
    long size ;
    
@@ -315,7 +315,7 @@ long wxTextCtrl::GetInsertionPoint() const
 
 long wxTextCtrl::GetLastPosition() const
 {
-   ControlEditTextSelectionRec selection ;
+    //   ControlEditTextSelectionRec selection ;
    TEHandle teH ;
    long size ;
    
@@ -393,8 +393,8 @@ void wxTextCtrl::WriteText(const wxString& text)
    
     ::GetControlData( (ControlHandle) m_macControl , 0, kControlEditTextTEHandleTag , sizeof( TEHandle ) , (char*) &teH , &size ) ;
    
-        TEInsert( wxBuffer , strlen( wxBuffer) , teH ) ;
-        Refresh() ;
+    TEInsert( wxBuffer , strlen( wxBuffer) , teH ) ;
+    Refresh() ;
 }
 
 void wxTextCtrl::AppendText(const wxString& text)
index 88f837d669ea70fc2a57655955941fac9e6b2095..75db6e539e8c3ca261f1199b7d4e6adee95736bc 100644 (file)
@@ -146,7 +146,6 @@ wxMutexError wxMutex::TryLock()
     wxMacStCritical critical ;
     if ( UMASystemIsInitialized() )
     {
-        OSErr err ;
         ThreadID current = kNoThreadID;
         ::MacGetCurrentThread(&current);
         // if we are not the owner, give an error back
@@ -285,7 +284,7 @@ void wxCondition::Broadcast()
     // this works because all these threads are already waiting and so each
     // SetEvent() inside Signal() is really a PulseEvent() because the event
     // state is immediately returned to non-signaled
-    for ( int i = 0; i < m_internal->m_waiters.Count(); i++ )
+    for ( size_t i = 0; i < m_internal->m_waiters.Count(); i++ )
     {
         Signal();
     }
@@ -477,7 +476,7 @@ wxThread *wxThread::This()
 
     err = MacGetCurrentThread( &current ) ;
 
-    for ( int i = 0 ; i < s_threads.Count() ; ++i )
+    for ( size_t i = 0 ; i < s_threads.Count() ; ++i )
     {
         if ( ( (wxThread*) s_threads[i] )->GetId() == current )
             return (wxThread*) s_threads[i] ;
index 152e1aaddfce3fdc39a4c8a49ec8554538c67a2f..77662d2dbed4e3710d93b7d2545e268eff498645 100644 (file)
@@ -169,9 +169,9 @@ bool wxToolBar::Realize()
         return FALSE;
 
     Point localOrigin ;
-    Rect clipRect ;
+    //    Rect clipRect ;
     WindowRef window = (WindowRef) MacGetRootWindow() ;
-    wxWindow *win ;
+    //    wxWindow *win ;
     
     int lx , ly ;
     lx = ly = 0 ;
@@ -360,9 +360,9 @@ void wxToolBar::MacSuperChangedPosition()
   {
 
     Point localOrigin ;
-    Rect clipRect ;
-    WindowRef window ;
-    wxWindow *win ;
+    //    Rect clipRect ;
+    //    WindowRef window ;
+    //    wxWindow *win ;
     int lx , ly ;
     lx = ly = 0 ;
     MacWindowToRootWindow( &lx , &ly ) ;
index c97c35e44337206de7c4fd08913698ae80fbd595..699008b38b885ef5d60aaef6a49a932cf51f52ef 100644 (file)
@@ -35,7 +35,7 @@ long wxExecute(const wxString& command, int flags, wxProcess *handler)
 #ifdef __DARWIN__
 int wxAddProcessCallback(wxEndProcessData *proc_data, int fd)
 {
-   wxFAIL_MSG(wxT("wxAddProcessCallback() function not ready"));
+   wxFAIL_MSG( _T("wxAddProcessCallback() function not yet implemented") );
    return 0;
 }
 #endif
index e6b1ba5c7c6113f7002a79c448e23989ac9fb78c..0708958546a2dbba84d78b2c6e89c35c4d8b4ee1 100644 (file)
@@ -124,6 +124,8 @@ void wxWindowMac::Init()
 
     m_hScrollBar = NULL ;
     m_vScrollBar = NULL ;
+
+    m_label = wxEmptyString;
 }
 
 // Destructor
@@ -676,12 +678,12 @@ wxPoint wxWindowMac::GetClientAreaOrigin() const
     return wxPoint(MacGetLeftBorderSize(  ) , MacGetTopBorderSize(  ) );
 }
 
-void wxWindow::SetTitle(const wxString& title)
+void wxWindowMac::SetTitle(const wxString& title)
 {
     m_label = title ;
 }
 
-wxString wxWindow::GetTitle() const
+wxString wxWindowMac::GetTitle() const
 {
     return m_label ;
 }
index 82fb8a7928c521e24d62ab46c81fcbd5ea210cbe..5755910b267b247478910f10a1425e14bf586cd8 100644 (file)
@@ -52,6 +52,7 @@ wxColour::wxColour (unsigned char r, unsigned char g, unsigned char b)
 }
 
 wxColour::wxColour (const wxColour& col)
+    : wxObject()
 {
     m_red = col.m_red;
     m_green = col.m_green;
@@ -125,4 +126,4 @@ void wxColour::Set( const WXCOLORREF* color )
     m_red = col->red>>8 ;
     m_blue = col->blue>>8 ;
     m_green = col->green>>8 ;
-}
\ No newline at end of file
+}
index fcd86ce2835fad420786be5c8fb8ca435d7f7518..c6f0d29f89a8d4fe99ad307fccf4f260786d9b89 100644 (file)
@@ -909,8 +909,8 @@ void  wxDC::DoDrawLines(int n, wxPoint points[],
 }
 
 void  wxDC::DoDrawPolygon(int n, wxPoint points[],
-                               wxCoord xoffset, wxCoord yoffset,
-                               int fillStyle )
+                          wxCoord xoffset, wxCoord yoffset,
+                          int fillStyle )
 {
        wxCHECK_RET(Ok(), wxT("Invalid DC"));
        wxMacPortSetter helper(this) ;
@@ -1201,7 +1201,6 @@ bool  wxDC::DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height,
        if ( LockPixels(bmappixels) )
        {
         wxMacPortSetter helper(this) ;
-        RGBColor tempColor ;
     
        if ( source->GetDepth() == 1 )
        {
index 9985a00b9efa7286ca9e9496d1757f66c2798819..5e3f603ce8c0d7ce3efd3ae1ae29b8cb3f75494b 100644 (file)
@@ -23,6 +23,7 @@
 IMPLEMENT_DYNAMIC_CLASS(wxMemoryDC,wxPaintDC)
 
 wxMemoryDC::wxMemoryDC(void)
+    : m_selected()
 {
   m_ok = TRUE;
     SetBackground(*wxWHITE_BRUSH);
@@ -32,8 +33,9 @@ wxMemoryDC::wxMemoryDC(void)
 };
 
 wxMemoryDC::wxMemoryDC( wxDC *WXUNUSED(dc) )
+    : m_selected()
 {
- m_ok = TRUE;
 m_ok = TRUE;
     SetBackground(*wxWHITE_BRUSH);
     SetBrush(*wxWHITE_BRUSH);
     SetPen(*wxBLACK_PEN);
index ab906cad670ebc795f1f203b7454e501793c052f..d30015eaf9e533df8061bf055a112e549ad5d9b6 100644 (file)
@@ -54,9 +54,9 @@ void wxFontRefData::Init(int pointSize,
     m_faceName = faceName;
     m_encoding = encoding;
 
-       m_macFontNum = 0 ;
-       m_macFontSize = 0;
-       m_macFontStyle = 0;
+    m_macFontNum = 0 ;
+    m_macFontSize = 0;
+    m_macFontStyle = 0;
     m_fontId = 0;
 }
 
index 290f75ee641655730a2d99d98e9b7d0965f9c7e6..bbeaa29fcf83dc7d16dbccb30b6aeefcd0fc67e0 100644 (file)
@@ -1650,10 +1650,12 @@ void _GSocket_Internal_Proc(unsigned long e , void* d )
 /* Hack added for Mac OS X */
 GSocketError GAddress_UNIX_GetPath(GAddress *addr, char *path, size_t buf)
 {
+    return GSOCK_INVADDR;
 }
 
 GSocketError GAddress_UNIX_SetPath(GAddress *addr, const char *path)
 {
+    return GSOCK_INVADDR;
 }
 
 #endif  /* wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__) */
index e886c1073ca51df91d7d384906f292e45b9e33b5..5ec5f3ec80ee14571aea01c9ad8a472698435e6c 100644 (file)
@@ -31,24 +31,23 @@ wxIcon::wxIcon()
 }
 
 wxIcon::wxIcon(const char bits[], int width, int height) :
-    wxBitmap(bits,width,height )
+    wxBitmap(bits, width, height)
 {
     
 }
 
 wxIcon::wxIcon( const char **bits ) :
-    wxBitmap(bits  )
+    wxBitmap(bits)
 {
 }
 
 wxIcon::wxIcon( char **bits ) :
-    wxBitmap(bits )
+    wxBitmap(bits)
 {
 }
 
 wxIcon::wxIcon(const wxString& icon_file, int flags,
     int desiredWidth, int desiredHeight)
-
 {
     LoadFile(icon_file, (wxBitmapType) flags, desiredWidth, desiredHeight);
 }
index e3beab732260c050d4c289571239892518cf6319..91a05baddda5a628939af956a11dcac345b90bea 100644 (file)
@@ -27,7 +27,7 @@
 
 #if !USE_SHARED_LIBRARY
     IMPLEMENT_DYNAMIC_CLASS(wxSpinButton, wxControl)
-    IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxScrollEvent);
+    IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxScrollEvent)
 #endif
 
 wxSpinButton::wxSpinButton()
index 139b505f8e271a5bca60bc055c078a26d6499ef7..59f6573dae2c7f385145378cdaffdeb415541377 100644 (file)
@@ -147,4 +147,4 @@ void wxStatusBarMac::MacSuperEnabled( bool enabled )
 {
     Refresh(FALSE) ;
     wxWindow::MacSuperEnabled( enabled ) ;
-}
\ No newline at end of file
+}
index 2982b7c5c4be9b726a936966abb1003832fb3409..c36ecf6845edc05eefc73b1e990fef44a720c74e 100644 (file)
@@ -164,7 +164,6 @@ void wxStaticText::OnPaint( wxPaintEvent &event )
 
 wxSize wxStaticText::DoGetBestSize() const
 {
-    int x,y ;
     int widthTextMax = 0, widthLine,
         heightTextTotal = 0, heightLineDefault = 0, heightLine = 0;
         
index 7ab64897097f3cc205d29f6bee79fa5730cedf58..f479c01bb70ef9dcf6a05e8d85902fd4b6b8cf92 100644 (file)
@@ -253,7 +253,6 @@ bool wxTextCtrl::CanPaste() const
     if (!IsEditable())
         return FALSE;
 
-    long offset ;
 #if TARGET_CARBON
     OSStatus err = noErr;
     ScrapRef scrapRef;
@@ -275,6 +274,7 @@ bool wxTextCtrl::CanPaste() const
     return FALSE;
     
 #else
+    long offset ;
     if ( GetScrap( NULL , 'TEXT' , &offset ) > 0 )
     {
         return TRUE ;
@@ -304,7 +304,7 @@ void wxTextCtrl::SetInsertionPointEnd()
 
 long wxTextCtrl::GetInsertionPoint() const
 {
-   ControlEditTextSelectionRec selection ;
+    //   ControlEditTextSelectionRec selection ;
    TEHandle teH ;
    long size ;
    
@@ -315,7 +315,7 @@ long wxTextCtrl::GetInsertionPoint() const
 
 long wxTextCtrl::GetLastPosition() const
 {
-   ControlEditTextSelectionRec selection ;
+    //   ControlEditTextSelectionRec selection ;
    TEHandle teH ;
    long size ;
    
@@ -393,8 +393,8 @@ void wxTextCtrl::WriteText(const wxString& text)
    
     ::GetControlData( (ControlHandle) m_macControl , 0, kControlEditTextTEHandleTag , sizeof( TEHandle ) , (char*) &teH , &size ) ;
    
-        TEInsert( wxBuffer , strlen( wxBuffer) , teH ) ;
-        Refresh() ;
+    TEInsert( wxBuffer , strlen( wxBuffer) , teH ) ;
+    Refresh() ;
 }
 
 void wxTextCtrl::AppendText(const wxString& text)
index 88f837d669ea70fc2a57655955941fac9e6b2095..75db6e539e8c3ca261f1199b7d4e6adee95736bc 100644 (file)
@@ -146,7 +146,6 @@ wxMutexError wxMutex::TryLock()
     wxMacStCritical critical ;
     if ( UMASystemIsInitialized() )
     {
-        OSErr err ;
         ThreadID current = kNoThreadID;
         ::MacGetCurrentThread(&current);
         // if we are not the owner, give an error back
@@ -285,7 +284,7 @@ void wxCondition::Broadcast()
     // this works because all these threads are already waiting and so each
     // SetEvent() inside Signal() is really a PulseEvent() because the event
     // state is immediately returned to non-signaled
-    for ( int i = 0; i < m_internal->m_waiters.Count(); i++ )
+    for ( size_t i = 0; i < m_internal->m_waiters.Count(); i++ )
     {
         Signal();
     }
@@ -477,7 +476,7 @@ wxThread *wxThread::This()
 
     err = MacGetCurrentThread( &current ) ;
 
-    for ( int i = 0 ; i < s_threads.Count() ; ++i )
+    for ( size_t i = 0 ; i < s_threads.Count() ; ++i )
     {
         if ( ( (wxThread*) s_threads[i] )->GetId() == current )
             return (wxThread*) s_threads[i] ;
index 152e1aaddfce3fdc39a4c8a49ec8554538c67a2f..77662d2dbed4e3710d93b7d2545e268eff498645 100644 (file)
@@ -169,9 +169,9 @@ bool wxToolBar::Realize()
         return FALSE;
 
     Point localOrigin ;
-    Rect clipRect ;
+    //    Rect clipRect ;
     WindowRef window = (WindowRef) MacGetRootWindow() ;
-    wxWindow *win ;
+    //    wxWindow *win ;
     
     int lx , ly ;
     lx = ly = 0 ;
@@ -360,9 +360,9 @@ void wxToolBar::MacSuperChangedPosition()
   {
 
     Point localOrigin ;
-    Rect clipRect ;
-    WindowRef window ;
-    wxWindow *win ;
+    //    Rect clipRect ;
+    //    WindowRef window ;
+    //    wxWindow *win ;
     int lx , ly ;
     lx = ly = 0 ;
     MacWindowToRootWindow( &lx , &ly ) ;
index c97c35e44337206de7c4fd08913698ae80fbd595..699008b38b885ef5d60aaef6a49a932cf51f52ef 100644 (file)
@@ -35,7 +35,7 @@ long wxExecute(const wxString& command, int flags, wxProcess *handler)
 #ifdef __DARWIN__
 int wxAddProcessCallback(wxEndProcessData *proc_data, int fd)
 {
-   wxFAIL_MSG(wxT("wxAddProcessCallback() function not ready"));
+   wxFAIL_MSG( _T("wxAddProcessCallback() function not yet implemented") );
    return 0;
 }
 #endif
index e6b1ba5c7c6113f7002a79c448e23989ac9fb78c..0708958546a2dbba84d78b2c6e89c35c4d8b4ee1 100644 (file)
@@ -124,6 +124,8 @@ void wxWindowMac::Init()
 
     m_hScrollBar = NULL ;
     m_vScrollBar = NULL ;
+
+    m_label = wxEmptyString;
 }
 
 // Destructor
@@ -676,12 +678,12 @@ wxPoint wxWindowMac::GetClientAreaOrigin() const
     return wxPoint(MacGetLeftBorderSize(  ) , MacGetTopBorderSize(  ) );
 }
 
-void wxWindow::SetTitle(const wxString& title)
+void wxWindowMac::SetTitle(const wxString& title)
 {
     m_label = title ;
 }
 
-wxString wxWindow::GetTitle() const
+wxString wxWindowMac::GetTitle() const
 {
     return m_label ;
 }
index 85a38c699f63e7be550c976e24a5c2663d320272..335fa5897a41d0cc38b1c526711fed09c8ccec49 100644 (file)
@@ -1042,10 +1042,10 @@ GSocketError _GSocket_Input_Timeout(GSocket *socket)
     if (ret == -1)
     {
       GSocket_Debug(( "GSocket_Input_Timeout, select returned -1\n" ));
-      if (errno == EBADF) GSocket_Debug(( "Invalid file descriptor\n" ));
-      if (errno == EINTR) GSocket_Debug(( "A non blocked signal was caught\n" ));
-      if (errno == EINVAL) GSocket_Debug(( "The highest number descriptor is negative\n" ));
-      if (errno == ENOMEM) GSocket_Debug(( "Not enough memory\n" ));
+      if (errno == EBADF) { GSocket_Debug(( "Invalid file descriptor\n" )); }
+      if (errno == EINTR) { GSocket_Debug(( "A non blocked signal was caught\n" )); }
+      if (errno == EINVAL) { GSocket_Debug(( "The highest number descriptor is negative\n" )); }
+      if (errno == ENOMEM) { GSocket_Debug(( "Not enough memory\n" )); }
       socket->m_error = GSOCK_TIMEDOUT;
       return GSOCK_TIMEDOUT;
     }
@@ -1083,17 +1083,19 @@ GSocketError _GSocket_Output_Timeout(GSocket *socket)
     if (ret == -1)
     {
       GSocket_Debug(( "GSocket_Output_Timeout, select returned -1\n" ));
-      if (errno == EBADF) GSocket_Debug(( "Invalid file descriptor\n" ));
-      if (errno == EINTR) GSocket_Debug(( "A non blocked signal was caught\n" ));
-      if (errno == EINVAL) GSocket_Debug(( "The highest number descriptor is negative\n" ));
-      if (errno == ENOMEM) GSocket_Debug(( "Not enough memory\n" ));
+      if (errno == EBADF) { GSocket_Debug(( "Invalid file descriptor\n" )); }
+      if (errno == EINTR) { GSocket_Debug(( "A non blocked signal was caught\n" )); }
+      if (errno == EINVAL) { GSocket_Debug(( "The highest number descriptor is negative\n" )); }
+      if (errno == ENOMEM) { GSocket_Debug(( "Not enough memory\n" )); }
       socket->m_error = GSOCK_TIMEDOUT;
       return GSOCK_TIMEDOUT;
     }
-    if ( ! FD_ISSET(socket->m_fd, &writefds) )
-      GSocket_Debug(( "GSocket_Output_Timeout is buggy!\n" ));
-    else
-      GSocket_Debug(( "GSocket_Output_Timeout seems correct\n" ));
+    if ( ! FD_ISSET(socket->m_fd, &writefds) ) {
+        GSocket_Debug(( "GSocket_Output_Timeout is buggy!\n" ));
+    }
+    else {
+        GSocket_Debug(( "GSocket_Output_Timeout seems correct\n" ));
+    }
   }
   else
   {
index 4913cd53d5cf0879799bdf50c46cc7410ba34bf9..70aaee69b2cfdd4797bdd6f44d93f9bf927a4b94 100644 (file)
@@ -1238,7 +1238,7 @@ bool wxFileTypeImpl::GetExtensions(wxArrayString& extensions)
 // overwriteprompt is TRUE, but this is currently ignored as *Associate* has
 // no overwrite prompt
 bool wxFileTypeImpl::SetCommand(const wxString& cmd, const wxString& verb, bool overwriteprompt /*= TRUE*/)
-    {
+{
     wxArrayString strExtensions;
     wxString strDesc, strIcon ;
 
@@ -1252,17 +1252,17 @@ bool wxFileTypeImpl::SetCommand(const wxString& cmd, const wxString& verb, bool
     size_t i;
     bool Ok = TRUE;
     for (i = 0; i < strTypes.GetCount(); i++)
-        {
+    {
         if (!m_manager->DoAssociation (strTypes[i], strIcon, entry, strExtensions, strDesc))
-        Ok = FALSE;
-        }
+            Ok = FALSE;
+    }
 
     return Ok;
-    }
+}
 
 // ignore index on the grouds that we only have one icon in a Unix file
 bool wxFileTypeImpl::SetDefaultIcon(const wxString& strIcon /*= wxEmptyString*/, int /*index = 0*/)
-    {
+{
     if (strIcon.IsEmpty()) return FALSE;
     wxArrayString strExtensions;
     wxString strDesc;
@@ -1276,13 +1276,14 @@ bool wxFileTypeImpl::SetDefaultIcon(const wxString& strIcon /*= wxEmptyString*/,
     size_t i;
     bool Ok = TRUE;
     for (i = 0; i < strTypes.GetCount(); i++)
-        {
+    {
         if (!m_manager->DoAssociation (strTypes[i], strIcon, entry, strExtensions, strDesc))
-        Ok = FALSE;
-        }
+            Ok = FALSE;
+    }
 
     return Ok;
-    }
+}
+
 // ----------------------------------------------------------------------------
 // wxMimeTypesManagerImpl (Unix)
 // ----------------------------------------------------------------------------