File: disable-autoupdate-dialog.patch

package info (click to toggle)
keepass2 2.57%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,520 kB
  • sloc: cs: 120,930; xml: 6,271; cpp: 322; sh: 53; makefile: 42
file content (25 lines) | stat: -rw-r--r-- 869 bytes parent folder | download | duplicates (3)
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; }