Skip to content

Commit f639d1e

Browse files
committedJan 13, 2016
Fix windows build
1 parent 884c3ba commit f639d1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/gui/qgsfilepickerwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ QString QgsFilePickerWidget::toUrl( const QString& path ) const
280280

281281
QString urlStr = relativePath( path, false );
282282
QUrl url = QUrl::fromUserInput( urlStr );
283-
if ( !url.isValid() or !url.isLocalFile() )
283+
if ( !url.isValid() || !url.isLocalFile() )
284284
{
285285
QgsDebugMsg( QString( "URL: %1 is not valid or not a local file !" ).arg( path ) );
286286
rep = path;

0 commit comments

Comments
 (0)
Please sign in to comment.