From: Włodzimierz Skiba Date: Mon, 24 Apr 2006 18:31:23 +0000 (+0000) Subject: Build fix after wxColourBase introduction. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7760051f27b3f96f5dccd07c3509d27abefb0bc9 Build fix after wxColourBase introduction. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38895 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/x11/colour.cpp b/src/x11/colour.cpp index a0d96399cf..ba921cda9d 100644 --- a/src/x11/colour.cpp +++ b/src/x11/colour.cpp @@ -247,7 +247,7 @@ bool wxColour::FromString(const wxChar *name) Display *dpy = wxGlobalDisplay(); WXColormap colormap = wxTheApp->GetMainColormap( dpy ); XColor xcol; - if ( XParseColor( dpy, (Colormap)colormap, wxGTK_CONV_SYS( name ), &xcol ) ) + if ( XParseColor( dpy, (Colormap)colormap, name , &xcol ) ) { UnRef();