From 39263d4fe395378f49b8df514cb7068471636bce Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Tue, 19 Aug 2008 01:35:46 +0000 Subject: [PATCH] MGR: async GUI RPCs: Fix show_graphics RPC. svn path=/trunk/boinc/; revision=15888 --- checkin_notes | 6 ++++++ clientgui/AsyncRPC.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/checkin_notes b/checkin_notes index c6a5fa0b5e..2d34e0f9f7 100644 --- a/checkin_notes +++ b/checkin_notes @@ -6786,3 +6786,9 @@ Eric 18 Aug 2008 lib/ app_ipc.[Ch] + +Charlie 18 Aug 2008 + - MGR: async GUI RPCs: Fix show_graphics RPC. + + clientgui/ + AsyncRPC.h diff --git a/clientgui/AsyncRPC.h b/clientgui/AsyncRPC.h index 2343c14033..3065bef3a8 100644 --- a/clientgui/AsyncRPC.h +++ b/clientgui/AsyncRPC.h @@ -184,7 +184,7 @@ public: { return RPC_Wait(RPC_GET_DISK_USAGE, (void*)&arg1); } int show_graphics( const char* project, const char* result_name, int graphics_mode, DISPLAY_INFO& di) - { return RPC_Wait(RPC_SHOW_GRAPHICS, (void*)&project, (void*)result_name, (void*)&graphics_mode, (void*)&di); } + { return RPC_Wait(RPC_SHOW_GRAPHICS, (void*)project, (void*)result_name, (void*)&graphics_mode, (void*)&di); } int project_op(PROJECT& arg1, const char* op) { return RPC_Wait(RPC_PROJECT_OP, (void*)&arg1, (void*)op); } int set_run_mode(int mode, double duration)