1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

OperaImporter: Set bookmark file filter to *.adr

This commit is contained in:
David Rosca 2014-09-18 16:03:06 +02:00
parent c45b301844
commit ef01247a80

View File

@ -47,7 +47,7 @@ QString OperaImporter::standardPath() const
QString OperaImporter::getPath(QWidget* parent)
{
m_path = QFileDialog::getOpenFileName(parent, BookmarksImporter::tr("Choose file..."), standardPath(), "Bookmarks (bookmarks.adr)");
m_path = QFileDialog::getOpenFileName(parent, BookmarksImporter::tr("Choose file..."), standardPath(), "Bookmarks (*.adr)");
return m_path;
}