]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/iconbndl.h
made SelectionToText and ToText public
[wxWidgets.git] / include / wx / iconbndl.h
index fa7dae30cd33469bd55a7efef3cbe0167813fa87..001530f0085eb776ddb92034a30c43ae428f701a 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_ICONBNDL_H_
 #define _WX_ICONBNDL_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface "iconbndl.h"
 #endif
 
@@ -20,8 +20,8 @@
 // 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 +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(); }