diff options
author | George Hazan <george.hazan@gmail.com> | 2012-08-08 20:22:07 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-08-08 20:22:07 +0000 |
commit | 71f9ef9ded15566ee811508a6c9b8eee21facfa8 (patch) | |
tree | 57e5de5cb549b3d83475306c09897e27a5cf47ec /plugins/PluginUpdater/src/Common.h | |
parent | 1f0a5302f57c29d538d6633c080458df0ac3d5f7 (diff) |
- reminder removed;
- double "Update" click fixed;
- "once a day" option is enabled by default
git-svn-id: http://svn.miranda-ng.org/main/trunk@1410 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater/src/Common.h')
-rw-r--r-- | plugins/PluginUpdater/src/Common.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/PluginUpdater/src/Common.h b/plugins/PluginUpdater/src/Common.h index d61a75ac2c..9cb0a418be 100644 --- a/plugins/PluginUpdater/src/Common.h +++ b/plugins/PluginUpdater/src/Common.h @@ -87,17 +87,16 @@ struct PopupDataText struct PlugOptions
{
- BYTE bReminder, bUpdateOnStartup, bUpdateOnPeriod, bOnlyOnceADay, bUpdateIcons;
+ BYTE bUpdateOnStartup, bUpdateOnPeriod, bOnlyOnceADay, bUpdateIcons;
BOOL bSilent, bDlgDld;
BYTE bPeriodMeasure;
INT Period;
};
-#define DEFAULT_REMINDER 1
#define DEFAULT_UPDATEICONS 0
#define DEFAULT_UPDATEONSTARTUP 1
-#define DEFAULT_ONLYONCEADAY 0
+#define DEFAULT_ONLYONCEADAY 1
#define DEFAULT_UPDATEONPERIOD 0
#define DEFAULT_PERIOD 1
#define DEFAULT_PERIODMEASURE 1
|