summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2009-09-26 13:56:04 +0000
committerMatthias Melcher <fltk@matthiasm.com>2009-09-26 13:56:04 +0000
commite91ec4b3b300c9c1b1e5b54aded1cab5c7e1a571 (patch)
treed1bd8699b4b1a04c22b08c6fea3e982a57274353 /src
parentfa53716876a27aa8ed95eb40771904d8d5c7786a (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/fl_open_uri.cxx6
1 files changed, 3 insertions, 3 deletions
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);