X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/34097680c05edc672b61dd413022cd8b9ad0294f..a8fb9edee4787be99d28a190ea3f79f923d828ca:/src/motif/window.cpp diff --git a/src/motif/window.cpp b/src/motif/window.cpp index ab65b8786c..e553ef1ef2 100644 --- a/src/motif/window.cpp +++ b/src/motif/window.cpp @@ -26,7 +26,6 @@ #define XtScreen XTSCREEN #endif -#include "wx/setup.h" #include "wx/menu.h" #include "wx/dc.h" #include "wx/dcclient.h" @@ -694,7 +693,7 @@ bool wxWindow::SetCursor(const wxCursor& cursor) // wxASSERT_MSG( m_cursor.Ok(), // wxT("cursor must be valid after call to the base version")); - wxCursor* cursor2 = NULL; + const wxCursor* cursor2 = NULL; if (m_cursor.Ok()) cursor2 = & m_cursor; else @@ -2378,7 +2377,7 @@ bool wxTranslateKeyEvent(wxKeyEvent& wxevent, wxWindow *win, #define YAllocColor XAllocColor XColor g_itemColors[5]; -int wxComputeColours (Display *display, wxColour * back, wxColour * fore) +int wxComputeColours (Display *display, const wxColour * back, const wxColour * fore) { int result; static XmColorProc colorProc; @@ -2492,7 +2491,7 @@ void wxWindow::ChangeFont(bool keepOriginalSize) GetSize(& width1, & height1); if (keepOriginalSize && (width != width1 || height != height1)) { - SetSize(-1, -1, width, height); + SetSize(wxDefaultCoord, wxDefaultCoord, width, height); } } }