1
1

Go figure how this was missing now.

Этот коммит содержится в:
Miguel de Icaza 1998-12-14 04:23:33 +00:00
родитель cd7c27397e
Коммит 5e69e9af71
4 изменённых файлов: 21 добавлений и 6 удалений

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

@ -1,3 +1,7 @@
1998-12-13 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gscreen.c (panel_create_icon_display): Set white background.
1998-12-13 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gdnd.c (perform_action): Fixed a pair of incorrect braces.

8
gnome/gcorba.h Обычный файл
Просмотреть файл

@ -0,0 +1,8 @@
#ifndef __GCORBA_H
#define __GCORBA_H
extern CORBA_ORB orb;
void corba_register_server (void);
#endif

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

@ -476,11 +476,8 @@ create_container (Dlg_head *h, char *name, char *geometry)
*/
panel->widget.wdata = (widget_data) vbox;
container->panel = panel;
if (!containers){
containers = g_list_alloc ();
containers->data = container;
} else
containers = g_list_append (containers, container);
containers = g_list_append (containers, container);
if (!current_panel_ptr){
current_panel_ptr = container;

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

@ -1094,8 +1094,14 @@ static GtkWidget *
panel_create_icon_display (WPanel *panel)
{
GnomeIconList *ilist;
GtkStyle *style;
ilist = GNOME_ICON_LIST (gnome_icon_list_new (90, NULL, TRUE));
/* Set the background of the icon list to white */
style = gtk_style_copy (gtk_widget_get_style (GTK_WIDGET (ilist)));
style->bg [GTK_STATE_NORMAL] = style->bg [GTK_STATE_PRELIGHT];
gtk_widget_set_style (GTK_WIDGET (ilist), style);
gnome_icon_list_set_separators (ilist, " /-_.");
gnome_icon_list_set_row_spacing (ilist, 2);
gnome_icon_list_set_col_spacing (ilist, 2);