Test double pinyin

This commit is contained in:
VictoriousRaptor 2023-11-18 14:58:23 +08:00
parent 3abd05f6b3
commit fb6635344b
2 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@ namespace Flow.Launcher
private SettingWindowViewModel _settingsVM;
private readonly Updater _updater = new Updater(Flow.Launcher.Properties.Settings.Default.GithubRepo);
private readonly Portable _portable = new Portable();
private readonly PinyinAlphabet _alphabet = new PinyinAlphabet();
private readonly DoublePinAlphabet _alphabet = new DoublePinAlphabet();
private StringMatcher _stringMatcher;
[STAThread]

View file

@ -32,11 +32,11 @@ namespace Flow.Launcher
{
private readonly SettingWindowViewModel _settingsVM;
private readonly MainViewModel _mainVM;
private readonly PinyinAlphabet _alphabet;
private readonly DoublePinAlphabet _alphabet;
#region Constructor
public PublicAPIInstance(SettingWindowViewModel settingsVM, MainViewModel mainVM, PinyinAlphabet alphabet)
public PublicAPIInstance(SettingWindowViewModel settingsVM, MainViewModel mainVM, DoublePinAlphabet alphabet)
{
_settingsVM = settingsVM;
_mainVM = mainVM;