diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2010-04-23 12:15:55 -0400 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2010-04-23 12:15:55 -0400 |
commit | 9340e27725db390039fbda679af001542891ce19 (patch) | |
tree | e181438f0937837403d88875075c2ffa5846bdff /src/history.h | |
parent | 1b40d6342a64924426642cc742849a8172e25fb2 (diff) |
Add const qualifier to a_History_get_url()
Diffstat (limited to 'src/history.h')
-rw-r--r-- | src/history.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/history.h b/src/history.h index 3b8fe3d3..beb0cdf9 100644 --- a/src/history.h +++ b/src/history.h @@ -11,7 +11,7 @@ extern "C" { int a_History_add_url(DilloUrl *url); void a_History_set_title_by_url(const DilloUrl *url, const char *title); -DilloUrl *a_History_get_url(int idx); +const 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(const DilloUrl *url, int force); void a_History_freeall(void); |