]> git.mxchange.org Git - flightgear.git/commitdiff
Work with new SGPath API.
authorJames Turner <zakalawe@mac.com>
Tue, 21 Jun 2016 11:28:35 +0000 (12:28 +0100)
committerRoland Haeder <roland@mxchange.org>
Thu, 22 Sep 2016 21:27:37 +0000 (23:27 +0200)
27 files changed:
src/AIModel/AIFlightPlan.cxx
src/AIModel/AIManager.cxx
src/AIModel/performancedb.cxx
src/AIModel/submodel.cxx
src/ATC/ATISEncoder.cxx
src/Aircraft/flightrecorder.cxx
src/Airports/airport.cxx
src/Airports/apt_loader.cxx
src/Airports/sidstar.cxx
src/Airports/xmlloader.cxx
src/Autopilot/autopilotgroup.cxx
src/Autopilot/route_mgr.cxx
src/Canvas/FGCanvasSystemAdapter.cxx
src/Cockpit/cockpitDisplayManager.cxx
src/Cockpit/panel_io.cxx
src/FDM/JSBSim/JSBSim.cxx
src/FDM/UIUCModel/uiuc_wrapper.cpp
src/FDM/YASim/YASim.cxx
src/GUI/AircraftModel.cxx
src/GUI/CocoaHelpers.mm
src/GUI/QtFileDialog.cxx
src/GUI/QtLauncher.cxx
src/Input/fgjs.cxx
src/Main/fg_commands.cxx
src/Navaids/FlightPlan.cxx
src/Navaids/NavDataCache.cxx
utils/GPSsmooth/GPSsmooth.cxx

index d9917227457f6679e36ae67ebaebadf898ec7025..7d1c6ae662c65d2f5b863ed8045cdb7717b8fd02 100644 (file)
@@ -234,9 +234,9 @@ bool FGAIFlightPlan::parseProperties(const std::string& filename)
   
   SGPropertyNode root;
   try {
-    readProperties(path.str(), &root);
+    readProperties(path, &root);
   } catch (const sg_exception &e) {
-    SG_LOG(SG_AI, SG_ALERT, "Error reading AI flight plan: " << path.str()
+    SG_LOG(SG_AI, SG_ALERT, "Error reading AI flight plan: " << path
            << "message:" << e.getFormattedMessage());
     return false;
   }
index 4faf23e591e5887ffb0937ad15f276d40028e67c..fe9e4ee13f79b984a117160c4a76da9518c51991 100644 (file)
@@ -507,11 +507,11 @@ FGAIManager::loadScenarioFile(const std::string& filename)
     path.append("AI/" + filename + ".xml");
     try {
         SGPropertyNode_ptr root = new SGPropertyNode;
-        readProperties(path.str(), root);
+        readProperties(path, root);
         return root;
     } catch (const sg_exception &t) {
         SG_LOG(SG_AI, SG_ALERT, "Failed to load scenario '"
-            << path.str() << "': " << t.getFormattedMessage());
+            << path << "': " << t.getFormattedMessage());
     }
     return 0;
 }
index 3a8ce545969f7d08f0b43d171b8f92b9bf3635cb..7b01e86fea5ba4e90c83b330095773ff8f2b0ad2 100644 (file)
@@ -111,10 +111,10 @@ void PerformanceDB::load(const SGPath& filename)
 {
     SGPropertyNode root;
     try {
-        readProperties(filename.str(), &root);
+        readProperties(filename, &root);
     } catch (const sg_exception &) {
         SG_LOG(SG_AI, SG_ALERT,
-            "Error reading AI aircraft performance database: " << filename.str());
+            "Error reading AI aircraft performance database: " << filename);
         return;
     }
 
