Skip to content

Commit

Permalink
Applied patch in ticket #202
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@5624 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Jul 23, 2006
1 parent 3507533 commit 46fc648
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/qgsmaplayerset.cpp
Expand Up @@ -18,7 +18,7 @@
#include "qgsmaplayerset.h"
#include "qgsmaplayerregistry.h"
#include "qgsproject.h"

#include <string>

void QgsMapLayerSet::setLayerSet(const std::deque<QString>& layers)
{
Expand Down Expand Up @@ -60,7 +60,7 @@ void QgsMapLayerSet::updateFullExtent()
try
{
if ( ! lyr->coordinateTransform() )
throw QgsCsException( string("NO COORDINATE TRANSFORM FOUND FOR LAYER") );
throw QgsCsException( std::string("NO COORDINATE TRANSFORM FOUND FOR LAYER") );

mFullExtent.unionRect(lyr->coordinateTransform()->transformBoundingBox(lyr->extent()));
}
Expand Down

0 comments on commit 46fc648

Please sign in to comment.