mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-26 00:02:08 -05:00
Const getter and api break docs
This commit is contained in:
parent
151cd080c9
commit
850fed557f
@ -557,6 +557,15 @@ QgsBrowserModel {#qgis_api_break_3_0_QgsBrowserModel}
|
||||
|
||||
- addFavouriteDirectory has been renamed to addFavoriteDirectory
|
||||
- removeFavourite has been renamed to removeFavorite
|
||||
- initialize has been added
|
||||
- initialized has been added
|
||||
|
||||
|
||||
QgsBrowserDockWidget {#qgis_api_break_3_0_QgsBrowserDockWidget}
|
||||
--------------------
|
||||
|
||||
- The constructor for QgsBrowserDockWidget has changed: a QgsBrowserModel instance is now an argument.
|
||||
|
||||
|
||||
QgsCachedFeatureIterator {#qgis_api_break_3_0_QgsQgsCachedFeatureIterator}
|
||||
------------------------
|
||||
|
@ -177,7 +177,7 @@ Reload the whole model
|
||||
Hide the given path in the browser model
|
||||
%End
|
||||
|
||||
bool initialized( );
|
||||
bool initialized( ) const;
|
||||
%Docstring
|
||||
Returns true if the model has been initialized
|
||||
:rtype: bool
|
||||
|
@ -168,7 +168,7 @@ class CORE_EXPORT QgsBrowserModel : public QAbstractItemModel
|
||||
void hidePath( QgsDataItem *item );
|
||||
|
||||
//! Returns true if the model has been initialized
|
||||
bool initialized( ) { return mInitialized; }
|
||||
bool initialized( ) const { return mInitialized; }
|
||||
|
||||
//! Delayed initialization, needed because the provider registry must be already populated
|
||||
void initialize();
|
||||
|
Loading…
x
Reference in New Issue
Block a user