[Marble-commits] KDE/kdeedu/marble/src/lib/routing/instructions

Dennis Nienhüser earthwings at gentoo.org
Sun Nov 14 17:42:29 CET 2010


SVN commit 1197006 by nienhueser:

junction type is an enum, raw string output was inteneded here instead

 M  +1 -1      RoutingInstruction.cpp  


--- trunk/KDE/kdeedu/marble/src/lib/routing/instructions/RoutingInstruction.cpp #1197005:1197006
@@ -382,7 +382,7 @@
         for ( int j = 0; j < maxElement; ++j ) {
             stream << points[j].point().lat() << ',';
             stream << points[j].point().lon() << ',';
-            stream << points[j].junctionType() << ',';
+            stream << points[j].junctionTypeRaw() << ',';
             stream << points[j].roadType() << ',';
             stream << points[j].secondsRemaining() << ',';
             if ( !j ) {


More information about the Marble-commits mailing list