Commit a98252c5 authored by lm's avatar lm

Minor compile time fixes.

parent cd2bcb07
...@@ -350,8 +350,8 @@ fgScenery = "--fg-scenery=/Applications/FlightGear.app/Contents/Resources/data/S ...@@ -350,8 +350,8 @@ fgScenery = "--fg-scenery=/Applications/FlightGear.app/Contents/Resources/data/S
#endif #endif
#ifdef Q_OS_WIN32 #ifdef Q_OS_WIN32
processFgfs = "C:\Program Files (x86)\FlightGear\bin\Win32\fgfs"; processFgfs = "C:\\Program Files (x86)\\FlightGear\\bin\\Win32\\fgfs";
fgRoot = "--fg-root=C:\Program Files (x86)\FlightGear\data"; fgRoot = "--fg-root=C:\\Program Files (x86)\\FlightGear\\data";
#endif #endif
#ifdef Q_OS_LINUX #ifdef Q_OS_LINUX
......
...@@ -461,7 +461,7 @@ QVariant QGCGoogleEarthView::documentElement(QString name) ...@@ -461,7 +461,7 @@ QVariant QGCGoogleEarthView::documentElement(QString name)
name.prepend("JScript_"); name.prepend("JScript_");
HRESULT res = doc->getElementById(QStringToBSTR(name), &element); HRESULT res = doc->getElementById(QStringToBSTR(name), &element);
//BSTR elemString; //BSTR elemString;
if (element) { if (SUCCEEDED(res) && element) {
//element->get_innerHTML(&elemString); //element->get_innerHTML(&elemString);
VARIANT var; VARIANT var;
var.vt = VT_BSTR; var.vt = VT_BSTR;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment