diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-11-15 00:28:54 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-11-15 00:28:54 +0000 |
commit | bcd2e033563fdfd886335953bb0473c30a818d5c (patch) | |
tree | 56559209e903deb7beebebc4d059bb9f8ea349d9 /updater/options.cpp | |
parent | e7c1a8dc1fb9820fe25481e39dc739b64df6a217 (diff) |
TopToolbar support (patch by FREAK_THEMIGHTY)
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@574 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'updater/options.cpp')
-rw-r--r-- | updater/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/options.cpp b/updater/options.cpp index 4b6115e..7315ca2 100644 --- a/updater/options.cpp +++ b/updater/options.cpp @@ -435,7 +435,7 @@ void LoadOptions(void) options.backup = (DBGetContactSettingByte(0, MODULE, "Backup", 1) == 1);
//options.use_xml_backend = (DBGetContactSettingByte(0, MODULE, "UseXML", 1) == 1);
options.use_xml_backend = true;
- options.start_offline = (DBGetContactSettingByte(0, MODULE, "StartOffline", 1) == 1);
+ options.start_offline = (DBGetContactSettingByte(0, MODULE, "StartOffline", 0) == 1);
options.popup_notify = (DBGetContactSettingByte(0, MODULE, "PopupNotify", 0) == 1);
options.restart_menu_item = (DBGetContactSettingByte(0, MODULE, "RestartMenuItem", 0) == 1);
options.update_and_exit_menu_item = (DBGetContactSettingByte(0, MODULE, "UpdateAndExitMenuItem", 0) == 1);
|