diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-06-15 22:58:20 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-06-15 22:58:20 +0200 |
commit | c407c15457b24cfcd85c32cb62473489645858f7 (patch) | |
tree | 035535c86de7dd39e79fcb2284d5b9628b44ea9c /lib/web | |
parent | SubWindow: delete views right away when closing tab (diff) | |
download | smolbote-c407c15457b24cfcd85c32cb62473489645858f7.tar.xz |
Bookmarks manager bugfixes
WebProfile: remove addBookmark signal and member
Bookmarks: remove unused '...' button
Bookmarks: stop crashing if there's no selected item
Bookmarks: activating an item will only open it if it's a bookmark
Bookmarks: change header size split
Diffstat (limited to 'lib/web')
-rw-r--r-- | lib/web/webprofile.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/web/webprofile.h b/lib/web/webprofile.h index 7a747a3..f4d31e6 100644 --- a/lib/web/webprofile.h +++ b/lib/web/webprofile.h @@ -81,15 +81,7 @@ public: void setSpellCheckEnabled(bool enable); - void addBookmark(const QString &title, const QString &url) - { - if(!title.isEmpty() && !url.isEmpty()) - emit addBookmarkRequested(title, url); - } - signals: - void addBookmarkRequested(const QString &title, const QString &url); - void searchChanged(const QString &url); void homepageChanged(const QUrl &url); void newtabChanged(const QUrl &url); |