index b3000f9a39ec6770a5e4776e7e724e6ff5b542bc..249fe1ade013e793ae234f62c3925fac4fe776a5 100644 (file)
@@ -484,12 +484,12 @@ void FGSubmodelMgr::setData(int id, const string& path, bool serviceable, const
     SGPath config = globals->resolve_aircraft_path(path);
     try {
         SG_LOG(SG_AI, SG_DEBUG,
-                "Submodels: Trying to read AI submodels file: " << config.str());
-        readProperties(config.str(), &root);
+                "Submodels: Trying to read AI submodels file: " << config);
+        readProperties(config, &root);
     }
     catch (const sg_exception &) {
         SG_LOG(SG_AI, SG_ALERT,
-                "Submodels: Unable to read AI submodels file: " << config.str());
+                "Submodels: Unable to read AI submodels file: " << config);
         return;
     }
 
index 294bb8306710013d0604d10e0a5d00df97e19c34..256166cd79082eb73631b81724f4a586f55b4eba 100644 (file)
@@ -193,7 +193,7 @@ string ATISEncoder::encodeATIS( ATISInformationProvider * atisInformation )
     try
     {
       SGPath path = globals->resolve_maybe_aircraft_path("ATC/atis.xml");
-      readProperties( path.str(), atisSchemaNode );
+      readProperties( path, atisSchemaNode );
     }
     catch (const sg_exception& e)
     {
index 34a03c18d323a085bc854ccb2b281ee209aaaba0..075ba17a3e57466a1247180c4c1268748dc1ac21 100644 (file)
@@ -180,7 +180,7 @@ FGFlightRecorder::getDefault(void)
         {
             try
             {
-                readProperties(path.str(), m_RecorderNode->getChild("config", 0 ,true), 0);
+                readProperties(path, m_RecorderNode->getChild("config", 0 ,true), 0);
                 ConfigNode = m_RecorderNode->getChild("config", 0 ,false);
             } catch (sg_io_exception &e)
             {
index 879f3f2241dc663f45830237a655f1cadb2b0ec5..c8be1010290129e9d3d217358edf7f52df075cb1 100644 (file)
@@ -564,7 +564,7 @@ void FGAirport::loadProcedures() const
     return;
   }
   
-  SG_LOG(SG_GENERAL, SG_INFO, ident() << ": loading procedures from " << path.str());
+  SG_LOG(SG_GENERAL, SG_INFO, ident() << ": loading procedures from " << path);
   RouteBase::loadAirportProcedures(path, const_cast<FGAirport*>(this));
 }
 
@@ -583,7 +583,7 @@ void FGAirport::loadSceneryDefinitions() const
   
   try {
     SGPropertyNode_ptr rootNode = new SGPropertyNode;
-    readProperties(path.str(), rootNode);
+    readProperties(path, rootNode);
     const_cast<FGAirport*>(this)->readThresholdData(rootNode);
   } catch (sg_exception& e) {
     SG_LOG(SG_NAVAID, SG_WARN, ident() << "loading threshold XML failed:" << e.getFormattedMessage());
@@ -691,7 +691,7 @@ void FGAirport::validateTowerData() const
   
   try {
     SGPropertyNode_ptr rootNode = new SGPropertyNode;
-    readProperties(path.str(), rootNode);
+    readProperties(path, rootNode);
     const_cast<FGAirport*>(this)->readTowerData(rootNode);
     mHasTower = true;
   } catch (sg_exception& e){
@@ -729,7 +729,7 @@ void FGAirport::validateILSData()
   
   try {
       SGPropertyNode_ptr rootNode = new SGPropertyNode;
-      readProperties(path.str(), rootNode);
+      readProperties(path, rootNode);
       readILSData(rootNode);
   } catch (sg_exception& e){
       SG_LOG(SG_NAVAID, SG_WARN, ident() << "loading ils XML failed:" << e.getFormattedMessage());
index 0dd3512b4520c63608ffafa65a9fda3f8aac84ba..781a078f0799d16d3d95a747d7e5429566fe25ce 100644 (file)
@@ -89,12 +89,11 @@ public:
 
   void parseAPT(const SGPath &aptdb_file)
   {
-    std::string apt_dat = aptdb_file.str();
-    sg_gzifstream in(apt_dat);
+    sg_gzifstream in(aptdb_file);
 
     if ( !in.is_open() ) {
-      SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << apt_dat );
-      throw sg_io_exception("cannot open apt.dat file", apt_dat.c_str());
+      SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << aptdb_file );
+      throw sg_io_exception("cannot open apt.dat file", aptdb_file);
     }
 
     string line;
@@ -113,9 +112,8 @@ public:
         // First line indicates IBM ("I") or Macintosh ("A") line endings.
         if ( stripped_line != "I" && stripped_line != "A" ) {
           std::string pb = "invalid first line (neither 'I' nor 'A')";
-          SG_LOG( SG_GENERAL, SG_ALERT, apt_dat << ": " << pb);
-          throw sg_format_exception("cannot parse apt.dat file: " + pb,
-                                    apt_dat);
+          SG_LOG( SG_GENERAL, SG_ALERT, aptdb_file << ": " << pb);
+          throw sg_format_exception("cannot parse apt.dat file: " + pb, aptdb_file.utf8Str());
         }
       } else {     // second line of the file
         std::istringstream s(line);
@@ -126,7 +124,7 @@ public:
       }
     } // end of the apt.dat header
 
-    throwExceptionIfStreamError(in, "apt.dat", apt_dat);
+    throwExceptionIfStreamError(in, "apt.dat", aptdb_file.utf8Str());
 
     while ( std::getline(in, line) ) {
       // 'line' may end with an \r character, see above
@@ -202,7 +200,7 @@ public:
       }
     }
 
