aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-history-item.h
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2007-12-30 07:39:23 +0800
committerXan Lopez <xan@src.gnome.org>2007-12-30 07:39:23 +0800
commit2a776b7f4ea30e814b2703a50633143b5b0ebc95 (patch)
tree5bbcfc00e1a574c903b56dc4c2bce782bfe28d4a /embed/ephy-history-item.h
parent8fdb4086efaad93d0c9349520081a9608853fca0 (diff)
downloadgsoc2013-epiphany-2a776b7f4ea30e814b2703a50633143b5b0ebc95.tar
gsoc2013-epiphany-2a776b7f4ea30e814b2703a50633143b5b0ebc95.tar.gz
gsoc2013-epiphany-2a776b7f4ea30e814b2703a50633143b5b0ebc95.tar.bz2
gsoc2013-epiphany-2a776b7f4ea30e814b2703a50633143b5b0ebc95.tar.lz
gsoc2013-epiphany-2a776b7f4ea30e814b2703a50633143b5b0ebc95.tar.xz
gsoc2013-epiphany-2a776b7f4ea30e814b2703a50633143b5b0ebc95.tar.zst
gsoc2013-epiphany-2a776b7f4ea30e814b2703a50633143b5b0ebc95.zip
Make MozillaHistoryItem create url and title on demand.
Adapt code to the API change. svn path=/trunk/; revision=7835
Diffstat (limited to 'embed/ephy-history-item.h')
-rw-r--r--embed/ephy-history-item.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/embed/ephy-history-item.h b/embed/ephy-history-item.h
index 153dcb745..7ec7871d5 100644
--- a/embed/ephy-history-item.h
+++ b/embed/ephy-history-item.h
@@ -40,13 +40,13 @@ struct _EphyHistoryItemIface
{
GTypeInterface base_iface;
- const char * (* get_url) (EphyHistoryItem *item);
- const char * (* get_title) (EphyHistoryItem *item);
+ char * (* get_url) (EphyHistoryItem *item);
+ char * (* get_title) (EphyHistoryItem *item);
};
GType ephy_history_item_get_type (void);
-const char* ephy_history_item_get_url (EphyHistoryItem *item);
-const char* ephy_history_item_get_title (EphyHistoryItem *item);
+char* ephy_history_item_get_url (EphyHistoryItem *item);
+char* ephy_history_item_get_title (EphyHistoryItem *item);
G_END_DECLS