Skip to content

Commit

Permalink
fix #928
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@8456 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed May 18, 2008
1 parent f5ddfb7 commit 4ae9998
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
13 changes: 0 additions & 13 deletions src/app/qgspluginmanager.cpp
Expand Up @@ -407,16 +407,3 @@ void QgsPluginManager::on_btnClose_clicked()
reject();
}

void QgsPluginManager::on_lstPlugins_clicked(const QModelIndex &theIndex )
{
if (theIndex.column() == 0)
{
int row = theIndex.row();
if ( mModelPlugins->item(row,0)->checkState() == Qt::Checked )
{
mModelPlugins->item(row,0)->setCheckState(Qt::Unchecked);
} else {
mModelPlugins->item(row,0)->setCheckState(Qt::Checked);
}
}
}
2 changes: 0 additions & 2 deletions src/app/qgspluginmanager.h
Expand Up @@ -56,8 +56,6 @@ class QgsPluginManager : public QDialog, private Ui::QgsPluginManagerBase
//! Sort model by column ascending
void sortModel(int );
public slots:
//! Enable disable checkbox
void on_lstPlugins_clicked(const QModelIndex & );
//! Load selected plugins and close the dialog
void on_btnOk_clicked();
//! Select all plugins by setting their checkbox on
Expand Down

0 comments on commit 4ae9998

Please sign in to comment.