-    throwExceptionIfStreamError(in, "apt.dat", apt_dat);
+    throwExceptionIfStreamError(in, "apt.dat", aptdb_file.utf8Str());
     finishAirport();
   }
   
@@ -569,7 +567,7 @@ bool airportDBLoad( const SGPath &aptdb_file )
   
 bool metarDataLoad(const SGPath& metar_file)
 {
-  sg_gzifstream metar_in( metar_file.str() );
+  sg_gzifstream metar_in( metar_file );
   if ( !metar_in.is_open() ) {
     SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << metar_file );
     return false;
index af7a020c958de0b769908283f9b7e878c17ab7db..22aa321791eea3ed4566d9e671b232f6facac0f6 100644 (file)
@@ -52,10 +52,10 @@ void FGSidStar::load(SGPath filename) {
   string runway;
   string name;
   try {
-      readProperties(filename.str(), &root);
+      readProperties(filename, &root);
   } catch (const sg_exception &) {
       SG_LOG(SG_GENERAL, SG_ALERT,
-       "Error reading AI flight plan: " << filename.str());
+       "Error reading AI flight plan: " << filename);
        // cout << path.str() << endl;
      return;
   }
index 9bbc3e7508bc9818f375843e5608baf4771df6dd..dc24ec6c184ce83687ef223dc1affd226284b45b 100644 (file)
@@ -54,7 +54,7 @@ void XMLLoader::load(FGGroundNetwork* net)
   t.stamp();
   try {
       FGGroundNetXMLLoader visitor(net);
-      readXML(path.str(), visitor);
+      readXML(path.local8BitStr(), visitor);
   } catch (sg_exception& e) {
     SG_LOG(SG_NAVAID, SG_INFO, "parsing groundnet XML failed:" << e.getFormattedMessage());
   }
@@ -105,8 +105,8 @@ bool XMLLoader::loadAirportXMLDataIntoVisitor(const string& aICAO,
     return false;
   }
 
-  SG_LOG(SG_GENERAL, SG_DEBUG, "loadAirportXMLDataIntoVisitor: loading from " << path.str());
-  readXML(path.str(), aVisitor);
+  SG_LOG(SG_GENERAL, SG_DEBUG, "loadAirportXMLDataIntoVisitor: loading from " << path);
+  readXML(path.local8BitStr(), aVisitor);
   return true;
 }
 
