Skip to content

Commit

Permalink
fixed spelling and code style
Browse files Browse the repository at this point in the history
  • Loading branch information
andreassteffens authored and github-actions[bot] committed Apr 20, 2023
1 parent 4acae5f commit 6ceccbf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/providers/wfs/qgswfsdatasourceuri.cpp
Expand Up @@ -151,7 +151,7 @@ QgsWFSDataSourceURI::QgsWFSDataSourceURI( const QString &uri )
}
}

QgsWFSDataSourceURI::QgsWFSDataSourceURI( const QgsWFSDataSourceURI& other )
QgsWFSDataSourceURI::QgsWFSDataSourceURI( const QgsWFSDataSourceURI &other )
: mURI( other.mURI )
, mAuth( other.mAuth )
, mGetEndpoints( other.mGetEndpoints )
Expand All @@ -160,7 +160,7 @@ QgsWFSDataSourceURI::QgsWFSDataSourceURI( const QgsWFSDataSourceURI& other )
{
}

QgsWFSDataSourceURI& QgsWFSDataSourceURI::operator=( const QgsWFSDataSourceURI &other )
QgsWFSDataSourceURI &QgsWFSDataSourceURI::operator=( const QgsWFSDataSourceURI &other )
{
mURI = other.mURI;
mAuth = other.mAuth;
Expand Down Expand Up @@ -491,4 +491,4 @@ void QgsWFSDataSourceURI::setGetEndpoints( const QgsStringMap &map )
void QgsWFSDataSourceURI::setPostEndpoints( const QgsStringMap &map )
{
mPostEndpoints = map;
}
}
6 changes: 3 additions & 3 deletions src/providers/wfs/qgswfsdatasourceuri.h
Expand Up @@ -43,7 +43,7 @@ class QgsWFSDataSourceURI
explicit QgsWFSDataSourceURI( const QString &uri );

//! Copy constructor
QgsWFSDataSourceURI( const QgsWFSDataSourceURI& other );
QgsWFSDataSourceURI( const QgsWFSDataSourceURI &other );

//! Returns whether the URI is a valid one
bool isValid() const;
Expand Down Expand Up @@ -152,8 +152,8 @@ class QgsWFSDataSourceURI
//! Whether the initial GetFeature request, used to determine if gml:description/name/identifiers are used, should be skipped
bool skipInitialGetFeature() const;

//! Assigment operator
QgsWFSDataSourceURI& operator=( const QgsWFSDataSourceURI &other );
//! Assignment operator
QgsWFSDataSourceURI &operator=( const QgsWFSDataSourceURI &other );

private:
QgsDataSourceUri mURI;
Expand Down

0 comments on commit 6ceccbf

Please sign in to comment.