diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-09-18 18:15:52 +0300 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-09-18 18:15:52 +0300 |
commit | f2c6ceb47a15e2a9de99ae9a0ed4d955d0356528 (patch) | |
tree | fccb1ed3f75a4f0304e5df107e732e5ab16aa949 /src/bookmarks | |
parent | Add Navigation and Tab toolbars (diff) | |
download | rekonq-f2c6ceb47a15e2a9de99ae9a0ed4d955d0356528.tar.xz |
Fix compiler warnings
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/bookmarkstreeitem.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bookmarks/bookmarkstreeitem.hpp b/src/bookmarks/bookmarkstreeitem.hpp index 05a71ce2..caed1ecb 100644 --- a/src/bookmarks/bookmarkstreeitem.hpp +++ b/src/bookmarks/bookmarkstreeitem.hpp @@ -44,7 +44,7 @@ public: QObject::connect(action, &QAction::triggered, sender, [this, sender, type]() { emit sender->loadUrl(m_data.href, type); }); return action; - }; + } [[nodiscard]] BookmarksTreeItem *parent() const { return m_parent; } |