Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
blazek committed Jun 15, 2012
1 parent df435be commit 3fafe82
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/providers/wfs/qgswfscapabilities.cpp
Expand Up @@ -31,19 +31,19 @@ QgsWFSCapabilities::QgsWFSCapabilities( QString theUri ) :
mCapabilitiesReply( 0 ),
mErrorCode( QgsWFSCapabilities::NoError )
{
mUri.setEncodedUri( theUri ),
QgsDebugMsg ( "theUri = " + theUri );
mBaseUrl = prepareUri ( mUri.param("url") );
mUri.setEncodedUri( theUri );
QgsDebugMsg( "theUri = " + theUri );
mBaseUrl = prepareUri( mUri.param( "url" ) );

QgsDebugMsg ( "mBaseUrl = " + mBaseUrl );
QgsDebugMsg( "mBaseUrl = " + mBaseUrl );

//find out the server URL
/*
QSettings settings;
QString key = "/Qgis/connections-wfs/" + mConnName + "/url";
mUri = settings.value( key ).toString();
QgsDebugMsg( QString( "url is: %1" ).arg( mUri ) );
//make a GetCapabilities request
//modify mUri to add '?' or '&' at the end if it is not already there
if ( !( mUri.contains( "?" ) ) )
Expand Down

0 comments on commit 3fafe82

Please sign in to comment.