firefox-kde-114.patch
changeset 545 fcd8fb7c04dd
parent 467 a9baaad57fa4
child 779 354c672efefa
equal deleted inserted replaced
543:24c3eafd49a1 545:fcd8fb7c04dd
     1 # HG changeset patch
     1 # HG changeset patch
     2 # User Wolfgang Rosenauer <wr@rosenauer.org>
     2 # User Wolfgang Rosenauer <wr@rosenauer.org>
     3 # Parent 0db25ab919ad61d91a46d7700d3f06e2b66f9feb
     3 # Parent ba2d9b1374e15e7c339a44452169d0afac2ca82e
     4 With openSUSE 11.4 the desktop file name changed from MozillaFirefox to firefox
     4 With openSUSE 11.4 the desktop file name changed from MozillaFirefox to firefox
     5 
     5 
     6 diff --git a/browser/components/preferences/advanced.js b/browser/components/preferences/advanced.js
     6 diff --git a/browser/components/preferences/advanced.js b/browser/components/preferences/advanced.js
     7 --- a/browser/components/preferences/advanced.js
     7 --- a/browser/components/preferences/advanced.js
     8 +++ b/browser/components/preferences/advanced.js
     8 +++ b/browser/components/preferences/advanced.js
     9 @@ -719,15 +719,15 @@ var gAdvancedPane = {
     9 @@ -751,17 +751,17 @@ var gAdvancedPane = {
    10      if (kde_session == 1) {
    10      if (kde_session == 1) {
    11        var shellObj = Components.classes["@mozilla.org/file/local;1"]
    11        var shellObj = Components.classes["@mozilla.org/file/local;1"]
    12                                 .createInstance(Components.interfaces.nsILocalFile);
    12                                 .createInstance(Components.interfaces.nsILocalFile);
    13        shellObj.initWithPath("/usr/bin/kwriteconfig");
    13        shellObj.initWithPath("/usr/bin/kwriteconfig");
    14        var process = Components.classes["@mozilla.org/process/util;1"]
    14        var process = Components.classes["@mozilla.org/process/util;1"]
    17        var args = ["--file", "kdeglobals", "--group", "General", "--key",
    17        var args = ["--file", "kdeglobals", "--group", "General", "--key",
    18 -          "BrowserApplication", "MozillaFirefox"];
    18 -          "BrowserApplication", "MozillaFirefox"];
    19 +          "BrowserApplication", "firefox"];
    19 +          "BrowserApplication", "firefox"];
    20        process.run(false, args, args.length);
    20        process.run(false, args, args.length);
    21      }
    21      }
    22      document.getElementById("setDefaultPane").selectedIndex = 1;
    22      let selectedIndex =
       
    23        shellSvc.isDefaultBrowser(false, true) ? 1 : 0;
       
    24      document.getElementById("setDefaultPane").selectedIndex = selectedIndex;
    23    }
    25    }
    24  #endif
    26  #endif
    25  };
    27  };