Skip to content

Commit

Permalink
Fix windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanW2 committed Jan 13, 2016
1 parent 884c3ba commit f639d1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsfilepickerwidget.cpp
Expand Up @@ -280,7 +280,7 @@ QString QgsFilePickerWidget::toUrl( const QString& path ) const

QString urlStr = relativePath( path, false );
QUrl url = QUrl::fromUserInput( urlStr );
if ( !url.isValid() or !url.isLocalFile() )
if ( !url.isValid() || !url.isLocalFile() )
{
QgsDebugMsg( QString( "URL: %1 is not valid or not a local file !" ).arg( path ) );
rep = path;
Expand Down

0 comments on commit f639d1e

Please sign in to comment.