aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-history-item.c
diff options
context:
space:
mode:
Diffstat (limited to 'embed/ephy-history-item.c')
-rw-r--r--embed/ephy-history-item.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/embed/ephy-history-item.c b/embed/ephy-history-item.c
index 83703943c..f5089b294 100644
--- a/embed/ephy-history-item.c
+++ b/embed/ephy-history-item.c
@@ -18,6 +18,8 @@
*
*/
+#include "config.h"
+
#include "ephy-history-item.h"
GType
@@ -41,14 +43,14 @@ ephy_history_item_get_type (void)
return type;
}
-const char*
+char*
ephy_history_item_get_url (EphyHistoryItem *item)
{
EphyHistoryItemIface *iface = EPHY_HISTORY_ITEM_GET_IFACE (item);
return iface->get_url (item);
}
-const char*
+char*
ephy_history_item_get_title (EphyHistoryItem *item)
{
EphyHistoryItemIface *iface = EPHY_HISTORY_ITEM_GET_IFACE (item);