[Scummvm-cvs-logs] SF.net SVN: scummvm: [28431] tools/branches/gsoc2007-toolsgui/tools_gui.cpp

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Fri Aug 3 12:18:47 CEST 2007


Revision: 28431
          http://scummvm.svn.sourceforge.net/scummvm/?rev=28431&view=rev
Author:   fingolfin
Date:     2007-08-03 03:18:46 -0700 (Fri, 03 Aug 2007)

Log Message:
-----------
Fix small mistake in FileDrop::OnDropFiles (used a string literal instead of a char constant)

Modified Paths:
--------------
    tools/branches/gsoc2007-toolsgui/tools_gui.cpp

Modified: tools/branches/gsoc2007-toolsgui/tools_gui.cpp
===================================================================
--- tools/branches/gsoc2007-toolsgui/tools_gui.cpp	2007-08-03 09:43:53 UTC (rev 28430)
+++ tools/branches/gsoc2007-toolsgui/tools_gui.cpp	2007-08-03 10:18:46 UTC (rev 28431)
@@ -85,7 +85,7 @@
 
 bool FileDrop::OnDropFiles(wxCoord x, wxCoord y, const wxArrayString &filenames) {
 	if (_isFileChooser) {
-		if (_target->GetValue().Last() != wxChar(" ")) {
+		if (_target->GetValue().Last() != wxChar(' ')) {
 			_target->AppendText(" ");
 		}
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list