diff options
| author | Manolo Gouy <Manolo> | 2016-08-31 16:12:28 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-08-31 16:12:28 +0000 |
| commit | 4d55e204f89e160fd83065c7d0163d6be4a9f89a (patch) | |
| tree | 86f704b736b325f27b9307088bbe1d147ee2f096 /test | |
| parent | 09aa05ef3f941bf8324efd24c3cc6559436c4c7d (diff) | |
Remove the USING_XCODE preprocessor variable that became useless
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11909 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test')
| -rw-r--r-- | test/browser.cxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/test/browser.cxx b/test/browser.cxx index 3c7d673b4..7fd17f082 100644 --- a/test/browser.cxx +++ b/test/browser.cxx @@ -154,12 +154,9 @@ int main(int argc, char **argv) { char buf[2048]; strcpy(buf, argv[0]); char *slash = strrchr(buf, '/'); - if (slash) -#if defined(USING_XCODE) - strcpy(slash, "/../Resources/browser.cxx"); -#else + if (slash) { strcpy(slash, "/../../../browser.cxx"); -#endif + } done = browser->load(buf); } #endif |
