aboutsummaryrefslogtreecommitdiff
path: root/lib/bookmarks/bookmarkformat.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2020-01-17 10:25:27 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2020-01-17 11:18:34 +0200
commit5f708d4618d739d14442b85c466fdbac84a74cc8 (patch)
treee253289a1686f302df62d0f0865b9dcd6bfa6412 /lib/bookmarks/bookmarkformat.h
parentAdd Firefox bookmarks.json format to libbookmarks (diff)
downloadsmolbote-5f708d4618d739d14442b85c466fdbac84a74cc8.tar.xz
BookmarkItem::DateAdded and LastModified fields
- add read support in FFJson for DateAdded and LastModified fields - add read/write support in Xbel for DateAdded and LastModified fields - BookmarkModel: set DateAdded on appendBookmark and appendFolder - EditBookmarkDialog: set LastModified field when saving changes
Diffstat (limited to 'lib/bookmarks/bookmarkformat.h')
-rw-r--r--lib/bookmarks/bookmarkformat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bookmarks/bookmarkformat.h b/lib/bookmarks/bookmarkformat.h
index 5cd1860..8b64420 100644
--- a/lib/bookmarks/bookmarkformat.h
+++ b/lib/bookmarks/bookmarkformat.h
@@ -24,7 +24,7 @@ class BookmarkFormat
public:
explicit BookmarkFormat(QIODevice *device)
{
- Q_CHECK_PTR(m_device);
+ Q_CHECK_PTR(device);
m_device = device;
}
~BookmarkFormat()