aboutsummaryrefslogtreecommitdiff
path: root/src/about.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2011-01-17 02:23:38 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2011-01-17 02:23:38 +0000
commit1659717c7e8c18be01154b00cc20ef830ebf169b (patch)
treee11c5409735fea005ea89e8f89abfe2f16e622e4 /src/about.c
parent9f7138a0d75b5d30bf2daf12252bb19ec5b773ef (diff)
added build revision to the about dialog.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2796 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/about.c')
-rw-r--r--src/about.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/about.c b/src/about.c
index fc40081a..4721ea0e 100644
--- a/src/about.c
+++ b/src/about.c
@@ -1,6 +1,6 @@
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2010 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2011 Hiroyuki Yamamoto
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -104,7 +104,8 @@ static void about_create(void)
pixmap = stock_pixbuf_widget(window, STOCK_PIXMAP_SYLPHEED_LOGO);
gtk_box_pack_start(GTK_BOX(vbox), pixmap, FALSE, FALSE, 0);
- label = gtk_label_new("version "VERSION);
+ label = gtk_label_new("Version " VERSION
+ " (Build: " Xstr(BUILD_REVISION) ")");
gtk_label_set_selectable(GTK_LABEL(label), TRUE);
gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);