From: <hep...@us...> - 2009-06-07 04:50:14
|
Revision: 877 http://qterm.svn.sourceforge.net/qterm/?rev=877&view=rev Author: hephooey Date: 2009-06-07 04:49:35 +0000 (Sun, 07 Jun 2009) Log Message: ----------- Compile with MSVC Modified Paths: -------------- trunk/qterm-qt4/src/qtermglobal.cpp Modified: trunk/qterm-qt4/src/qtermglobal.cpp =================================================================== --- trunk/qterm-qt4/src/qtermglobal.cpp 2009-06-07 04:49:30 UTC (rev 876) +++ trunk/qterm-qt4/src/qtermglobal.cpp 2009-06-07 04:49:35 UTC (rev 877) @@ -22,6 +22,8 @@ #include <QtCore/QFileInfo> #include <QtCore/QTranslator> #include <QtCore/QVariant> +#include <QtCore/QUrl> +#include <QtCore/QProcess> #include <QtGui/QApplication> #include <QtGui/QDesktopServices> #include <QtGui/QFileDialog> @@ -884,7 +886,7 @@ system(command.toUtf8().data()); #else // TODO: arguments? also get rid of "%L" - QProcess::startDetached(m_pref.strHttp, urlStr); + QProcess::startDetached(m_pref.strHttp, QStringList() << urlStr); #endif } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |