mirror of
https://github.com/greenshot/greenshot
synced 2025-08-20 21:43:24 -07:00
Fixed "problem" of unregistered configurations
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@860 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
f000080bc4
commit
2ecbc82dc7
2 changed files with 7 additions and 0 deletions
|
@ -58,6 +58,9 @@ namespace GreenshotConfluencePlugin {
|
||||||
this.captureHost = captureHost;
|
this.captureHost = captureHost;
|
||||||
this.myAttributes = myAttributes;
|
this.myAttributes = myAttributes;
|
||||||
host.OnImageEditorOpen += new OnImageEditorOpenHandler(ImageEditorOpened);
|
host.OnImageEditorOpen += new OnImageEditorOpenHandler(ImageEditorOpened);
|
||||||
|
|
||||||
|
// Register configuration (don't need the configuration itself)
|
||||||
|
IniConfig.GetIniSection<ConfluenceConfiguration>();
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual void Shutdown() {
|
public virtual void Shutdown() {
|
||||||
|
|
|
@ -58,6 +58,10 @@ namespace GreenshotJiraPlugin {
|
||||||
this.captureHost = captureHost;
|
this.captureHost = captureHost;
|
||||||
this.myAttributes = myAttributes;
|
this.myAttributes = myAttributes;
|
||||||
host.OnImageEditorOpen += new OnImageEditorOpenHandler(ImageEditorOpened);
|
host.OnImageEditorOpen += new OnImageEditorOpenHandler(ImageEditorOpened);
|
||||||
|
|
||||||
|
// Register configuration (don't need the configuration itself)
|
||||||
|
IniConfig.GetIniSection<JiraConfiguration>();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual void Shutdown() {
|
public virtual void Shutdown() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue