Skip to content

Commit

Permalink
fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
NEDJIMAbelgacem authored and wonder-sk committed Apr 8, 2021
1 parent 5b62c63 commit f0d939b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/pointcloud/qgsremoteeptpointcloudindex.cpp
Expand Up @@ -60,11 +60,11 @@ void QgsRemoteEptPointCloudIndex::load( const QString &url )
{
mUrl = QUrl( url );

QStringList splittedUrl = url.split( '/' );
QStringList splitUrl = url.split( '/' );

mUrlFileNamePart = splittedUrl.back();
splittedUrl.pop_back();
mUrlDirectoryPart = splittedUrl.join( '/' );
mUrlFileNamePart = splitUrl.back();
splitUrl.pop_back();
mUrlDirectoryPart = splitUrl.join( '/' );

QNetworkRequest nr( url );

Expand Down

0 comments on commit f0d939b

Please sign in to comment.