summaryrefslogtreecommitdiff
path: root/riscos/gui.c
diff options
context:
space:
mode:
authorJohn Tytgat <joty@netsurf-browser.org>2008-08-02 20:07:44 +0000
committerJohn Tytgat <joty@netsurf-browser.org>2008-08-02 20:07:44 +0000
commit48070139d86641039c1837e9f38667fc04844854 (patch)
treec54f72e13655d78fd510a9fd2dd6b06b12dcdc58 /riscos/gui.c
parent611e4f8cbe5bfce70dc24a7913fcf82212f70b27 (diff)
downloadnetsurf-48070139d86641039c1837e9f38667fc04844854.tar.gz
netsurf-48070139d86641039c1837e9f38667fc04844854.tar.bz2
Prefix all RISC OS print global variables and functions with "ro_" in order to avoid the print_cleanup function name clash in desktop/print.c and
riscos/print.c. svn path=/trunk/netsurf/; revision=4867
Diffstat (limited to 'riscos/gui.c')
-rw-r--r--riscos/gui.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/riscos/gui.c b/riscos/gui.c
index b3166c1a5..95580928d 100644
--- a/riscos/gui.c
+++ b/riscos/gui.c
@@ -1296,8 +1296,8 @@ void ro_gui_user_message(wimp_event_no event, wimp_message *message)
if (event == wimp_USER_MESSAGE_ACKNOWLEDGE) {
#ifdef WITH_PRINT
- if (print_current_window)
- print_dataload_bounce(message);
+ if (ro_print_current_window)
+ ro_print_dataload_bounce(message);
#endif
}
else
@@ -1306,8 +1306,8 @@ void ro_gui_user_message(wimp_event_no event, wimp_message *message)
case message_DATA_LOAD_ACK:
#ifdef WITH_PRINT
- if (print_current_window)
- print_cleanup();
+ if (ro_print_current_window)
+ ro_print_cleanup();
#endif
break;
@@ -1404,13 +1404,13 @@ void ro_gui_user_message(wimp_event_no event, wimp_message *message)
#ifdef WITH_PRINT
case message_PRINT_SAVE:
if (event == wimp_USER_MESSAGE_ACKNOWLEDGE)
- print_save_bounce(message);
+ ro_print_save_bounce(message);
break;
case message_PRINT_ERROR:
- print_error(message);
+ ro_print_error(message);
break;
case message_PRINT_TYPE_ODD:
- print_type_odd(message);
+ ro_print_type_odd(message);
break;
#endif
@@ -1826,7 +1826,7 @@ void ro_msg_datasave_ack(wimp_message *message)
ro_msg_terminate_filename((wimp_full_message_data_xfer*)message);
#ifdef WITH_PRINT
- if (print_ack(message))
+ if (ro_print_ack(message))
return;
#endif