From e91ec4b3b300c9c1b1e5b54aded1cab5c7e1a571 Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Sat, 26 Sep 2009 13:56:04 +0000 Subject: Adding the header files to the Xcode project somehow made precompilation fail in Xcode. So I removed them again. Silly. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6901 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/fl_open_uri.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/fl_open_uri.cxx b/src/fl_open_uri.cxx index 38da38af4..bd12f6a66 100644 --- a/src/fl_open_uri.cxx +++ b/src/fl_open_uri.cxx @@ -117,9 +117,9 @@ fl_open_uri(const char *uri, char *msg, int msglen) { #elif defined(__APPLE__) char *argv[3]; // Command-line arguments - argv[0] = "open"; - argv[1] = (char *)uri; - argv[2] = 0; + argv[0] = (char*)"open"; + argv[1] = (char*)uri; + argv[2] = (char*)0; if (msg) snprintf(msg, msglen, "open %s", uri); -- cgit v1.2.3