diff options
author | mataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-08-28 10:41:40 +0000 |
---|---|---|
committer | mataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-08-28 10:41:40 +0000 |
commit | b1fe9e6153719b8ded9936651fb1093d27669c5a (patch) | |
tree | f0d66d176706822ee9c364c07aaf1c1a9261dba5 /dbeditorpp/exportimport.cpp | |
parent | 707e4a038980ff25781bfa67e4fc3cd9ed10d497 (diff) |
Svc_dbepp:
fixed openfile name length
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@163 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'dbeditorpp/exportimport.cpp')
-rw-r--r-- | dbeditorpp/exportimport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbeditorpp/exportimport.cpp b/dbeditorpp/exportimport.cpp index 0396981..83b15e7 100644 --- a/dbeditorpp/exportimport.cpp +++ b/dbeditorpp/exportimport.cpp @@ -679,7 +679,7 @@ int Openfile2Import(char *outputFiles) ofn.lpstrFilter = filter;
ofn.hwndOwner = 0;
ofn.lpstrFile = outputFiles;
- ofn.nMaxFile = MAX_PATH;
+ ofn.nMaxFile = MAX_PATH*10;
ofn.nMaxFileTitle = MAX_PATH;
ofn.Flags = OFN_HIDEREADONLY | OFN_SHAREAWARE | OFN_PATHMUSTEXIST | OFN_ALLOWMULTISELECT | OFN_EXPLORER;
ofn.lpstrTitle = title;
|