Author: Tom Jampen <tom@cryptography.ch>
Description:
 This patch sets the auto update configuration value to false by default and
 disables the update checkbox, the corresponding time interval, the "Check Now"
 button and the update level.

diff -Naurp a/configdialog.ui b/configdialog.ui
--- a/configdialog.ui	2016-06-07 07:27:42.117844348 +0200
+++ b/configdialog.ui	2016-06-07 07:28:07.402766665 +0200
@@ -540,6 +540,9 @@
                   <string>Development Versions</string>
                  </property>
                 </item>
+                <property name="enabled">
+                 <bool>false</bool>
+                </property>
                </widget>
               </item>
               <item row="1" column="4">
@@ -560,6 +563,9 @@
                 <property name="text">
                  <string>Check Now</string>
                 </property>
+                <property name="enabled">
+                 <bool>false</bool>
+                </property>
                </widget>
               </item>
               <item row="0" column="3" colspan="2">
@@ -600,6 +606,9 @@
                 <property name="value">
                  <number>7</number>
                 </property>
+                <property name="readOnly">
+                 <bool>true</bool>
+                </property>
                </widget>
               </item>
               <item row="0" column="0">
@@ -607,6 +616,9 @@
                 <property name="text">
                  <string>Automatically check every</string>
                 </property>
+                <property name="checkable">
+                 <bool>false</bool>
+                </property>
                </widget>
               </item>
               <item row="0" column="5">
diff -Naurp a/configmanager.cpp b/configmanager.cpp
--- a/configmanager.cpp	2016-06-07 07:27:47.338034933 +0200
+++ b/configmanager.cpp	2016-06-07 07:28:07.402766665 +0200
@@ -472,7 +472,7 @@ ConfigManager::ConfigManager(QObject *pa
 	registerOption("Thesaurus/Database", &thesaurus_database, "<dic not found>", &pseudoDialog->comboBoxThesaurusFileName);
 
 	//updates
-	registerOption("Update/AutoCheck", &autoUpdateCheck, true, &pseudoDialog->checkBoxAutoUpdateCheck);
+	registerOption("Update/AutoCheck", &autoUpdateCheck, false, &pseudoDialog->checkBoxAutoUpdateCheck);
 	registerOption("Update/UpdateLevel", &updateLevel, 0, &pseudoDialog->comboBoxUpdateLevel);
 	registerOption("Update/AutoCheckInvervalDays", &autoUpdateCheckIntervalDays, 7, &pseudoDialog->spinBoxAutoUpdateCheckIntervalDays);
 	registerOption("Update/LastCheck", &lastUpdateCheck, QDateTime());
