Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 351854
Collapse All | Expand All

(-)deprectated/utils/gtk/lqt_gtk.c (-2 / +2 lines)
Lines 332-341 lqtgtk_create_parameter_widget(lqt_param Link Here
332
      ret->label = gtk_label_new(TR_DOM(info->real_name));
332
      ret->label = gtk_label_new(TR_DOM(info->real_name));
333
      gtk_misc_set_alignment(GTK_MISC(ret->label), 0.0, 0.5);
333
      gtk_misc_set_alignment(GTK_MISC(ret->label), 0.0, 0.5);
334
334
335
      ret->widget = gtk_combo_box_new_text();
335
      ret->widget = gtk_combo_box_text_new();
336
      for(i = 0; i < info->num_stringlist_options; i++)
336
      for(i = 0; i < info->num_stringlist_options; i++)
337
        {
337
        {
338
	gtk_combo_box_append_text (GTK_COMBO_BOX (ret->widget), 
338
	gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (ret->widget), 
339
				   info->stringlist_options[i]);
339
				   info->stringlist_options[i]);
340
        }
340
        }
341
      g_signal_connect(GTK_COMBO_BOX (ret->widget),
341
      g_signal_connect(GTK_COMBO_BOX (ret->widget),

Return to bug 351854