Skip to content

Commit 965cef2

Browse files
committed
Indentation fix
1 parent 1b4bd47 commit 965cef2

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

python/plugins/processing/gui/menus.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,6 @@ def _executeAlgorithm(alg):
220220
progress.close()
221221

222222

223-
224223
def getMenu(name, parent):
225224
menus = [c for c in parent.children() if isinstance(c, QMenu) and c.title() == name]
226225
if menus:

src/gui/qgscomposeritemcombobox.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ QList< QgsComposerItem*> QgsComposerItemComboBox::exceptedItemList() const
102102
{
103103
return mProxyModel->exceptedItemList();
104104
}
105-
QgsComposerItem* QgsComposerItemComboBox::item( int index ) const
105+
QgsComposerItem* QgsComposerItemComboBox::item( int index ) const
106106
{
107107
const QModelIndex proxyIndex = mProxyModel->index( index, 0 );
108108
if ( !proxyIndex.isValid() )

0 commit comments

Comments
 (0)