]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/icon.cpp
generate wxEVT_COMMAND_LIST_INSERT_ITEM (patch 747070)
[wxWidgets.git] / src / motif / icon.cpp
index 56c10def1ca74e5f3558c50f72f307e069f4c63c..54edd5f3cb0ed3a6a540762625cbf72f38d5e25d 100644 (file)
 #endif
 
 #include "wx/icon.h"
-#include "wx/window.h"
 
-#ifdef __VMS__
-#pragma message disable nosimpint
-#endif
-#include <Xm/Xm.h>
-#include <X11/cursorfont.h>
-#ifdef __VMS__
-#pragma message enable nosimpint
-#endif
-
-#include "wx/motif/private.h"
-
-IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap)
+IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap);
 
-/*
-* Icons
-*/
+// ============================================================================
+// Icons
+// ============================================================================
 
 wxIcon::wxIcon()
 {
@@ -75,9 +63,7 @@ bool wxIcon::LoadFile(const wxString& filename, wxBitmapType type,
                       int desiredWidth, int desiredHeight)
 {
     UnRef();
-    
-    m_refData = new wxBitmapRefData;
-    
+
     wxBitmapHandler *handler = FindHandler(type);
     
     if ( handler )
@@ -86,4 +72,3 @@ bool wxIcon::LoadFile(const wxString& filename, wxBitmapType type,
     else
         return FALSE;
 }
-