diff options
author | tjw <tjw@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-08-30 15:16:36 +0000 |
---|---|---|
committer | tjw <tjw@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-08-30 15:16:36 +0000 |
commit | 7e80458736953fcaf39086a4d81d245ee4e14128 (patch) | |
tree | badaea024a86c4bf8bd8ed9a2aa9885c87eae95b /code/client | |
parent | 1dfbd250b99d1d2875e661f3a7c09d616ff471cc (diff) | |
download | ioquake3-aero-7e80458736953fcaf39086a4d81d245ee4e14128.tar.gz ioquake3-aero-7e80458736953fcaf39086a4d81d245ee4e14128.zip |
* 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
Diffstat (limited to 'code/client')
-rw-r--r-- | code/client/cl_ui.c | 6 |
1 files changed, 3 insertions, 3 deletions
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: |