diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-12-30 00:59:25 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-12-30 00:59:25 +0800 |
commit | 8fdb4086efaad93d0c9349520081a9608853fca0 (patch) | |
tree | ed0a05d32fbe2cc2575e8ec5013fbc6f6ff725d8 /embed/mozilla/mozilla-history-item.h | |
parent | eeecbfedf3b0a9c1bdf3f17981dc885603d268af (diff) | |
download | gsoc2013-epiphany-8fdb4086efaad93d0c9349520081a9608853fca0.tar.gz gsoc2013-epiphany-8fdb4086efaad93d0c9349520081a9608853fca0.tar.zst gsoc2013-epiphany-8fdb4086efaad93d0c9349520081a9608853fca0.zip |
Use the new interfaces for backward/forward menus.
Store nth data in the HistoryItem itself.
Try to use HISTORY_ITEM_DATA_KEY data from object in navigation action
before falling back to URL_DATA_KEY.
Bug #506005
svn path=/trunk/; revision=7834
Diffstat (limited to 'embed/mozilla/mozilla-history-item.h')
-rw-r--r-- | embed/mozilla/mozilla-history-item.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/embed/mozilla/mozilla-history-item.h b/embed/mozilla/mozilla-history-item.h index 270fb6f53..de764a665 100644 --- a/embed/mozilla/mozilla-history-item.h +++ b/embed/mozilla/mozilla-history-item.h @@ -13,8 +13,6 @@ G_BEGIN_DECLS #define MOZILLA_IS_HISTORY_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MOZILLA_TYPE_HISTORY_ITEM)) #define MOZILLA_HISTORY_ITEM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MOZILLA_TYPE_HISTORY_ITEM, MozillaHistoryItemClass)) -#define HISTORY_ITEM_INDEX_KEY "NTh" - typedef struct _MozillaHistoryItem MozillaHistoryItem; typedef struct _MozillaHistoryItemClass MozillaHistoryItemClass; @@ -29,6 +27,7 @@ struct _MozillaHistoryItem char *url; char *title; + int nth; }; GType mozilla_history_item_get_type (void) G_GNUC_CONST; |