summaryrefslogtreecommitdiff
path: root/src/history.h
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2007-10-14 04:21:53 +0200
committerjcid <devnull@localhost>2007-10-14 04:21:53 +0200
commit9ab3912ac73bfeca7da77aa9463d758ee01659d2 (patch)
treecc5cd0af0f7839eb0f33ac6b5a4cc62546795ab3 /src/history.h
parenta7aa9b432ee5cd92b6127608d1355b3861aedbf7 (diff)
Added some "const" qualifiers.
Diffstat (limited to 'src/history.h')
-rw-r--r--src/history.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/history.h b/src/history.h
index a6f9f13f..da520c87 100644
--- a/src/history.h
+++ b/src/history.h
@@ -13,7 +13,7 @@ int a_History_add_url(DilloUrl *url);
int a_History_set_title(int idx, const char *title);
DilloUrl *a_History_get_url(int idx);
const char *a_History_get_title(int idx, int force);
-const char *a_History_get_title_by_url(DilloUrl *url, int force);
+const char *a_History_get_title_by_url(const DilloUrl *url, int force);
void a_History_free(void);