diff options
| author | Andrea Diamantini <adjam7@gmail.com> | 2012-06-05 09:27:59 +0200 | 
|---|---|---|
| committer | Andrea Diamantini <adjam7@gmail.com> | 2012-06-08 00:39:47 +0200 | 
| commit | 88647f4f7852804d9d7acfd91fc6e35d06379413 (patch) | |
| tree | e8091c40b15be229d981ac470c860e943c3cdba6 /src/settings | |
| parent | kwebapp improvements (diff) | |
| download | rekonq-88647f4f7852804d9d7acfd91fc6e35d06379413.tar.xz | |
Fix/improve kwebapp contextual actions
Diffstat (limited to 'src/settings')
| -rw-r--r-- | src/settings/passexceptionswidget.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/settings/passexceptionswidget.cpp b/src/settings/passexceptionswidget.cpp index bf705723..fe20e711 100644 --- a/src/settings/passexceptionswidget.cpp +++ b/src/settings/passexceptionswidget.cpp @@ -54,8 +54,8 @@ PassExWidget::PassExWidget(QWidget *parent)  void PassExWidget::removeOne()  {      const int currentRow(listWidget->currentRow()); -    if(currentRow==-1) -      return; +    if (currentRow == -1) +        return;      QString item = listWidget->takeItem(currentRow)->text();      QStringList exList = ReKonfig::walletBlackList(); | 
