From e606c3ff907cd53ad0817f1412de7b6ddbafe9ad Mon Sep 17 00:00:00 2001 From: Chris Frey Date: Mon, 6 Dec 2010 17:28:48 -0500 Subject: [PATCH] lib: set default rectype for Bookmarks to 1 In my testing, the record type is usually 1. I haven't seen 0 yet. --- src/r_bookmark.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/r_bookmark.h b/src/r_bookmark.h index 990379db..8a47e36e 100644 --- a/src/r_bookmark.h +++ b/src/r_bookmark.h @@ -101,7 +101,7 @@ public: // database name static const char * GetDBName() { return "Browser Bookmarks"; } - static uint8_t GetDefaultRecType() { return 0; } + static uint8_t GetDefaultRecType() { return 1; } }; BXEXPORT inline std::ostream& operator<<(std::ostream &os, const Bookmark &msg) { -- 2.11.4.GIT