From e78b7b85e4792f413175e13ef2fe437839b017a2 Mon Sep 17 00:00:00 2001 From: Reto Brunner Date: Fri, 24 Jan 2020 18:18:49 +0100 Subject: config: Strongly type context type The go compiler can't help much with untyped int constants. Even though the only valid constants are 0-3 it will happily accept 4 as input. Let's let the go compiler worry about correctness here. This also allows people not very familiar with the code to use it properly via auto completion. --- widgets/account.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'widgets/account.go') diff --git a/widgets/account.go b/widgets/account.go index 66320a3c..455c28ec 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -32,7 +32,7 @@ type AccountView struct { } func (acct *AccountView) UiConfig() config.UIConfig { - return acct.conf.GetUiConfig(map[int]string{ + return acct.conf.GetUiConfig(map[config.ContextType]string{ config.UI_CONTEXT_ACCOUNT: acct.AccountConfig().Name, config.UI_CONTEXT_FOLDER: acct.Directories().Selected(), }) @@ -41,7 +41,7 @@ func (acct *AccountView) UiConfig() config.UIConfig { func NewAccountView(aerc *Aerc, conf *config.AercConfig, acct *config.AccountConfig, logger *log.Logger, host TabHost) *AccountView { - acctUiConf := conf.GetUiConfig(map[int]string{ + acctUiConf := conf.GetUiConfig(map[config.ContextType]string{ config.UI_CONTEXT_ACCOUNT: acct.Name, }) -- cgit