Author: baufo
Date: Thu May 22 11:56:53 2008
New Revision: 26766

URL: http://svn.gna.org/viewcvs/wesnoth?rev=26766&view=rev
Log:
Adding double quote as illegal character in Windows file names, thanks to ilor 
for pointing this out.

Modified:
    branches/1.4/src/dialogs.cpp

Modified: branches/1.4/src/dialogs.cpp
URL: 
http://svn.gna.org/viewcvs/wesnoth/branches/1.4/src/dialogs.cpp?rev=26766&r1=26765&r2=26766&view=diff
==============================================================================
--- branches/1.4/src/dialogs.cpp (original)
+++ branches/1.4/src/dialogs.cpp Thu May 22 11:56:53 2008
@@ -225,7 +225,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

Reply via email to