]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/icon.h
Move SendIdleEvents() from wxApp to wxWindow.
[wxWidgets.git] / interface / wx / icon.h
index 80a40419da9cc580d460a0fbd6859df3bb17633b..b574ce34f8854abbfb1ef06944319f3ac4e45d07 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:     interface of wxIcon
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 
@@ -118,15 +118,15 @@ public:
         the appropriate platform, or an icon resource on Windows.
 
         @code
-        wxIcon icon(wxICON(mondrian));
+        wxIcon icon(wxICON(sample));
 
         // Equivalent to:
         #if defined(__WXGTK__) || defined(__WXMOTIF__)
-        wxIcon icon(mondrian_xpm);
+        wxIcon icon(sample_xpm);
         #endif
 
         #if defined(__WXMSW__)
-        wxIcon icon("mondrian");
+        wxIcon icon("sample");
         #endif
         @endcode