summaryrefslogtreecommitdiff
path: root/atari/misc.c
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2013-01-22 02:33:27 +0100
committerOle Loots <ole@monochrom.net>2013-01-22 02:33:27 +0100
commit985e4ce6be424aec5e797d92c09e0ee22cde7874 (patch)
treedae78d1c0935ce636272e365e9430f2a29583af7 /atari/misc.c
parent2e91d4e17eea238281451532437e7447bfd4f0bf (diff)
downloadnetsurf-985e4ce6be424aec5e797d92c09e0ee22cde7874.tar.gz
netsurf-985e4ce6be424aec5e797d92c09e0ee22cde7874.tar.bz2
Prefixed gemtk module functions.
Diffstat (limited to 'atari/misc.c')
-rwxr-xr-xatari/misc.c6
1 files changed, 3 insertions, 3 deletions
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