Change the icon name for about dialog
authorJeffrey Chen
Sat, 27 Dec 1986 20:35:47 -0800
changeset 2 fbe6b97cf921
parent 1 f6f190588ccf
child 3 299ba95cf92a
Change the icon name for about dialog
cmdassist/src/about.c
--- a/cmdassist/src/about.c	Sat Dec 27 18:00:33 1986 -0800
+++ b/cmdassist/src/about.c	Sat Dec 27 20:35:47 1986 -0800
@@ -60,8 +60,8 @@
   const gchar *comments = _("Solaris Command Assistant");
   
   const gchar *license =
-    "This program is released under CDDL version 1.0 \n"
-    "http://opensolaris.org/os/licensing/opensolaris_license/ \n";
+    "This program is released under: \n"
+    "CDDL version 1.0 & gSOAP Public License \n";
 
   const gchar *website = "http://opensolaris.org/os/project/commandassist/";
   const gchar *website_label = "Web Site";
@@ -69,14 +69,13 @@
   g_return_if_fail (GTK_IS_WIDGET (parent));
   
   gtk_show_about_dialog (GTK_IS_WINDOW (parent) ? GTK_WINDOW (parent) : NULL,
-  			 "name", _("Dictionary"),
+  			 "name", _("Command Assistant"),
   			 "version", "1.0",
   			 "copyright", copyright,
   			 "comments", comments,
   			 "authors", authors,
   			 "documenters", documenters,
   			 "translator-credits", translator_credits,
-  			 "logo-icon-name", "accessories-dictionary",
   			 "license", license,
 			 "website", website,
 			 "website-label", website_label,