From bc4591b03e666dceaa669ab4f9fc85b45e8c5da6 Mon Sep 17 00:00:00 2001 From: "Tony J. White =" Date: Wed, 30 Aug 2006 15:16:36 +0000 Subject: [PATCH] * renamed static function GetClipboardData to CL_GetClipboardData since it was causing compile errors in newer mingw --- code/client/cl_ui.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/client/cl_ui.c b/code/client/cl_ui.c index e460b604..e6aae537 100644 --- a/code/client/cl_ui.c +++ b/code/client/cl_ui.c @@ -618,10 +618,10 @@ static void CL_GetGlconfig( glconfig_t *config ) { /* ==================== -GetClipboardData +CL_GetClipboardData ==================== */ -static void GetClipboardData( char *buf, int buflen ) { +static void CL_GetClipboardData( char *buf, int buflen ) { char *cbd; cbd = Sys_GetClipboardData(); @@ -934,7 +934,7 @@ intptr_t CL_UISystemCalls( intptr_t *args ) { return 0; case UI_GETCLIPBOARDDATA: - GetClipboardData( VMA(1), args[2] ); + CL_GetClipboardData( VMA(1), args[2] ); return 0; case UI_GETCLIENTSTATE: