Skip to content

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed
 

‎src/app/qgspluginmanager.cpp

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -407,16 +407,3 @@ void QgsPluginManager::on_btnClose_clicked()
407407
reject();
408408
}
409409

410-
void QgsPluginManager::on_lstPlugins_clicked(const QModelIndex &theIndex )
411-
{
412-
if (theIndex.column() == 0)
413-
{
414-
int row = theIndex.row();
415-
if ( mModelPlugins->item(row,0)->checkState() == Qt::Checked )
416-
{
417-
mModelPlugins->item(row,0)->setCheckState(Qt::Unchecked);
418-
} else {
419-
mModelPlugins->item(row,0)->setCheckState(Qt::Checked);
420-
}
421-
}
422-
}

‎src/app/qgspluginmanager.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ class QgsPluginManager : public QDialog, private Ui::QgsPluginManagerBase
5656
//! Sort model by column ascending
5757
void sortModel(int );
5858
public slots:
59-
//! Enable disable checkbox
60-
void on_lstPlugins_clicked(const QModelIndex & );
6159
//! Load selected plugins and close the dialog
6260
void on_btnOk_clicked();
6361
//! Select all plugins by setting their checkbox on

0 commit comments

Comments
 (0)
Please sign in to comment.