Skip to content

Commit

Permalink
Missing docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
borysiasty committed Nov 6, 2017
1 parent 64ab28b commit 6b76c2b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
9 changes: 9 additions & 0 deletions python/gui/qgsoptionsdialogbase.sip
Expand Up @@ -128,8 +128,17 @@ class QgsOptionsDialogBase : QDialog

protected slots:
virtual void updateOptionsListVerticalTabs();
%Docstring
Update tabs on the splitter move
%End
virtual void optionsStackedWidget_CurrentChanged( int index );
%Docstring
Select relevant tab on current page change
%End
virtual void optionsStackedWidget_WidgetRemoved( int index );
%Docstring
Remove tab and unregister widgets on page remove
%End

void warnAboutMissingObjects();

Expand Down
3 changes: 3 additions & 0 deletions src/gui/qgsoptionsdialogbase.h
Expand Up @@ -158,8 +158,11 @@ class GUI_EXPORT QgsOptionsDialogBase : public QDialog
void searchText( const QString &text );

protected slots:
//! Update tabs on the splitter move
virtual void updateOptionsListVerticalTabs();
//! Select relevant tab on current page change
virtual void optionsStackedWidget_CurrentChanged( int index );
//! Remove tab and unregister widgets on page remove
virtual void optionsStackedWidget_WidgetRemoved( int index );

void warnAboutMissingObjects();
Expand Down

0 comments on commit 6b76c2b

Please sign in to comment.