mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 10:46:35 +01:00
OperaImporter: Also import bookmark description and keyword
This commit is contained in:
parent
ef01247a80
commit
545e0cd6b9
@ -78,7 +78,7 @@ bool OperaImporter::prepareImport()
|
|||||||
BookmarkItem* OperaImporter::importBookmarks()
|
BookmarkItem* OperaImporter::importBookmarks()
|
||||||
{
|
{
|
||||||
BookmarkItem* root = new BookmarkItem(BookmarkItem::Folder);
|
BookmarkItem* root = new BookmarkItem(BookmarkItem::Folder);
|
||||||
root->setTitle("Opera Import");
|
root->setTitle(QSL("Opera Import"));
|
||||||
|
|
||||||
QList<BookmarkItem*> folders;
|
QList<BookmarkItem*> folders;
|
||||||
folders.append(root);
|
folders.append(root);
|
||||||
@ -116,11 +116,16 @@ BookmarkItem* OperaImporter::importBookmarks()
|
|||||||
if (tok == EmptyLine) {
|
if (tok == EmptyLine) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
else if (tok == KeyValuePair && m_key == QLatin1String("NAME")) {
|
else if (tok == KeyValuePair) {
|
||||||
|
if (m_key == QL1S("NAME")) {
|
||||||
item->setTitle(m_value);
|
item->setTitle(m_value);
|
||||||
}
|
} else if (m_key == QL1S("URL")) {
|
||||||
else if (tok == KeyValuePair && m_key == QLatin1String("URL")) {
|
|
||||||
item->setUrl(QUrl(m_value));
|
item->setUrl(QUrl(m_value));
|
||||||
|
} else if (m_key == QL1S("DESCRIPTION")) {
|
||||||
|
item->setDescription(m_value);
|
||||||
|
} else if (m_key == QL1S("SHORT NAME")) {
|
||||||
|
item->setKeyword(m_value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user