Skip to content

Commit

Permalink
Indentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Apr 9, 2016
1 parent 1b4bd47 commit 965cef2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion python/plugins/processing/gui/menus.py
Expand Up @@ -220,7 +220,6 @@ def _executeAlgorithm(alg):
progress.close()



def getMenu(name, parent):
menus = [c for c in parent.children() if isinstance(c, QMenu) and c.title() == name]
if menus:
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgscomposeritemcombobox.cpp
Expand Up @@ -102,7 +102,7 @@ QList< QgsComposerItem*> QgsComposerItemComboBox::exceptedItemList() const
{
return mProxyModel->exceptedItemList();
}
QgsComposerItem* QgsComposerItemComboBox::item( int index ) const
QgsComposerItem* QgsComposerItemComboBox::item( int index ) const
{
const QModelIndex proxyIndex = mProxyModel->index( index, 0 );
if ( !proxyIndex.isValid() )
Expand Down

0 comments on commit 965cef2

Please sign in to comment.