# HG changeset patch # User zas_ # Date 1228081957 0 # Node ID 48d62a7e3c33c8970b23ba552f724605ee16ca7b # Parent bb02d0e2a5731ad93badf21cacab44b03ba1a459 metadata_set_keywords() -> metadata_set(). Use gboolean type for boolean parameters. diff -r bb02d0e2a573 -r 48d62a7e3c33 src/bar_info.c --- a/src/bar_info.c Sun Nov 30 21:43:01 2008 +0000 +++ b/src/bar_info.c Sun Nov 30 21:52:37 2008 +0000 @@ -652,7 +652,7 @@ bar_info_write(bd); } -static void bar_info_set_selection(BarInfoData *bd, gint set_keywords, gint set_comment, gint add) +static void bar_info_set_selection(BarInfoData *bd, gboolean set_keywords, gboolean set_comment, gboolean append) { GList *keywords = NULL; GList *list = NULL; @@ -671,7 +671,7 @@ comment = comment_pull(bd->comment_view); } - if (add && !keywords && !comment) return; + if (append && !keywords && !comment) return; list = bd->list_func(bd->list_data); work = list; @@ -680,7 +680,7 @@ FileData *fd = work->data; work = work->next; - metadata_set_keywords(fd, keywords, comment, add); + metadata_set(fd, keywords, comment, append); } filelist_free(list); diff -r bb02d0e2a573 -r 48d62a7e3c33 src/metadata.c --- a/src/metadata.c Sun Nov 30 21:43:01 2008 +0000 +++ b/src/metadata.c Sun Nov 30 21:52:37 2008 +0000 @@ -455,7 +455,7 @@ return TRUE; } -void metadata_set_keywords(FileData *fd, GList *keywords_to_use, gchar *comment_to_use, gint add) +void metadata_set(FileData *fd, GList *keywords_to_use, gchar *comment_to_use, gboolean append) { gchar *comment = NULL; GList *keywords = NULL; @@ -465,7 +465,7 @@ if (comment_to_use) { - if (add && comment && *comment) + if (append && comment && *comment) { gchar *tmp = comment; @@ -481,7 +481,7 @@ if (keywords_to_use) { - if (add && keywords && g_list_length(keywords) > 0) + if (append && keywords && g_list_length(keywords) > 0) { GList *work; diff -r bb02d0e2a573 -r 48d62a7e3c33 src/metadata.h --- a/src/metadata.h Sun Nov 30 21:43:01 2008 +0000 +++ b/src/metadata.h Sun Nov 30 21:52:37 2008 +0000 @@ -18,7 +18,7 @@ gint metadata_read(FileData *fd, GList **keywords, gchar **comment); -void metadata_set_keywords(FileData *fd, GList *keywords_to_use, gchar *comment_to_use, gint add); +void metadata_set(FileData *fd, GList *keywords_to_use, gchar *comment_to_use, gboolean append); gint keyword_list_find(GList *list, const gchar *keyword); GList *string_to_keywords_list(const gchar *text);