From 7e80458736953fcaf39086a4d81d245ee4e14128 Mon Sep 17 00:00:00 2001 From: tjw Date: Wed, 30 Aug 2006 15:16:36 +0000 Subject: * renamed static function GetClipboardData to CL_GetClipboardData since it was causing compile errors in newer mingw git-svn-id: svn://svn.icculus.org/quake3/trunk@882 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/client/cl_ui.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'code/client') diff --git a/code/client/cl_ui.c b/code/client/cl_ui.c index e460b60..e6aae53 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: -- cgit v1.2.3