[Webkit-unassigned] [Bug 14745] WebKitTools/Scripts/run-launcher doesn't speak --gdk

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jul 24 21:42:54 PDT 2007


http://bugs.webkit.org/show_bug.cgi?id=14745





------- Comment #4 from ddkilzer at webkit.org  2007-07-24 21:42 PDT -------
(In reply to comment #3)
> The if (currArg[0] == '-') check is because, otherwise, if I run
> ./run-launcher --gdk
> the --gdk gets passed to GdkLauncher, which then tries to interpret "--gdk" as
> a URL, which means a blank page comes up instead of the default page
> (www.google.com).

Please modify the Perl script (run-launcher) to consume the "--gdk" switch so
that it's not passed to GdkLauncher.  That way you don't have to change
main.cpp.  Thanks!

Something like this would work:

my @args = grep(!/^(--gdk)$/, @ARGV);


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list