]> git.saurik.com Git - wxWidgets.git/commitdiff
fix for gcc warning about base class initialization in copy ctors given with -Wall
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 30 Aug 2005 00:48:34 +0000 (00:48 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 30 Aug 2005 00:48:34 +0000 (00:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35368 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/mac/carbon/bitmap.h
include/wx/mac/carbon/icon.h

index c051d22fdb8d7d4c8c8f2cf96163083f20124e59..ff0c31c02c8e1dbbcca0e05a9fa7db14a4805f39 100644 (file)
@@ -110,7 +110,10 @@ public:
 
     // Copy constructors
     wxBitmap(const wxBitmap& bitmap)
-    { Ref(bitmap); }
+        : wxBitmapBase()
+    {
+        Ref(bitmap);
+    }
 
     // Initialize with raw data.
     wxBitmap(const char bits[], int width, int height, int depth = 1);
index cc90942c702301ed032a2229e825157343d7ef7a..f070bc224c7f22892ab4ec5b01ad8766cbf67f1c 100644 (file)
@@ -26,7 +26,10 @@ public:
 
     // Copy constructors
     wxIcon(const wxIcon& icon)
-      { Ref(icon); }
+        : wxGDIObject()
+    {
+        Ref(icon);
+    }
 
     wxIcon(const char **data);
     wxIcon(char **data);
@@ -62,7 +65,7 @@ public:
     void SetHeight(int h);
     void SetDepth(int d);
     void SetOk(bool isOk);
-    
+
     WXHICON GetHICON() const ;
 
     DECLARE_DYNAMIC_CLASS(wxIcon)