Commit 9635e941 authored by Kevin Krammer's avatar Kevin Krammer Committed by Alexandre Julliard

winebrowser: Support for Portland Initiative scripts.

parent 5e082305
...@@ -74,7 +74,7 @@ static int launch_app( char *candidates, const char *argv1 ) ...@@ -74,7 +74,7 @@ static int launch_app( char *candidates, const char *argv1 )
static int open_http_url( const char *url ) static int open_http_url( const char *url )
{ {
static const char *defaultbrowsers = static const char *defaultbrowsers =
"firefox,konqueror,mozilla,netscape,galeon,opera,dillo"; "xdg-open,firefox,konqueror,mozilla,netscape,galeon,opera,dillo";
char browsers[256]; char browsers[256];
DWORD length, type; DWORD length, type;
...@@ -106,7 +106,7 @@ static int open_http_url( const char *url ) ...@@ -106,7 +106,7 @@ static int open_http_url( const char *url )
static int open_mailto_url( const char *url ) static int open_mailto_url( const char *url )
{ {
static const char *defaultmailers = static const char *defaultmailers =
"mozilla-thunderbird,thunderbird,evolution"; "xdg-email,mozilla-thunderbird,thunderbird,evolution";
char mailers[256]; char mailers[256];
DWORD length, type; DWORD length, type;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment