X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/27d2dbbccadf25bb1d892fe1c4afbf74cf76bb36..5875d39c9ba19f518e691792524f2fd03261c825:/src/msw/utilsgui.cpp diff --git a/src/msw/utilsgui.cpp b/src/msw/utilsgui.cpp index c49738c796..497f40df34 100644 --- a/src/msw/utilsgui.cpp +++ b/src/msw/utilsgui.cpp @@ -257,7 +257,7 @@ void wxGetMousePosition( int* x, int* y ) GetCursorPos( & pt ); if ( x ) *x = pt.x; if ( y ) *y = pt.y; -}; +} // Return true if we have a colour display bool wxColourDisplay() @@ -267,7 +267,7 @@ bool wxColourDisplay() return true; #else // this function is called from wxDC ctor so it is called a *lot* of times - // hence we optimize it a bit but doign the check only once + // hence we optimize it a bit but doing the check only once // // this should be MT safe as only the GUI thread (holding the GUI mutex) // can call us