Use variable instead of global static method

1. introduce variable
2. part of #389
3. refactoring program suffix in program plugin
4. 全局变量一时爽,代码重构火葬场
This commit is contained in:
bao-qian
2016-03-28 03:09:57 +01:00
parent c596039453
commit b22a4501cc
36 changed files with 402 additions and 343 deletions

View File

@@ -21,13 +21,13 @@ namespace Wox.Plugin.Program.ProgramSources
return commonStartMenuPath.ToString();
}
public CommonStartMenuProgramSource()
: base(getPath())
public CommonStartMenuProgramSource(string[] suffixes)
: base(getPath(), suffixes)
{
}
public CommonStartMenuProgramSource(ProgramSource source)
: this()
: this(source.Suffixes)
{
BonusPoints = source.BonusPoints;
}