]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/icon.cpp
Simplified and extended compiler detection for OS/2.
[wxWidgets.git] / src / motif / icon.cpp
index e8316d4b9d7722c226a2386af3cf75d2749dce2b..b1a4a57d6b3ce5ab87c20afbf75bde3e1e7455a1 100644 (file)
@@ -9,10 +9,13 @@
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma implementation "icon.h"
 #endif
 
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
 #include "wx/icon.h"
 
 IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap);
@@ -63,5 +66,5 @@ bool wxIcon::LoadFile(const wxString& filename, wxBitmapType type,
         return handler->LoadFile(this, filename, type,
                                  desiredWidth, desiredHeight);
     else
-        return FALSE;
+        return false;
 }