Skip to content

Commit

Permalink
Added missing api docs
Browse files Browse the repository at this point in the history
  • Loading branch information
wonder-sk committed Dec 10, 2016
1 parent d56a97d commit 64f1356
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions python/core/layertree/qgslayertreeregistrybridge.sip
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class QgsLayerTreeRegistryBridge : QObject
%End

public:
//! Create the instance that synchronizes given project with a layer tree root
explicit QgsLayerTreeRegistryBridge( QgsLayerTreeGroup* root, QgsProject* project, QObject *parent /TransferThis/ = 0 );

void setEnabled( bool enabled );
Expand Down
3 changes: 3 additions & 0 deletions python/core/qgsmapthemecollection.sip
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ class QgsMapThemeCollection : QObject

};

/**
* Create map theme collection that handles themes of the given project.
*/
QgsMapThemeCollection( QgsProject* project );

/**
Expand Down
1 change: 1 addition & 0 deletions src/core/layertree/qgslayertreeregistrybridge.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class CORE_EXPORT QgsLayerTreeRegistryBridge : public QObject
{
Q_OBJECT
public:
//! Create the instance that synchronizes given project with a layer tree root
explicit QgsLayerTreeRegistryBridge( QgsLayerTreeGroup* root, QgsProject* project, QObject *parent = nullptr );

void setEnabled( bool enabled ) { mEnabled = enabled; }
Expand Down
3 changes: 3 additions & 0 deletions src/core/qgsmapthemecollection.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ class CORE_EXPORT QgsMapThemeCollection : public QObject
friend class QgsMapThemeCollection;
};

/**
* Create map theme collection that handles themes of the given project.
*/
QgsMapThemeCollection( QgsProject* project );

/**
Expand Down

0 comments on commit 64f1356

Please sign in to comment.