commenting noisy warnings (#32238)

* commenting noisy warnings

These are annoying and prevent from correctly testing QGIS nightlies.
Will be reverted when #32176 is merged
This commit is contained in:
Denis Rouzaud 2019-10-15 15:31:40 +02:00 committed by GitHub
parent 6297da3d11
commit 6a797d6736
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -205,10 +205,7 @@ void QgsFeatureListView::setEditSelection( const QModelIndex &index, QItemSelect
bool ok = true;
emit aboutToChangeEditSelection( ok );
#ifdef QGISDEBUG
if ( index.model() != mModel->masterModel() )
qWarning() << "Index from wrong model passed in";
#endif
Q_ASSERT( index.model() == mModel->masterModel() || !index.isValid() );
if ( ok )
mCurrentEditSelectionModel->select( index, command );