1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: Julian Taylor <jtaylor.debian@googlemail.com>
Date: Fri, 30 Dec 2011 16:32:12 +0100
Subject: disable autoupdate dialog
does makes not much sense for the package
Forwarded: not-needed
---
KeePass/App/Configuration/AceApplication.cs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/KeePass/App/Configuration/AceApplication.cs b/KeePass/App/Configuration/AceApplication.cs
index 60d8274..175d69f 100644
--- a/KeePass/App/Configuration/AceApplication.cs
+++ b/KeePass/App/Configuration/AceApplication.cs
@@ -463,8 +463,8 @@ namespace KeePass.App.Configuration
set { m_bCheckForUpdate = value; }
}
- private bool m_bCheckForUpdateCfg = false;
- [DefaultValue(false)]
+ private bool m_bCheckForUpdateCfg = true;
+ [DefaultValue(true)]
public bool CheckForUpdateConfigured
{
get { return m_bCheckForUpdateCfg; }
|