Author: baufo
Date: Thu May 22 11:56:27 2008
New Revision: 26765
URL: http://svn.gna.org/viewcvs/wesnoth?rev=26765&view=rev
Log:
Adding double quote as illegal character in Windows file names, thanks to ilor
for pointing this out.
Modified:
trunk/src/dialogs.cpp
Modified: trunk/src/dialogs.cpp
URL:
http://svn.gna.org/viewcvs/wesnoth/trunk/src/dialogs.cpp?rev=26765&r1=26764&r2=26765&view=diff
==============================================================================
--- trunk/src/dialogs.cpp (original)
+++ trunk/src/dialogs.cpp Thu May 22 11:56:27 2008
@@ -224,7 +224,7 @@
{
return c == '/' || c == '\\' || c == ':'
#ifdef WIN32
- || c == '?' || c == '|' || c == '<' || c == '>' || c == '*'
+ || c == '?' || c == '|' || c == '<' || c == '>' || c == '*' || c == '"'
#endif
;
}
_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits