]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/iconbndl.h
corrected handling of timeouts in wxConditionInternal::WaitTimeout(): check for wxSEM...
[wxWidgets.git] / include / wx / iconbndl.h
index 4022624360c5400cb498e9719e56d869ce57f001..3749467240b63a30a6827098bb7e2ced603f46b6 100644 (file)
 #ifndef _WX_ICONBNDL_H_
 #define _WX_ICONBNDL_H_
 
-#ifdef __GNUG__
-#pragma interface "iconbndl.h"
-#endif
-
-#include "dynarray.h"
+#include "wx/dynarray.h"
 // for wxSize
 #include "wx/gdicmn.h"
 
-class WXDLLEXPORT wxIcon;
-class WXDLLEXPORT wxString;
+class WXDLLIMPEXP_CORE wxIcon;
+class WXDLLIMPEXP_BASE wxString;
 
 WX_DECLARE_EXPORTED_OBJARRAY( wxIcon, wxIconArray );
 
@@ -32,16 +28,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(); }
@@ -60,7 +56,7 @@ public:
     // returns the first icon in the bundle
     const wxIcon& GetIcon( const wxSize& size ) const;
     // equivalent to GetIcon( wxSize( size, size ) )
-    const wxIcon& GetIcon( wxCoord size = -1 ) const
+    const wxIcon& GetIcon( wxCoord size = wxDefaultCoord ) const
         { return GetIcon( wxSize( size, size ) ); }
 private:
     // delete all icons