Skip to content

Commit bc56794

Browse files
andreassteffensnyalldawson
authored andcommitted
fixed spelling and code style
1 parent 654dd44 commit bc56794

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/providers/wfs/qgswfsdatasourceuri.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ QgsWFSDataSourceURI::QgsWFSDataSourceURI( const QString &uri )
151151
}
152152
}
153153

154-
QgsWFSDataSourceURI::QgsWFSDataSourceURI( const QgsWFSDataSourceURI& other )
154+
QgsWFSDataSourceURI::QgsWFSDataSourceURI( const QgsWFSDataSourceURI &other )
155155
: mURI( other.mURI )
156156
, mAuth( other.mAuth )
157157
, mGetEndpoints( other.mGetEndpoints )
@@ -160,7 +160,7 @@ QgsWFSDataSourceURI::QgsWFSDataSourceURI( const QgsWFSDataSourceURI& other )
160160
{
161161
}
162162

163-
QgsWFSDataSourceURI& QgsWFSDataSourceURI::operator=( const QgsWFSDataSourceURI &other )
163+
QgsWFSDataSourceURI &QgsWFSDataSourceURI::operator=( const QgsWFSDataSourceURI &other )
164164
{
165165
mURI = other.mURI;
166166
mAuth = other.mAuth;
@@ -491,4 +491,4 @@ void QgsWFSDataSourceURI::setGetEndpoints( const QgsStringMap &map )
491491
void QgsWFSDataSourceURI::setPostEndpoints( const QgsStringMap &map )
492492
{
493493
mPostEndpoints = map;
494-
}
494+
}

src/providers/wfs/qgswfsdatasourceuri.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class QgsWFSDataSourceURI
4343
explicit QgsWFSDataSourceURI( const QString &uri );
4444

4545
//! Copy constructor
46-
QgsWFSDataSourceURI( const QgsWFSDataSourceURI& other );
46+
QgsWFSDataSourceURI( const QgsWFSDataSourceURI &other );
4747

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

155-
//! Assigment operator
156-
QgsWFSDataSourceURI& operator=( const QgsWFSDataSourceURI &other );
155+
//! Assignment operator
156+
QgsWFSDataSourceURI &operator=( const QgsWFSDataSourceURI &other );
157157

158158
private:
159159
QgsDataSourceUri mURI;

0 commit comments

Comments
 (0)