Go figure how this was missing now.
Этот коммит содержится в:
родитель
cd7c27397e
Коммит
5e69e9af71
@ -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
Обычный файл
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);
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user