summaryrefslogtreecommitdiffstats
path: root/src/Applet
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-03-04 17:53:00 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2009-03-04 17:53:00 +0100
commit1029e2ba508a031e6a84a4cedbbc90b0b5847ac4 (patch)
tree2ced147b0e014b7e51e3d5e4b07be6201209c7d3 /src/Applet
parent4eb369b09de6045203133471536565018ce06ca9 (diff)
downloadabrt-1029e2ba508a031e6a84a4cedbbc90b0b5847ac4.tar.gz
abrt-1029e2ba508a031e6a84a4cedbbc90b0b5847ac4.tar.xz
abrt-1029e2ba508a031e6a84a4cedbbc90b0b5847ac4.zip
More renaming issues fixed..
Diffstat (limited to 'src/Applet')
-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 c2482fef..eb2fb0a2 100644
--- a/src/Applet/CCApplet.cpp
+++ b/src/Applet/CCApplet.cpp
@@ -97,13 +97,13 @@ void CApplet::OnAppletActivate_CB(GtkStatusIcon *status_icon,gpointer user_data)
dialog = gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_YES_NO,
- "CC has detected a crash.\nDo you want to open the crash analyzer and create a report?");
+ "ABRT has detected a crash.\nDo you want to open the crash analyzer and create a report?");
gint result = gtk_dialog_run(GTK_DIALOG(dialog));
switch (result)
{
case GTK_RESPONSE_YES:
//FIXME - use fork+exec and absolute paths?
- gui = popen("/usr/bin/cc-gui","r");
+ gui = popen("/usr/bin/abrt-gui","r");
gtk_status_icon_set_visible(applet->m_pStatusIcon,false);
break;
default: