Searched hist:f232d9d22c2f003e14cb95bbd6d6785551c00ebf (Results 1 – 1 of 1) sorted by relevance
/haiku/src/apps/aboutsystem/ |
H A D | HyperTextActions.cpp | f232d9d22c2f003e14cb95bbd6d6785551c00ebf Sun Dec 09 02:23:20 UTC 2018 EXL <exlmotodev@gmail.com> AboutSystem: Minor fix for opening links
It looks like it unfolds to: > /bin/open /bin/open https://www.example.com
Instead of the expected: > /bin/open https://www.example.com
See "src/kits/app/Roster.cpp", BRoster::ArgVector::Init() method: // init vector if (error == B_OK) { fArgs[0] = fAppPath.Path(); // Here if (argc > 0 && args != NULL) { for (int i = 0; i < argc; i++) fArgs[i + 1] = args[i]; if (hasDocArg) fArgs[fArgc - 1] = fDocPath.Path(); } // NULL terminate (e.g. required by load_image()) fArgs[fArgc] = NULL; }
Change-Id: Ie7e7155377637b93cbc3c1d225cb91b5e0d2dd7d Reviewed-on: https://review.haiku-os.org/754 Reviewed-by: waddlesplash <waddlesplash@gmail.com>
|