Skip to content

Commit

Permalink
Remove compiler warnings
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@8143 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Feb 12, 2008
1 parent 3c1b2f7 commit c0a072b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -1993,7 +1993,7 @@ bool QgisApp::addVectorLayers(QStringList const & theLayerQStringList, const QSt

statusBar()->message(mMapCanvas->extent().stringRep(2));


return true;
} // QgisApp::addVectorLayer()


Expand Down
2 changes: 2 additions & 0 deletions src/app/qgsmaptoolcapture.cpp
Expand Up @@ -105,6 +105,7 @@ int QgsMapToolCapture::addVertex(const QPoint& p)
}
catch(QgsCsException &cse)
{
UNUSED(cse);
return 2;
}

Expand All @@ -121,6 +122,7 @@ int QgsMapToolCapture::addVertex(const QPoint& p)
}
catch(QgsCsException &cse)
{
UNUSED (cse);
return 2;
}
mRubberBand->addPoint(mapPoint);
Expand Down

0 comments on commit c0a072b

Please sign in to comment.