Don't proceed to fetching icons if exported bookmarks list is empty

remotes/origin/falkon
nowrep 14 years ago
parent f017aba8e7
commit e6a5b18675
  1. 11
      src/lib/bookmarksimport/bookmarksimportdialog.cpp
  2. 6
      src/lib/preferences/preferences.ui

@ -192,7 +192,6 @@ bool BookmarksImportDialog::exportedOK()
QMessageBox::critical(this, tr("Error!"), firefox.errorString());
return false;
}
return true;
}
else if (m_browser == Chrome) {
ChromeImporter chrome(this);
@ -205,7 +204,6 @@ bool BookmarksImportDialog::exportedOK()
QMessageBox::critical(this, tr("Error!"), chrome.errorString());
return false;
}
return true;
}
else if (m_browser == Opera) {
OperaImporter opera(this);
@ -218,7 +216,6 @@ bool BookmarksImportDialog::exportedOK()
QMessageBox::critical(this, tr("Error!"), opera.errorString());
return false;
}
return true;
}
else if (m_browser == Html) {
HtmlImporter html(this);
@ -231,10 +228,14 @@ bool BookmarksImportDialog::exportedOK()
QMessageBox::critical(this, tr("Error!"), html.errorString());
return false;
}
return true;
}
return false;
if (m_exportedBookmarks.isEmpty()) {
QMessageBox::critical(this, tr("Error!"), tr("The file doesn't contain any bookmark."));
return false;
}
return true;
}
void BookmarksImportDialog::setFile()

@ -1738,7 +1738,11 @@
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="externalDownArguments"/>
<widget class="QLineEdit" name="externalDownArguments">
<property name="placeholderText">
<string>Leave blank if unsure</string>
</property>
</widget>
</item>
<item row="0" column="1">
<layout class="QHBoxLayout" name="horizontalLayout_7">

Loading…
Cancel
Save