summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-02-11 10:45:10 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-02-11 10:45:10 +0300
commit752ace4d40b94699745b016424ea7568c686ecbb (patch)
tree19cb674a5133b72be34d716f8a12596d62dc9fb8
parent56171c4f775f0c1cfa215b2273f5b3b9a93d145d (diff)
fixes #1836 (ok, let it be 32000)
-rw-r--r--protocols/ICQ-WIM/src/options.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/ICQ-WIM/src/options.cpp b/protocols/ICQ-WIM/src/options.cpp
index aac251b2fb..09fce66101 100644
--- a/protocols/ICQ-WIM/src/options.cpp
+++ b/protocols/ICQ-WIM/src/options.cpp
@@ -164,8 +164,8 @@ class CIcqOptionsDlg : public CProtoDlgBase<CIcqProto>
public:
CIcqOptionsDlg(CIcqProto *ppro, int iDlgID, bool bFullDlg) :
CProtoDlgBase<CIcqProto>(ppro, iDlgID),
- spin1(this, IDC_SPIN1, MAXWORD),
- spin2(this, IDC_SPIN2, MAXWORD),
+ spin1(this, IDC_SPIN1, 32000),
+ spin2(this, IDC_SPIN2, 32000),
edtUin(this, IDC_UIN),
edtDiff1(this, IDC_DIFF1),
edtDiff2(this, IDC_DIFF2),