1
1
* gaction.c (gmc_unable_to_execute_dlg): really ugly hack to set label.
Этот коммит содержится в:
Jonathan Blandford 1999-04-15 19:24:29 +00:00
родитель 16bf5a809f
Коммит 4d2f528b3e
2 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@ -1,3 +1,7 @@
1999-04-15 <jrb@redhat.com>
* gaction.c (gmc_unable_to_execute_dlg): really ugly hack to set label.
1999-04-13 Miguel de Icaza <miguel@nuclecu.unam.mx> 1999-04-13 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gtkdtree.c (gtk_dtree_destroy): Memory leak fix: destroy * gtkdtree.c (gtk_dtree_destroy): Memory leak fix: destroy

Просмотреть файл

@ -25,6 +25,7 @@ static void
gmc_unable_to_execute_dlg (gchar *fname, const gchar *command, gchar *action, const gchar *mime) gmc_unable_to_execute_dlg (gchar *fname, const gchar *command, gchar *action, const gchar *mime)
{ {
GtkWidget *msg_dialog = NULL; GtkWidget *msg_dialog = NULL;
GtkWidget *hack_widget;
gchar *msg; gchar *msg;
gchar *fix = NULL; gchar *fix = NULL;
if (!strcmp (action, "x-gnome-app-info")) { if (!strcmp (action, "x-gnome-app-info")) {
@ -63,11 +64,12 @@ gmc_unable_to_execute_dlg (gchar *fname, const gchar *command, gchar *action, co
GNOME_STOCK_BUTTON_OK, GNOME_STOCK_BUTTON_OK,
NULL); NULL);
/* Kids, don't try this at home */ /* Kids, don't try this at home */
/* this is pretty evil... <-: /* this is pretty evil... <-: */
hack_widget = GNOME_DIALOG (msg_dialog)->vbox; hack_widget = GNOME_DIALOG (msg_dialog)->vbox;
hack_widget = GTK_WIDGET (GTK_BOX (hack_widget)->children->data); hack_widget = ((GtkBoxChild *) GTK_BOX (hack_widget)->children->data)->widget;
hack_widget = ((GtkBoxChild *) GTK_BOX (hack_widget)->children->next->data)->widget;
gtk_label_set_line_wrap (GTK_LABEL (hack_widget), TRUE); gtk_label_set_line_wrap (GTK_LABEL (hack_widget), TRUE);
*/
gnome_dialog_run_and_close (GNOME_DIALOG (msg_dialog)); gnome_dialog_run_and_close (GNOME_DIALOG (msg_dialog));
g_free (msg); g_free (msg);