]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/unix/main.cpp
Use nullptr instead of 0 for pointers
[libs/core.git] / source / core / unix / main.cpp
index 698ec69ad514ee4d62d20b14ed9a9ec31ae6ff53..58c9fda45e812e362d9f0d18d29568db387cf068 100644 (file)
@@ -2,23 +2,5 @@
 
 int main(int argc, char **argv)
 {
-       void *data = 0;
-
-#ifdef __APPLE__
-       /* Applications launched from Finder get a special argument, which would
-       interfere with GetOpt.  Remove it from argv but pass it as data so it can
-       be used to determine how the application was launhed. */
-       int j = 0;
-       for(int i=0; i<argc; ++i)
-       {
-               if(!strncmp(argv[i], "-psn_", 5))
-                       data = argv[i];
-               else
-                       argv[j++] = argv[i];
-       }
-       argc = j;
-       argv[j] = 0;
-#endif
-
-       return Msp::Application::run(argc, argv, data);
+       return Msp::Application::run(argc, argv, nullptr);
 }