diff options
Diffstat (limited to 'mailnews/base/prefs')
-rw-r--r-- | mailnews/base/prefs/content/AccountManager.xul | 2 | ||||
-rw-r--r-- | mailnews/base/prefs/content/AccountWizard.xul | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mailnews/base/prefs/content/AccountManager.xul b/mailnews/base/prefs/content/AccountManager.xul index d3bb7608d..a14156b32 100644 --- a/mailnews/base/prefs/content/AccountManager.xul +++ b/mailnews/base/prefs/content/AccountManager.xul @@ -35,7 +35,7 @@ <treechildren id="account-tree-children"/> </tree> -#ifdef MOZ_THUNDERBIRD +#if defined(MOZ_THUNDERBIRD) && defined(HYPE_ICEDOVE) <button id="accountActionsButton" type="menu" label="&accountActionsButton.label;" accesskey="&accountActionsButton.accesskey;"> diff --git a/mailnews/base/prefs/content/AccountWizard.xul b/mailnews/base/prefs/content/AccountWizard.xul index 45da359ab..2aee2e3a5 100644 --- a/mailnews/base/prefs/content/AccountWizard.xul +++ b/mailnews/base/prefs/content/AccountWizard.xul @@ -10,7 +10,7 @@ <wizard id="AccountWizard" title="&windowTitle.label;" onwizardcancel="return onCancel();" onwizardfinish="return FinishAccount();" -#ifdef MOZ_THUNDERBIRD +#if defined(MOZ_THUNDERBIRD) && defined(HYPE_ICEDOVE) onload="onAccountWizardLoad(); initAccountWizardTB(window.arguments);" #else onload="onAccountWizardLoad();" @@ -43,7 +43,7 @@ <label control="acctyperadio">&accountTypeDirections.label;</label> <separator/> <radiogroup id="acctyperadio" > -#ifndef MOZ_THUNDERBIRD +#if !defined(MOZ_THUNDERBIRD) || !defined(HYPE_ICEDOVE) <radio id="mailaccount" value="mailaccount" label="&accountTypeMail.label;" accesskey="&accountTypeMail.accesskey;" selected="true"/> |