]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/cursor.h
wxDocManager gets the only view if none other specified as the current view;
[wxWidgets.git] / include / wx / msw / cursor.h
index d3b4473c82874c701dfcaf24240b21baf1b5b795..41d34c3ba758ac95e1e4d54f22bb33ce573e0d86 100644 (file)
@@ -46,11 +46,11 @@ public:
   inline wxCursor(const wxCursor& cursor) { Ref(cursor); }
   inline wxCursor(const wxCursor* cursor) { /* UnRef(); */ if (cursor) Ref(*cursor); }
 
-  wxCursor(const char bits[], const int width, const int height, const int hotSpotX = -1, const int hotSpotY = -1,
+  wxCursor(const char bits[], int width, int height, int hotSpotX = -1, int hotSpotY = -1,
     const char maskBits[] = NULL);
-  wxCursor(const wxString& name, const long flags = wxBITMAP_TYPE_CUR_RESOURCE,
-   const int hotSpotX = 0, const int hotSpotY = 0);
-  wxCursor(const int cursor_type);
+  wxCursor(const wxString& name, long flags = wxBITMAP_TYPE_CUR_RESOURCE,
+   int hotSpotX = 0, int hotSpotY = 0);
+  wxCursor(int cursor_type);
   ~wxCursor(void);
 
   virtual bool Ok(void) const { return (m_refData != NULL && M_CURSORDATA->m_hCursor) ; }