mirror of
https://github.com/greenshot/greenshot
synced 2025-08-20 13:33:27 -07:00
Code quality changes
This commit is contained in:
parent
f07ed83722
commit
610f45d082
189 changed files with 4609 additions and 5203 deletions
|
@ -54,9 +54,6 @@ namespace GreenshotPicasaPlugin {
|
|||
}
|
||||
}
|
||||
|
||||
public PicasaPlugin() {
|
||||
}
|
||||
|
||||
public IEnumerable<IDestination> Destinations() {
|
||||
yield return new PicasaDestination(this);
|
||||
}
|
||||
|
@ -79,10 +76,12 @@ namespace GreenshotPicasaPlugin {
|
|||
_config = IniConfig.GetIniSection<PicasaConfiguration>();
|
||||
_resources = new ComponentResourceManager(typeof(PicasaPlugin));
|
||||
|
||||
_itemPlugInRoot = new ToolStripMenuItem();
|
||||
_itemPlugInRoot.Text = Language.GetString("picasa", LangKey.Configure);
|
||||
_itemPlugInRoot.Tag = _host;
|
||||
_itemPlugInRoot.Image = (Image)_resources.GetObject("Picasa");
|
||||
_itemPlugInRoot = new ToolStripMenuItem
|
||||
{
|
||||
Text = Language.GetString("picasa", LangKey.Configure),
|
||||
Tag = _host,
|
||||
Image = (Image) _resources.GetObject("Picasa")
|
||||
};
|
||||
_itemPlugInRoot.Click += ConfigMenuClick;
|
||||
PluginUtils.AddToContextMenu(_host, _itemPlugInRoot);
|
||||
Language.LanguageChanged += OnLanguageChanged;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue