diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2020-01-28 18:55:02 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2020-01-28 18:55:02 +0200 |
commit | 241f6e04dc9b5cbfc7503a544b16d7b5452f1acb (patch) | |
tree | ea87c413506aff0794250bb861b1005db5a8c2a6 /test | |
parent | Add bookmarks toolbar (diff) | |
download | smolbote-241f6e04dc9b5cbfc7503a544b16d7b5452f1acb.tar.xz |
Remove non-const BookmarkItem::icon
Default BookmarkItem icons will be created when creating the item, if a
QApplication (and subsequently, qApp->style()) is present.
- added a poi-bookmarks test
Diffstat (limited to 'test')
-rw-r--r-- | test/bookmarks.xbel | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/bookmarks.xbel b/test/bookmarks.xbel new file mode 100644 index 0000000..487fc5b --- /dev/null +++ b/test/bookmarks.xbel @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE xbel> +<xbel version="1.0"> + <bookmark href="https://some.url"> + <title>some website</title> + </bookmark> + <folder folded="no"> + <title>a folder</title> + <bookmark href="https://another.website"> + <title>another website</title> + </bookmark> + </folder> +</xbel> |