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

(-)fbpanel-2.2/image.c (-1 / +1 lines)
Lines 77-83 Link Here
77
    gtk_widget_show(img->mainw);
77
    gtk_widget_show(img->mainw);
78
    gtk_signal_connect(GTK_OBJECT(img->mainw), "expose_event",
78
    gtk_signal_connect(GTK_OBJECT(img->mainw), "expose_event",
79
          GTK_SIGNAL_FUNC(gtk_widget_queue_draw), NULL);
79
          GTK_SIGNAL_FUNC(gtk_widget_queue_draw), NULL);
80
    gp = gdk_pixbuf_new_from_file(fname);
80
    gp = gdk_pixbuf_new_from_file(fname,NULL);
81
    if (!gp) {
81
    if (!gp) {
82
        g_warning("image: can't read image %s\n", fname);
82
        g_warning("image: can't read image %s\n", fname);
83
        wid = gtk_label_new("?");
83
        wid = gtk_label_new("?");
(-)fbpanel-2.2/launchbar.c (-1 / +1 lines)
Lines 107-113 Link Here
107
107
108
108
109
    // button
109
    // button
110
    gp = gdk_pixbuf_new_from_file(fname);
110
    gp = gdk_pixbuf_new_from_file(fname,NULL);
111
    if (!gp) {
111
    if (!gp) {
112
        g_warning("launchbar: can't read image %s\n", fname);
112
        g_warning("launchbar: can't read image %s\n", fname);
113
        button = gtk_button_new_with_label("?");
113
        button = gtk_button_new_with_label("?");
(-)fbpanel-2.2/Makefile (-2 / +2 lines)
Lines 1-6 Link Here
1
CC = gcc
1
CC = gcc
2
LIBS = `gdk-pixbuf-config --libs`  `gtk-config --libs` -lXpm -lXmu
2
LIBS =  $(shell pkg-config gtk+-2.0 --libs) -L/usr/X11R6/lib -lXpm -lXmu 
3
INCS = `gdk-pixbuf-config --cflags` `gtk-config --cflags`
3
INCS =  $(shell pkg-config gtk+-2.0 --cflags)
4
4
5
SRC = panel.c misc.c plugin.c separator.c image.c launchbar.c \
5
SRC = panel.c misc.c plugin.c separator.c image.c launchbar.c \
6
	dclock.c wincmd.c test.c taskbar.c gtkhtbar.c gtkvtbar.c \
6
	dclock.c wincmd.c test.c taskbar.c gtkhtbar.c gtkvtbar.c \
(-)fbpanel-2.2/taskbar.c (-2 / +3 lines)
Lines 292-298 Link Here
292
        } else {
292
        } else {
293
            if (tk->focused) {
293
            if (tk->focused) {
294
                //tk->iconified = 1;
294
                //tk->iconified = 1;
295
                XIconifyWindow (GDK_DISPLAY(), tk->win, gdk_screen);
295
                XIconifyWindow (GDK_DISPLAY(), tk->win, 
296
                        gdk_screen_get_number(gdk_screen_get_default()));
296
                DBG("iconify %x\n", tk->win);
297
                DBG("iconify %x\n", tk->win);
297
            } else {
298
            } else {
298
                XRaiseWindow (GDK_DISPLAY(), tk->win);
299
                XRaiseWindow (GDK_DISPLAY(), tk->win);
Lines 848-854 Link Here
848
        }
849
        }
849
    }
850
    }
850
    //TODO
851
    //TODO
851
    gp = gdk_pixbuf_new_from_file(fname);
852
    gp = gdk_pixbuf_new_from_file(fname,NULL);
852
    if (!gp) {
853
    if (!gp) {
853
        ERR( "taskbar: can't read pixmap %s\n", fname);
854
        ERR( "taskbar: can't read pixmap %s\n", fname);
854
        g_free(fname);
855
        g_free(fname);
(-)fbpanel-2.2/wincmd.c (-2 / +3 lines)
Lines 108-114 Link Here
108
            continue;
108
            continue;
109
        }
109
        }
110
        if (action)
110
        if (action)
111
            XIconifyWindow(GDK_DISPLAY(), win[i], gdk_screen);
111
            XIconifyWindow(GDK_DISPLAY(), win[i], 
112
                    gdk_screen_get_number(gdk_screen_get_default()));
112
        else
113
        else
113
            XMapWindow (GDK_DISPLAY(), win[i]);
114
            XMapWindow (GDK_DISPLAY(), win[i]);
114
        DBG("ok\n");
115
        DBG("ok\n");
Lines 199-205 Link Here
199
            goto error;
200
            goto error;
200
        }
201
        }
201
    }
202
    }
202
    gp = gdk_pixbuf_new_from_file(fname);
203
    gp = gdk_pixbuf_new_from_file(fname,NULL);
203
    if (!gp) {
204
    if (!gp) {
204
        g_warning("wincmd: can't read image %s\n", fname);
205
        g_warning("wincmd: can't read image %s\n", fname);
205
        button = gtk_button_new_with_label("wc");
206
        button = gtk_button_new_with_label("wc");

Return to bug 31983