summaryrefslogtreecommitdiff
path: root/stc/stc.c
diff options
context:
space:
mode:
authorDavid Zeuthen <davidz@redhat.com>2010-10-07 10:36:15 -0400
committerDavid Zeuthen <davidz@redhat.com>2010-10-07 10:36:15 -0400
commit9e3ec1644c897010e4660370b4e68d781fb92d5d (patch)
tree39dd0e98ef094c266003d958e1628ab04fcf3394 /stc/stc.c
parenta459e7954bb480d62fa805010c6946c4b059a2ea (diff)
Rename NickName to Comment
Signed-off-by: David Zeuthen <davidz@redhat.com>
Diffstat (limited to 'stc/stc.c')
-rw-r--r--stc/stc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/stc/stc.c b/stc/stc.c
index 4c2ce0d..7d975c4 100644
--- a/stc/stc.c
+++ b/stc/stc.c
@@ -283,7 +283,7 @@ handle_command_list (gint *argc,
StcItem *item = STC_ITEM (l->data);
StcItemType type;
const gchar *id;
- const gchar *nick_name;
+ const gchar *comment;
const gchar *target;
const gchar *const *options;
const gchar *const *deps;
@@ -293,7 +293,7 @@ handle_command_list (gint *argc,
type = stc_item_get_item_type (item);
id = stc_item_get_id (item);
- nick_name = stc_item_get_nick_name (item);
+ comment = stc_item_get_comment (item);
target = stc_item_get_target (item);
g_print ("%s%s%s:%s\n",
@@ -316,13 +316,13 @@ handle_command_list (gint *argc,
target,
_color_get (_COLOR_RESET));
- if (nick_name != NULL)
+ if (comment != NULL)
{
- g_print (" %sNick Name:%s %s%s%s\n",
+ g_print (" %sComment:%s %s%s%s\n",
_color_get (_COLOR_FG_WHITE),
_color_get (_COLOR_RESET),
_color_get (_COLOR_FG_GREEN),
- nick_name,
+ comment,
_color_get (_COLOR_RESET));
}