Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix debug output
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9248 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Sep 2, 2008
1 parent 3d3d505 commit 87a9325
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/dxf2shp_converter/builder.cpp
Expand Up @@ -108,7 +108,7 @@ void Builder::endBlock()

void Builder::addLayer( const DL_LayerData& data )
{
QgsDebugMsg( QString( "Layer: " ).arg( data.name.c_str() ) );
QgsDebugMsg( QString( "Layer: %1" ).arg( data.name.c_str() ) );
}

void Builder::addPoint( const DL_PointData& data )
Expand Down Expand Up @@ -151,7 +151,7 @@ void Builder::addLine( const DL_LineData& data )
return;
}

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

Expand Down

0 comments on commit 87a9325

Please sign in to comment.