summaryrefslogtreecommitdiffstats
path: root/src/Applet/CCApplet.cpp
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-07-22 13:40:37 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-07-22 13:40:37 +0200
commit486a29b4c7726827031a0696a4253a79bca3a39f (patch)
treec22141ea98f72e388c8a864074fb5291c7087254 /src/Applet/CCApplet.cpp
parent2d14e33381aae2d157736842680eb8b689c5532c (diff)
downloadabrt-486a29b4c7726827031a0696a4253a79bca3a39f.tar.gz
abrt-486a29b4c7726827031a0696a4253a79bca3a39f.tar.xz
abrt-486a29b4c7726827031a0696a4253a79bca3a39f.zip
Applet: more fixes to work if configure was run with non-default prefix
Diffstat (limited to 'src/Applet/CCApplet.cpp')
-rw-r--r--src/Applet/CCApplet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Applet/CCApplet.cpp b/src/Applet/CCApplet.cpp
index 13c734ea..19887488 100644
--- a/src/Applet/CCApplet.cpp
+++ b/src/Applet/CCApplet.cpp
@@ -98,8 +98,8 @@ void CApplet::OnAppletActivate_CB(GtkStatusIcon *status_icon,gpointer user_data)
{
CApplet *applet = (CApplet *)user_data;
FILE *gui = NULL;
- //FIXME - use fork+exec and absolute paths?
- gui = popen("/usr/bin/abrt-gui","r");
+ //FIXME - use fork+exec and absolute paths? or dbus?
+ gui = popen((std::string(BIN_DIR) + "/abrt-gui").c_str(),"r");
gtk_status_icon_set_visible(applet->m_pStatusIcon,false);
}