aboutsummaryrefslogtreecommitdiff
path: root/hardinfo2
diff options
context:
space:
mode:
Diffstat (limited to 'hardinfo2')
-rw-r--r--hardinfo2/arch/linux/x86/processor.h10
-rw-r--r--hardinfo2/callbacks.c6
-rw-r--r--hardinfo2/menu.c6
3 files changed, 14 insertions, 8 deletions
diff --git a/hardinfo2/arch/linux/x86/processor.h b/hardinfo2/arch/linux/x86/processor.h
index 4b2b3447..f6c66971 100644
--- a/hardinfo2/arch/linux/x86/processor.h
+++ b/hardinfo2/arch/linux/x86/processor.h
@@ -306,10 +306,12 @@ static gchar *processor_get_detailed_info(Processor * processor)
#else
"Big Endian",
#endif
- processor->bug_fdiv,
- processor->bug_hlt,
- processor->bug_f00f,
- processor->bug_coma, processor->has_fpu, tmp);
+ processor->bug_fdiv ? "Yes" : "No",
+ processor->bug_hlt ? "Yes" : "No",
+ processor->bug_f00f ? "Yes" : "No",
+ processor->bug_coma ? "Yes" : "No",
+ processor->has_fpu ? "Yes" : "No",
+ tmp);
g_free(tmp);
return ret;
diff --git a/hardinfo2/callbacks.c b/hardinfo2/callbacks.c
index 14a133a2..0b312717 100644
--- a/hardinfo2/callbacks.c
+++ b/hardinfo2/callbacks.c
@@ -85,13 +85,17 @@ void cb_about()
{
GtkWidget *about;
const gchar *authors[] = {
+ "Author:",
"Leandro A. F. Pereira",
+ "",
+ "Contributors:",
"Agney Lopes Roth Ferraz",
"SCSI support by Pascal F. Martin",
+ "",
+ "Based on work by:",
"MD5 implementation by Colin Plumb",
"SHA1 implementation by Steve Raid",
"Blowfish implementation by Paul Kocher",
- "",
"Some code partly based on x86cpucaps by Osamu Kayasono",
"Vendor list based on GtkSysInfo by Pissens Sebastien",
NULL
diff --git a/hardinfo2/menu.c b/hardinfo2/menu.c
index 1632c260..63b5a2b2 100644
--- a/hardinfo2/menu.c
+++ b/hardinfo2/menu.c
@@ -51,17 +51,17 @@ static GtkActionEntry entries[] =
G_CALLBACK(cb_refresh) },
{ "HomePageAction", HI_STOCK_INTERNET,
- "_Open HardInfo Web Site\342\200\246", NULL,
+ "_Open HardInfo Web Site", NULL,
NULL,
G_CALLBACK(cb_open_web_page) },
{ "ReportBugAction", HI_STOCK_INTERNET,
- "_Report bug\342\200\246", NULL,
+ "_Report bug", NULL,
NULL,
G_CALLBACK(cb_report_bug) },
{ "AboutAction", GTK_STOCK_ABOUT,
- "_About\342\200\246", NULL,
+ "_About", NULL,
"Displays program version information",
G_CALLBACK(cb_about) },