summaryrefslogtreecommitdiff
path: root/toolkit/components/apppicker/content/appPicker.js
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/components/apppicker/content/appPicker.js')
-rw-r--r--toolkit/components/apppicker/content/appPicker.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/toolkit/components/apppicker/content/appPicker.js b/toolkit/components/apppicker/content/appPicker.js
index 21a007632b..6922fce39f 100644
--- a/toolkit/components/apppicker/content/appPicker.js
+++ b/toolkit/components/apppicker/content/appPicker.js
@@ -119,12 +119,6 @@ AppPicker.prototype =
return file.getVersionInfoField("FileDescription");
} catch (e) {}
}
-#elifdef XP_MACOSX
- if (file instanceof Components.interfaces.nsILocalFileMac) {
- try {
- return file.bundleDisplayName;
- } catch (e) {}
- }
#endif
return file.leafName;
},
@@ -183,8 +177,6 @@ AppPicker.prototype =
var startLocation;
#ifdef XP_WIN
startLocation = "ProgF"; // Program Files
-#elifdef XP_MACOSX
- startLocation = "LocApp"; // Local Applications
#else
startLocation = "Home";
#endif