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

lightcast at users.sourceforge.net lightcast at users.sourceforge.net
Wed Aug 8 12:53:41 CEST 2007


Revision: 28490
          http://scummvm.svn.sourceforge.net/scummvm/?rev=28490&view=rev
Author:   lightcast
Date:     2007-08-08 03:53:41 -0700 (Wed, 08 Aug 2007)

Log Message:
-----------
Fixed several gcc warnings/errors.

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-08 10:53:12 UTC (rev 28489)
+++ tools/branches/gsoc2007-toolsgui/tools_gui.cpp	2007-08-08 10:53:41 UTC (rev 28490)
@@ -121,9 +121,9 @@
 		}
 	} else {
 		if (this->_dirDialog->ShowModal() == wxID_OK) {
-			this->_target->SetValue("\"");
+			this->_target->SetValue(wxT("\""));
 			this->_target->AppendText(this->_dirDialog->GetPath());
-			this->_target->AppendText("\"");
+			this->_target->AppendText(wxT("\""));
 		}
 
 		this->_target->SetInsertionPoint(0);
@@ -157,7 +157,7 @@
 	}
 
 	return true;
-};
+}
 
 IOChooser::IOChooser(wxWindow *parent, kEventId buttonId, wxString title, bool isFileChooser) : wxPanel(parent) {
 	wxStaticBox *box = new wxStaticBox(this, wxID_ANY, title);


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