aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-history-item.h
diff options
context:
space:
mode:
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