Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 308791 | Differences between
and this patch

Collapse All | Expand All

(-)emerald-0.8.4/libengine/themer.c (-2 / +2 lines)
Lines 461-467 Link Here
461
}
461
}
462
gdouble get_float(SettingItem * item)
462
gdouble get_float(SettingItem * item)
463
{
463
{
464
    if(!strcmp(GTK_OBJECT_TYPE_NAME(item->widget),"GtkSpinButton")) {
464
    if(!strcmp(G_OBJECT_TYPE_NAME(item->widget),"GtkSpinButton")) {
465
         return gtk_spin_button_get_value((GtkSpinButton *)item->widget);
465
         return gtk_spin_button_get_value((GtkSpinButton *)item->widget);
466
    }
466
    }
467
    else {
467
    else {
Lines 647-653 Link Here
647
}
647
}
648
void set_float(SettingItem * item, gdouble f)
648
void set_float(SettingItem * item, gdouble f)
649
{
649
{
650
    if(!strcmp(GTK_OBJECT_TYPE_NAME(item->widget),"GtkSpinButton")) {
650
    if(!strcmp(G_OBJECT_TYPE_NAME(item->widget),"GtkSpinButton")) {
651
         gtk_spin_button_set_value((GtkSpinButton *)item->widget, f);
651
         gtk_spin_button_set_value((GtkSpinButton *)item->widget, f);
652
    } 
652
    } 
653
    else {
653
    else {

Return to bug 308791