summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2010-07-26 16:00:40 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2010-07-26 16:00:40 +0200
commitdcd9fa6b278f281986925b0d2eb4880a304d0e5e (patch)
tree2c84af94ed474e9d81273cd098ccf16541730975 /src
parent877485709ce1431612cf116eee13d223882b3d48 (diff)
downloadabrt-dcd9fa6b278f281986925b0d2eb4880a304d0e5e.tar.gz
abrt-dcd9fa6b278f281986925b0d2eb4880a304d0e5e.tar.xz
abrt-dcd9fa6b278f281986925b0d2eb4880a304d0e5e.zip
build fixes for gcc 4.5
Diffstat (limited to 'src')
-rw-r--r--src/Applet/CCApplet.cpp2
-rw-r--r--src/Applet/Makefile.am4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Applet/CCApplet.cpp b/src/Applet/CCApplet.cpp
index 8596f4ca..02d911d9 100644
--- a/src/Applet/CCApplet.cpp
+++ b/src/Applet/CCApplet.cpp
@@ -361,7 +361,7 @@ void CApplet::Disable(const char *reason)
if (pixbuf)
{
gray_scaled = gdk_pixbuf_copy(pixbuf);
- gdk_pixbuf_saturate_and_pixelate(pixbuf, gray_scaled, 0.0, NULL);
+ gdk_pixbuf_saturate_and_pixelate(pixbuf, gray_scaled, 0.0, false);
gtk_status_icon_set_from_pixbuf(m_pStatusIcon, gray_scaled);
//do we need to free pixbufs nere?
}
diff --git a/src/Applet/Makefile.am b/src/Applet/Makefile.am
index 6abef3bb..b96104a0 100644
--- a/src/Applet/Makefile.am
+++ b/src/Applet/Makefile.am
@@ -26,10 +26,10 @@ abrt_applet_LDADD = \
-lglib-2.0 \
-lgthread-2.0 \
$(DBUS_LIBS) \
- $(LIBNOTIFY_LIBS)
+ $(LIBNOTIFY_LIBS) \
+ $(GTK_LIBS)
# ../../lib/Utils/libABRTdUtils.la
# $(DL_LIBS)
-# $(GTK_LIBS)
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@