File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed
Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -68,11 +68,11 @@ void QgsOracleConnectionItem::refresh()
6868
6969void QgsOracleConnectionItem::setAllAsPopulated ()
7070{
71- Q_FOREACH ( QgsDataItem *child, mChildren )
72- {
73- child->setState ( Populated );
74- }
75- setState ( Populated );
71+ Q_FOREACH ( QgsDataItem *child, mChildren )
72+ {
73+ child->setState ( Populated );
74+ }
75+ setState ( Populated );
7676}
7777
7878QVector<QgsDataItem*> QgsOracleConnectionItem::createChildren ()
Original file line number Diff line number Diff line change @@ -164,7 +164,6 @@ QgsOracleFeatureIterator::QgsOracleFeatureIterator( QgsOracleFeatureSource* sour
164164
165165 // NOTE - must be last added!
166166 mExpressionCompiled = false ;
167- mCompileStatus = NoCompilation;
168167 QString fallbackStatement;
169168 bool useFallback = false ;
170169 if ( request.filterType () == QgsFeatureRequest::FilterExpression )
@@ -181,7 +180,6 @@ QgsOracleFeatureIterator::QgsOracleFeatureIterator( QgsOracleFeatureSource* sour
181180
182181 // if only partial success when compiling expression, we need to double-check results using QGIS' expressions
183182 mExpressionCompiled = ( result == QgsSqlExpressionCompiler::Complete );
184- mCompileStatus = ( mExpressionCompiled ? Compiled : PartiallyCompiled );
185183 limitAtProvider = mExpressionCompiled ;
186184 }
187185 else
@@ -216,7 +214,6 @@ QgsOracleFeatureIterator::QgsOracleFeatureIterator( QgsOracleFeatureSource* sour
216214 if ( result )
217215 {
218216 mExpressionCompiled = false ;
219- mCompileStatus = NoCompilation;
220217 }
221218 }
222219}
You can’t perform that action at this time.
0 commit comments