Skip to content

Commit 87a9325

Browse files
author
jef
committed
fix debug output
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9248 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 3d3d505 commit 87a9325

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plugins/dxf2shp_converter/builder.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ void Builder::endBlock()
108108

109109
void Builder::addLayer( const DL_LayerData& data )
110110
{
111-
QgsDebugMsg( QString( "Layer: " ).arg( data.name.c_str() ) );
111+
QgsDebugMsg( QString( "Layer: %1" ).arg( data.name.c_str() ) );
112112
}
113113

114114
void Builder::addPoint( const DL_PointData& data )
@@ -151,7 +151,7 @@ void Builder::addLine( const DL_LineData& data )
151151
return;
152152
}
153153

154-
QgsDebugMsg( QString( "line 1,%2,%3 %4,%5,%6" )
154+
QgsDebugMsg( QString( "line %1,%2,%3 %4,%5,%6" )
155155
.arg( data.x1 ).arg( data.y1 ).arg( data.z1 )
156156
.arg( data.x2 ).arg( data.y2 ).arg( data.z2 ) );
157157

0 commit comments

Comments
 (0)