Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kconfig: gconf: show GTK version in About dialog

Likewise xconfig, it is useful to display the GTK version in the About
dialog.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Tested-by: Randy Dunlap <rdunlap@infradead.org>

+5 -1
+5 -1
scripts/kconfig/gconf.c
··· 525 525 dialog = gtk_message_dialog_new(GTK_WINDOW(main_wnd), 526 526 GTK_DIALOG_DESTROY_WITH_PARENT, 527 527 GTK_MESSAGE_INFO, 528 - GTK_BUTTONS_CLOSE, "%s", about_text); 528 + GTK_BUTTONS_CLOSE, "%s\nGTK version: %d.%d.%d", 529 + about_text, 530 + gtk_get_major_version(), 531 + gtk_get_minor_version(), 532 + gtk_get_micro_version()); 529 533 gtk_dialog_run(GTK_DIALOG(dialog)); 530 534 gtk_widget_destroy(dialog); 531 535 }