Fixed wrong reference to the GreenshotPlugin and changed a property name so it's forced to a default.

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2228 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
RKrom 2012-10-30 18:10:41 +00:00
parent 65ad25ac57
commit 2127ce678b
9 changed files with 22 additions and 74 deletions

View file

@ -142,7 +142,7 @@ namespace Greenshot.Experimental {
// the current version is a release or release candidate AND check unstable is turned off.
if (rssFile.isUnstable) {
// Skip if we shouldn't check unstables
if ((conf.isRelease || conf.isReleaseCandidate) && !conf.CheckUnstable) {
if ((conf.isRelease || conf.isReleaseCandidate) && !conf.CheckForUnstable) {
continue;
}
}
@ -150,7 +150,7 @@ namespace Greenshot.Experimental {
// if the file is a release candidate, we will skip it when:
// the current version is a release AND check unstable is turned off.
if (rssFile.isReleaseCandidate) {
if (conf.isRelease && !conf.CheckUnstable) {
if (conf.isRelease && !conf.CheckForUnstable) {
continue;
}
}