aboutsummaryrefslogtreecommitdiffstats
path: root/ctimeline.h
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2021-05-19 08:11:29 +0000
committerJoursoir <chat@joursoir.net>2021-05-19 08:11:29 +0000
commitf93b7523121ef42f5133001ec7ce2347e3bbfecf (patch)
tree199f00c722331a3856e940929a97c338d0d961ac /ctimeline.h
parentf2dd637e6ea2ba2ea0c4f48a5f7def23ac38173b (diff)
downloadctimeline-f93b7523121ef42f5133001ec7ce2347e3bbfecf.tar.gz
ctimeline-f93b7523121ef42f5133001ec7ce2347e3bbfecf.tar.bz2
ctimeline-f93b7523121ef42f5133001ec7ce2347e3bbfecf.zip
ctimeline: change (char *) to (string *) for context information
Diffstat (limited to 'ctimeline.h')
-rw-r--r--ctimeline.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ctimeline.h b/ctimeline.h
index edd5062..36564dc 100644
--- a/ctimeline.h
+++ b/ctimeline.h
@@ -20,11 +20,11 @@ struct ctimeline_branch_list {
};
struct ctimeline_context {
- char *head_title;
- char *css;
+ string *head_title;
+ string *css;
// char *favicon;
- char *header_title;
- char *header_desc;
+ string *header_title;
+ string *header_desc;
struct ctimeline_branch_list branches;
struct ctimeline_branch *cur_branch;