Revision | 29096 (tree) |
---|---|
Time | 2021-03-31 01:09:01 |
Author | stefankueng |
increase the interval limit to max
@@ -1,6 +1,6 @@ | ||
1 | 1 | // TortoiseSVN - a Windows shell extension for easy version control |
2 | 2 | |
3 | -// Copyright (C) 2014, 2016, 2020 - TortoiseSVN | |
3 | +// Copyright (C) 2014, 2016, 2020-2021 - TortoiseSVN | |
4 | 4 | |
5 | 5 | // This program is free software; you can redistribute it and/or |
6 | 6 | // modify it under the terms of the GNU General Public License |
@@ -52,7 +52,7 @@ | ||
52 | 52 | DDX_Text(pDX, IDC_USERNAME, m_sUsername); |
53 | 53 | DDX_Text(pDX, IDC_PASSWORD, m_sPassword); |
54 | 54 | DDX_Text(pDX, IDC_INTERVAL, m_monitorInterval); |
55 | - DDV_MinMaxInt(pDX, m_monitorInterval, 1, 1000); | |
55 | + DDV_MinMaxInt(pDX, m_monitorInterval, 1, INT_MAX); | |
56 | 56 | DDX_Text(pDX, IDC_IGNOREUSERS, m_sIgnoreUsers); |
57 | 57 | DDX_Text(pDX, IDC_IGNOREREGEX, m_sIgnoreRegex); |
58 | 58 | DDX_Check(pDX, IDC_PARENTPATH, m_isParentPath); |