about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/base/system.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/base/system.c b/src/base/system.c
index 5fb48e12..02bbed7f 100644
--- a/src/base/system.c
+++ b/src/base/system.c
@@ -1134,10 +1134,10 @@ void gui_messagebox(const char *title, const char *message)
 	/* END HACK */
 
 	CreateStandardAlert(kAlertStopAlert,
-		CFSTR(title),
-		CFSTR(message),
-		NULL,
-		&theItem);
+			CFStringCreateWithCString(NULL, title, kCFStringEncodingASCII),
+			CFStringCreateWithCString(NULL, message, kCFStringEncodingASCII),
+			NULL,
+			&theItem);
 
 	RunStandardAlert(theItem, NULL, &itemIndex);
 #elif defined(CONF_FAMILY_UNIX)