diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-11-03 20:22:14 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-11-03 20:22:14 -0500 |
commit | 5d18a70aa47415091257ee5cda6e0aa0c83d7167 (patch) | |
tree | 3854a2264221edaa4ad48f9422e917ddac730d95 /mailnews/base/prefs/content | |
parent | 1f23280e6a96b3c805a60ff6dbe87b226051c585 (diff) | |
download | UXP-5d18a70aa47415091257ee5cda6e0aa0c83d7167.tar UXP-5d18a70aa47415091257ee5cda6e0aa0c83d7167.tar.gz UXP-5d18a70aa47415091257ee5cda6e0aa0c83d7167.tar.lz UXP-5d18a70aa47415091257ee5cda6e0aa0c83d7167.tar.xz UXP-5d18a70aa47415091257ee5cda6e0aa0c83d7167.zip |
Issue #1258 - Part 5: Only IceDove cares about Thunderbird's baby mode account creation
Diffstat (limited to 'mailnews/base/prefs/content')
-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"/> |