Skip to content

Commit 50f8d56

Browse files
Test double pinyin
1 parent f735ce5 commit 50f8d56

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Flow.Launcher/App.xaml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public partial class App : IDisposable, ISingleInstanceApp
3030
private SettingWindowViewModel _settingsVM;
3131
private readonly Updater _updater = new Updater(Flow.Launcher.Properties.Settings.Default.GithubRepo);
3232
private readonly Portable _portable = new Portable();
33-
private readonly PinyinAlphabet _alphabet = new PinyinAlphabet();
33+
private readonly DoublePinAlphabet _alphabet = new DoublePinAlphabet();
3434
private StringMatcher _stringMatcher;
3535

3636
[STAThread]

Flow.Launcher/PublicAPIInstance.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ public class PublicAPIInstance : IPublicAPI
3232
{
3333
private readonly SettingWindowViewModel _settingsVM;
3434
private readonly MainViewModel _mainVM;
35-
private readonly PinyinAlphabet _alphabet;
35+
private readonly DoublePinAlphabet _alphabet;
3636

3737
#region Constructor
3838

39-
public PublicAPIInstance(SettingWindowViewModel settingsVM, MainViewModel mainVM, PinyinAlphabet alphabet)
39+
public PublicAPIInstance(SettingWindowViewModel settingsVM, MainViewModel mainVM, DoublePinAlphabet alphabet)
4040
{
4141
_settingsVM = settingsVM;
4242
_mainVM = mainVM;

0 commit comments

Comments
 (0)