diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2017-06-13 20:20:53 +0300 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2017-06-13 20:20:53 +0300 |
commit | f1d38c7cd246ab1b163bd4a0d70471ad452a331b (patch) | |
tree | e09ddbf8580e31e10053e2a72f17bfa24380200a /plugins/Db_autobackups/src/options.cpp | |
parent | 4908792d64656d2d59d25eaafee6691d1ad99424 (diff) |
db_autobackups: backups number changed from 100 to 9999 (issue #813)
Diffstat (limited to 'plugins/Db_autobackups/src/options.cpp')
-rw-r--r-- | plugins/Db_autobackups/src/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Db_autobackups/src/options.cpp b/plugins/Db_autobackups/src/options.cpp index bd09bf703d..575f39ab4b 100644 --- a/plugins/Db_autobackups/src/options.cpp +++ b/plugins/Db_autobackups/src/options.cpp @@ -150,7 +150,7 @@ int SetDlgState(HWND hwndDlg) SendDlgItemMessage(hwndDlg, SPIN_PERIOD, UDM_SETRANGE32, 1, (LPARAM)60);
SetDlgItemText(hwndDlg, IDC_ED_PERIOD, _itow(new_options.period, buff, 10));
- SendDlgItemMessage(hwndDlg, SPIN_NUMBACKUPS, UDM_SETRANGE32, 1, (LPARAM)100);
+ SendDlgItemMessage(hwndDlg, SPIN_NUMBACKUPS, UDM_SETRANGE32, 1, (LPARAM)9999);
SetDlgItemText(hwndDlg, IDC_ED_NUMBACKUPS, _itow(new_options.num_backups, buff, 10));
SetDlgItemText(hwndDlg, IDC_ED_FOLDER, new_options.folder);
|