File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -557,6 +557,15 @@ QgsBrowserModel {#qgis_api_break_3_0_QgsBrowserModel}
557
557
558
558
- addFavouriteDirectory has been renamed to addFavoriteDirectory
559
559
- removeFavourite has been renamed to removeFavorite
560
+ - initialize has been added
561
+ - initialized has been added
562
+
563
+
564
+ QgsBrowserDockWidget {#qgis_api_break_3_0_QgsBrowserDockWidget}
565
+ --------------------
566
+
567
+ - The constructor for QgsBrowserDockWidget has changed: a QgsBrowserModel instance is now an argument.
568
+
560
569
561
570
QgsCachedFeatureIterator {#qgis_api_break_3_0_QgsQgsCachedFeatureIterator}
562
571
------------------------
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ Reload the whole model
177
177
Hide the given path in the browser model
178
178
%End
179
179
180
- bool initialized( );
180
+ bool initialized( ) const ;
181
181
%Docstring
182
182
Returns true if the model has been initialized
183
183
:rtype: bool
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ class CORE_EXPORT QgsBrowserModel : public QAbstractItemModel
168
168
void hidePath ( QgsDataItem *item );
169
169
170
170
// ! Returns true if the model has been initialized
171
- bool initialized ( ) { return mInitialized ; }
171
+ bool initialized ( ) const { return mInitialized ; }
172
172
173
173
// ! Delayed initialization, needed because the provider registry must be already populated
174
174
void initialize ();
You can’t perform that action at this time.
0 commit comments