summaryrefslogtreecommitdiffstats
path: root/src/Applet/CCApplet.cpp
diff options
context:
space:
mode:
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 13c734e..1988748 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);
}