index 199a14b946fb7d8a8615cf5d81cb4d53d0bcefba..ada473cb543896e538ac77bb22356da70434eb23 100644 (file)
@@ -197,13 +197,13 @@ void FGXMLAutopilotGroup::addAutopilotFromFile( const std::string& name,
   (
     SG_AUTOPILOT,
     SG_INFO,
-    "Reading property-rule configuration from " << config.str()
+    "Reading property-rule configuration from " << config
   );
 
   try
   {
     SGPropertyNode_ptr configNode = new SGPropertyNode();
-    readProperties( config.str(), configNode );
+    readProperties( config, configNode );
 
     SG_LOG(SG_AUTOPILOT, SG_INFO, "adding  property-rule subsystem " << name);
     addAutopilot(name, apNode, configNode);
@@ -214,7 +214,7 @@ void FGXMLAutopilotGroup::addAutopilotFromFile( const std::string& name,
     (
       SG_AUTOPILOT,
       SG_ALERT,
-      "Failed to load property-rule configuration: " << config.str()
+      "Failed to load property-rule configuration: " << config
                                              << ": " << e.getMessage()
     );
     return;
index f58c57ac47ebe52142157cd251a29d9b41736e22..bae5b1d230920d23cf7a9792ad956fab95aaa938 100644 (file)
@@ -359,7 +359,7 @@ void FGRouteMgr::postinit()
   
   SGPath path(_pathNode->getStringValue());
   if (!path.isNull()) {
-    SG_LOG(SG_AUTOPILOT, SG_INFO, "loading flight-plan from: " << path.str());
+    SG_LOG(SG_AUTOPILOT, SG_INFO, "loading flight-plan from: " << path);
     loadRoute(path);
   }
   
index 894ca0bdc6b213d312ad196f3da9e0f89644a95f..f31ab12cf4db109dec73149d442d1370f5cc536f 100644 (file)
@@ -48,16 +48,16 @@ namespace canvas
     (
       SG_GL,
       SG_INFO,
-      "canvas::Text: using font file " << path.str()
+      "canvas::Text: using font file " << path
     );
 
-    simgear::canvas::FontPtr font = osgText::readFontFile(path.c_str());
+    simgear::canvas::FontPtr font = osgText::readFontFile(path.local8BitStr());
     if( !font )
       SG_LOG
       (
         SG_GL,
         SG_ALERT,
-        "canvas::Text: Failed to open font file " << path.c_str()
+        "canvas::Text: Failed to open font file " << path
       );
 
     return font;
index 18e6e7d8a535a542f32abfe215336fcf2882fac6..4c6d338f1ebe6cebfd5e4a4028d162d7df2cf9c9 100644 (file)
@@ -65,10 +65,10 @@ void CockpitDisplayManager::init()
   }
 
   SGPath config = globals->resolve_aircraft_path(path_n->getStringValue());
-  SG_LOG( SG_COCKPIT, SG_INFO, "Reading cockpit displays from " << config.str() );
+  SG_LOG( SG_COCKPIT, SG_INFO, "Reading cockpit displays from " << config );
 
   try {
-    readProperties( config.str(), config_props );
+    readProperties( config, config_props );
     if (!build(config_props)) {
       throw sg_exception(
                     "Detected an internal inconsistency in the instrumentation\n"
@@ -76,7 +76,7 @@ void CockpitDisplayManager::init()
     }
   } catch (const sg_exception& e) {
     SG_LOG(SG_COCKPIT, SG_ALERT, "Failed to load instrumentation system model: "
-                    << config.str() << ":" << e.getFormattedMessage() );
+                    << config << ":" << e.getFormattedMessage() );
   }
 
   // bind() created instruments before init.
index f05d057f1b508519c9e6450ca2f02d060675163e..cb12f5a7d4209a1c1cc6a540836ba6236346f8fa 100644 (file)
@@ -844,7 +844,7 @@ fgReadPanel (const string &relative_path)
   SGPropertyNode root;
   
   try {
-    readProperties(path.str(), &root);
+    readProperties(path, &root);
   } catch (const sg_exception &e) {
     guiErrorMessage("Error reading panel: ", e);
     return 0;
index b94a900a8ebe482eff643ba0a30aa258d4d8b4cd..d825a42629bc9d7af45f5ce141697227263b231c 100644 (file)
@@ -233,9 +233,9 @@ FGJSBsim::FGJSBsim( double dt )
 
     fdmex->Setdt( dt );
 
-    result = fdmex->LoadModel( aircraft_path.str(),
-                               engine_path.str(),
-                               systems_path.str(),
+    result = fdmex->LoadModel( aircraft_path.local8BitStr(),
+                               engine_path.local8BitStr(),
+                               systems_path.local8BitStr(),
                                fgGetString("/sim/aero"), false );
 
     if (result) {
index fd3fcf8ea4dda17acb42bde5c793394b216a7cf7..297c0e6b272f3cb2d0e694ddfcc32e58e69b3617 100644 (file)
@@ -321,9 +321,9 @@ void uiuc_init_aeromodel ()
   // Called once from uiuc_init_2_wrapper
   SGPath path(fgGetString("/sim/aircraft-dir"));
   path.append("aircraft.dat");
-  std::cout << "We are using "<< path.str() << std::endl;
+  std::cout << "We are using "<< path << std::endl;
   uiuc_initializemaps(); // Initialize the <string,int> maps
-  uiuc_menu(path.str());   // Read the specified aircraft file 
+  uiuc_menu(path.local8BitStr());   // Read the specified aircraft file
 }
 
 void uiuc_force_moment(double dt)
index 07163676aa39680b884ebe86e06e66a06a89aeeb..22073380a24a60093e95bf5583cb18937c3afcf6 100644 (file)
@@ -170,10 +170,10 @@ void YASim::init()
     f.append(fgGetString("/sim/aero"));
     f.concat(".xml");
     try {
-        readXML(f.str(), *_fdm);
+        readXML(f.local8BitStr(), *_fdm);
     } catch (const sg_exception &e) {
         SG_LOG(SG_FLIGHT, SG_ALERT,
-               "Error reading YASim FDM: '" << f.str() << "'" << std::endl
+               "Error reading YASim FDM: '" << f << "'" << std::endl
                << e.getFormattedMessage());
         throw e;
     }
index 5783a1237254f15a3f773feba947a1be5f117dae..774608d1c6fb4935b30cdf25476169e6784e519c 100644 (file)
@@ -522,7 +522,7 @@ void AircraftItemModel::scanDirs()
 
     SGPath rootAircraft(globals->get_fg_root());
     rootAircraft.append("Aircraft");
-    dirs << QString::fromStdString(rootAircraft.str());
+    dirs << QString::fromStdString(rootAircraft.utf8Str());
 
     m_scanThread = new AircraftScanThread(dirs);
     connect(m_scanThread, &AircraftScanThread::finished, this,
@@ -713,7 +713,7 @@ QVariant AircraftItemModel::dataFromPackage(const PackageRef& item, quint32 vari
     } else if (role == AircraftPathRole) {
         InstallRef i = item->existingInstall();
         if (i.valid()) {
-            return QString::fromStdString(i->primarySetPath().str());
+            return QString::fromStdString(i->primarySetPath().utf8Str());
         }
     } else if (role == AircraftPackageIdRole) {
         return QString::fromStdString(item->variants()[variantIndex]);
@@ -794,7 +794,7 @@ QVariant AircraftItemModel::packageThumbnail(PackageRef p, int index, bool downl
             path.append(p->thumbnails()[index]);
             if (path.exists()) {
                 QPixmap pix;
-                pix.load(QString::fromStdString(path.str()));
+                pix.load(QString::fromStdString(path.utf8Str()));
                 // resize to the standard size
                 if (pix.height() > STANDARD_THUMBNAIL_HEIGHT) {
                     pix = pix.scaledToHeight(STANDARD_THUMBNAIL_HEIGHT);
index 493e9458f6749c53c2aab5f4461ecebed24f353d..126b17c21df494fac571c952b88a0825598dedf6 100644 (file)
@@ -52,7 +52,7 @@ std::string stdStringFromCocoa(NSString* s)
 
 NSURL* pathToNSURL(const SGPath& aPath)
 {
-    return [NSURL fileURLWithPath:stdStringToCocoa(aPath.str())];
+    return [NSURL fileURLWithPath:stdStringToCocoa(aPath.utf8Str())];
 }
 
 SGPath URLToPath(NSURL* url)
index 5d140db91271f88052ba39a3cb5397c99f71f65f..effae6650704d18de4a97f1d7903286591d9b083 100644 (file)
@@ -52,7 +52,7 @@ void QtFileDialog::exec()
         }
         filter=filter+*it;
     }
-    QFileDialog dlg(0,QString::fromStdString(_title),QString::fromStdString(_initialPath.str()),QString::fromStdString(filter));
+    QFileDialog dlg(0,QString::fromStdString(_title),QString::fromStdString(_initialPath.utf8Str()),QString::fromStdString(filter));
     if (_usage==USE_SAVE_FILE) {
         dlg.setAcceptMode(QFileDialog::AcceptSave);
     }
index 8e74eb25795c1d970b94fb4da71ce009ae575aea..f407f43fc864ce1375561ec77eeec871481b1e0a 100644 (file)
@@ -655,7 +655,7 @@ void QtLauncher::setSceneryPaths()
     SGPath terraSyncDir(downloadDir.toStdString());
     terraSyncDir.append("TerraSync");
     if (terraSyncDir.exists()) {
-        globals->append_fg_scenery(terraSyncDir.str());
+        globals->append_fg_scenery(terraSyncDir.utf8Str());
     }
 
 }
index d849f3ce61f03726794a2e0a67be2bfc9312efb8..76a20b37f0e12e4efe3c129fc01050dafaf4d94c 100644 (file)
@@ -136,7 +136,7 @@ int main( int argc, char *argv[] ) {
 
     SGPropertyNode *templatetree = new SGPropertyNode();
     try {
-        readProperties(templatefile.str().c_str(), templatetree);
+        readProperties(templatefile, templatetree);
     } catch (sg_io_exception & e) {
         cout << e.getFormattedMessage ();
     }
index 1e93a0b7b70e6cd32a12381c525c1646e5ab3f25..98ea4b67cb4d09d5b545400b79efbd0da633d075 100644 (file)
@@ -1162,7 +1162,7 @@ do_load_xml_to_proptree(const SGPropertyNode * arg)
         targetnode = const_cast<SGPropertyNode *>(arg)->getNode("data", true);
 
     try {
-        readProperties(validated_path.c_str(), targetnode, true);
+        readProperties(validated_path, targetnode, true);
     } catch (const sg_exception &e) {
         SG_LOG(SG_IO, SG_WARN, "loadxml: " << e.getFormattedMessage());
         return false;
@@ -1247,7 +1247,7 @@ do_save_xml_from_proptree(const SGPropertyNode * arg)
         return false;
 
     try {
-        writeProperties (validated_path.c_str(), sourcenode, true);
+        writeProperties (validated_path, sourcenode, true);
     } catch (const sg_exception &e) {
         SG_LOG(SG_IO, SG_WARN, "savexml: " << e.getFormattedMessage());
         return false;
index 89e1f5f41c816bf5af6e5847e07728cdffe29d01..926688e65c144bb89b2549c53c03b62d69e6dcf0 100644 (file)
@@ -922,7 +922,7 @@ WayptRef FlightPlan::parseVersion1XMLWaypt(SGPropertyNode* aWP)
 bool FlightPlan::loadPlainTextFormat(const SGPath& path)
 {
   try {
-    sg_gzifstream in(path.str().c_str());
+    sg_gzifstream in(path);
     if (!in.is_open()) {
       throw sg_io_exception("Cannot open file for reading.");
     }
index ea83e861d03db1c08e7599910429a1e23c559b58..99894a0fb3a9f555cc4b09e4b688b7790b153972 100644 (file)
@@ -263,7 +263,7 @@ public:
         SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE;
       // see http://code.google.com/p/flightgear-bugs/issues/detail?id=1055
       // for the UTF8 / path logic here
-       std::string pathUtf8 = simgear::strutils::convertWindowsLocal8BitToUtf8(path.str());
+      std::string pathUtf8 = path.utf8Str();
     sqlite3_open_v2(pathUtf8.c_str(), &db, openFlags, NULL);
 
     sqlite3_stmt_ptr checkTables =
@@ -978,10 +978,10 @@ FGPositioned* NavDataCache::NavDataCachePrivate::loadById(sqlite3_int64 rowid,
 bool NavDataCache::NavDataCachePrivate::isCachedFileModified(const SGPath& path, bool verbose)
 {
   if (!path.exists()) {
-    throw sg_io_exception("isCachedFileModified: Missing file:" + path.str());
+    throw sg_io_exception("isCachedFileModified: Missing file:", path);
   }
 
-  sqlite_bind_temp_stdstring(statCacheCheck, 1, path.str());
+  sqlite_bind_temp_stdstring(statCacheCheck, 1, path.utf8Str());
   bool isModified = true;
   sgDebugPriority logLevel = verbose ? SG_WARN : SG_DEBUG;
   if (execSelect(statCacheCheck)) {
@@ -1336,7 +1336,7 @@ bool NavDataCache::isCachedFileModified(const SGPath& path) const
 
 void NavDataCache::stampCacheFile(const SGPath& path)
 {
-  sqlite_bind_temp_stdstring(d->stampFileCache, 1, path.str());
+  sqlite_bind_temp_stdstring(d->stampFileCache, 1, path.utf8Str());
   sqlite3_bind_int64(d->stampFileCache, 2, path.modTime());
   d->execInsert(d->stampFileCache);
 }
@@ -2142,7 +2142,7 @@ NavDataCache::ThreadedGUISearch::ThreadedGUISearch(const std::string& term) :
 {
     SGPath p = NavDataCache::instance()->path();
     int openFlags = SQLITE_OPEN_READONLY;
-    std::string pathUtf8 = simgear::strutils::convertWindowsLocal8BitToUtf8(p.str());
+    std::string pathUtf8 = p.utf8Str();
     sqlite3_open_v2(pathUtf8.c_str(), &d->db, openFlags, NULL);
 
     std::string sql = "SELECT rowid FROM positioned WHERE name LIKE '%" + term
index c3ddde99e247e265bfb67d4eb2e81e7e25a1bcec..3196fa9f8ad0f793c99fd47b8f97664d6a26e997 100644 (file)
@@ -9,6 +9,7 @@
 #include <simgear/constants.h>
 #include <simgear/misc/sgstream.hxx>
 #include <simgear/misc/strutils.hxx>
+#include <simgear/misc/sg_path.hxx>
 
 #include "GPSsmooth.hxx"
 
@@ -27,7 +28,7 @@ int GPSTrack::load( const string &file ) {
     data.clear();
 
     // openg the file
-    sg_gzifstream in( file );
+    sg_gzifstream in( SGPath::fromLocal8Bit(file.c_str()) );
     if ( !in.is_open() ) {
         cout << "Cannot open file: " << file << endl;
         return 0;