Changeset 3410 for trunk/jons-gtk2-gui

Show
Ignore:
Timestamp:
03/24/03 04:03:32 (6 years ago)
Author:
bostjanlah
Message:

status_bar_new and system_status_new no longer take parameters

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jons-gtk2-gui/src/main_window.cpp

    r3390 r3410  
    5151 
    5252GtkWidget *contact_list_new(); 
    53 GtkWidget *status_bar_new(gint border_width); 
    54 GtkWidget *system_status_new(gint border_width); 
     53GtkWidget *status_bar_new(); 
     54GtkWidget *system_status_new(); 
    5555GObject *licq_init_tray(); 
    5656 
     
    143143 
    144144    /* Add the system status bar and pack it into the vbox */ 
    145     gtk_box_pack_start(GTK_BOX(vertical_box), system_status_new(2), 
     145    gtk_box_pack_start(GTK_BOX(vertical_box), system_status_new(), 
    146146            FALSE, FALSE, 0); 
    147147 
    148148    /* Now add the mode status bar in */ 
    149     gtk_box_pack_start(GTK_BOX(vertical_box), status_bar_new(2),  
     149    gtk_box_pack_start(GTK_BOX(vertical_box), status_bar_new(),  
    150150            FALSE, FALSE, 0); 
    151151