Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix missing dox
  • Loading branch information
nirvn committed Mar 16, 2020
1 parent 35c1128 commit 878eb64
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/gui/qgsproviderconnectioncombobox.h
Expand Up @@ -55,18 +55,23 @@ class GUI_EXPORT QgsProviderConnectionComboBox : public QComboBox
/**
* Constructor for QgsProviderConnectionComboBox, for the specified \a provider.
*
* \warning The provider must support the connection API methods in its QgsProviderMetadata implementation
* in order for the model to work correctly.
* \warning The provider must support the connection API methods in its QgsProviderMetadata implementation
* in order for the model to work correctly.
*/
explicit QgsProviderConnectionComboBox( const QString &provider, QWidget *parent SIP_TRANSFERTHIS = nullptr );

/**
* Constructor for QgsProviderConnectionComboBox.
*
* \note The combo box will not show any connection until setProvider() is called.
*/
explicit QgsProviderConnectionComboBox( QWidget *parent = nullptr ) SIP_SKIP;

/**
* Sets the provider to be used.
*
* \warning The provider must support the connection API methods in its QgsProviderMetadata implementation
* in order for the model to work correctly.
* \warning The provider must support the connection API methods in its QgsProviderMetadata implementation
* in order for the model to work correctly.
*/
void setProvider( const QString &provider );

Expand Down

0 comments on commit 878eb64

Please sign in to comment.