From 985e4ce6be424aec5e797d92c09e0ee22cde7874 Mon Sep 17 00:00:00 2001 From: Ole Loots Date: Tue, 22 Jan 2013 02:33:27 +0100 Subject: Prefixed gemtk module functions. --- atari/misc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'atari/misc.c') diff --git a/atari/misc.c b/atari/misc.c index d5837d7bd..1b4c3eaf4 100755 --- a/atari/misc.c +++ b/atari/misc.c @@ -61,13 +61,13 @@ void warn_user(const char *warning, const char *detail) snprintf(message, len, messages_get(warning), detail); printf("%s\n", message); - msg_box_show(MSG_BOX_ALERT, message); + gemtk_msg_box_show(GEMTK_MSG_BOX_ALERT, message); } void die(const char *error) { printf("%s\n", error); - msg_box_show(MSG_BOX_ALERT, error); + gemtk_msg_box_show(GEMTK_MSG_BOX_ALERT, error); exit(1); } @@ -123,7 +123,7 @@ struct gui_window * find_guiwin_by_aes_handle(short handle){ while(gw != NULL) { if( gw->root->win != NULL - && guiwin_get_handle(gw->root->win) == handle ) { + && gemtk_wm_get_handle(gw->root->win) == handle ) { return(gw); } else -- cgit v1.2.3