X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/813b6b3f88310608cb3ca37b0f29f64330f7558f..e2badebb8fad5ee453fada24f336c275df9f216b:/include/wx/display.h diff --git a/include/wx/display.h b/include/wx/display.h index d209557a66..eea6bbb7f6 100644 --- a/include/wx/display.h +++ b/include/wx/display.h @@ -45,7 +45,7 @@ public: // // the displays are numbered from 0 to GetCount() - 1, 0 is always the // primary display and the only one which is always supported - wxDisplay(size_t n = 0); + wxDisplay(unsigned n = 0); // dtor is not virtual as this is a concrete class not meant to be derived // from @@ -54,7 +54,7 @@ public: // return the number of available displays, valid parameters to // wxDisplay ctor are from 0 up to this number - static size_t GetCount(); + static unsigned GetCount(); // find the display where the given point lies, return wxNOT_FOUND if // it doesn't belong to any display @@ -62,7 +62,7 @@ public: // find the display where the given window lies, return wxNOT_FOUND if it // is not shown at all - static int GetFromWindow(wxWindow *window); + static int GetFromWindow(const wxWindow *window); // return true if the object was initialized successfully