From 992fdc08a2ab3b0a06fee99753333990147aedff Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Thu, 27 Sep 2007 23:48:07 +0000 Subject: [PATCH] Mac V6 GFX: add setMacPList() call svn path=/trunk/boinc/; revision=13694 --- api/graphics2_unix.C | 3 +++ checkin_notes | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/api/graphics2_unix.C b/api/graphics2_unix.C index e71387f9dd..fc489e8d46 100644 --- a/api/graphics2_unix.C +++ b/api/graphics2_unix.C @@ -149,6 +149,9 @@ void boinc_graphics_loop(int argc, char** argv) { fullscreen = true; } } +#ifdef __APPLE__ + setMacPList(); +#endif boinc_glut_init(); make_window(); glutTimerFunc(TIMER_INTERVAL_MSEC, timer_handler, 0); diff --git a/checkin_notes b/checkin_notes index df6f93bbfb..53cb0dbfa0 100755 --- a/checkin_notes +++ b/checkin_notes @@ -8895,3 +8895,9 @@ David 27 Sept 2007 gui_rpc_server.C,h gui_rpc_server_ops.C net_stats.C,h + +Charlie 27 Sep 2007 + - Mac V6 GFX: add setMacPList() call. + + api/ + graphics2_unix.C