From 14e00f3bf56e2c9fd0c33196e759156f7ff8bf2e Mon Sep 17 00:00:00 2001 From: Pilzinsel64 Date: Mon, 10 Jun 2024 21:29:25 +0200 Subject: [PATCH] fix legacy CharListControlLangRes calls --- .../UI/MainTabs/Controls/CharacterListControl.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/OwnChar.App.Desktop/UI/MainTabs/Controls/CharacterListControl.cs b/OwnChar.App.Desktop/UI/MainTabs/Controls/CharacterListControl.cs index e10554c..1f25795 100644 --- a/OwnChar.App.Desktop/UI/MainTabs/Controls/CharacterListControl.cs +++ b/OwnChar.App.Desktop/UI/MainTabs/Controls/CharacterListControl.cs @@ -1,4 +1,5 @@ using OwnChar.App.Desktop.Api; +using OwnChar.App.Desktop.LangRes; using OwnChar.App.Desktop.UI.Windows; using OwnChar.Model; using System; @@ -53,12 +54,12 @@ namespace OwnChar.App.Desktop.UI.MainTabs.Controls radListView_CharList.BeginUpdate(); radListView_CharList.Columns.Clear(); - radListView_CharList.Columns.Add(LangRes.LangResCharListControl.Column_CharName); + radListView_CharList.Columns.Add(CharListControlLangRes.Column_CharName); if (profile != null) - radListView_CharList.Columns.Add(LangRes.LangResCharListControl.Column_CharGroup); + radListView_CharList.Columns.Add(CharListControlLangRes.Column_CharGroup); else if (group != null) - radListView_CharList.Columns.Add(LangRes.LangResCharListControl.Column_CharOwner); + radListView_CharList.Columns.Add(CharListControlLangRes.Column_CharOwner); radListView_CharList.EndUpdate(); }