summaryrefslogtreecommitdiffstats
path: root/src/Applet/CCApplet.cpp
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2010-05-03 16:40:27 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2010-05-03 16:40:27 +0200
commit1270e9dc13385eb07bd420c7736ed37d6ed8a02b (patch)
tree144621437d5bde90b71bd03f1be2e32553c33a77 /src/Applet/CCApplet.cpp
parenta345b357a14f7e5ad259160f69d9c2129f2c4e01 (diff)
downloadabrt-1270e9dc13385eb07bd420c7736ed37d6ed8a02b.tar.gz
abrt-1270e9dc13385eb07bd420c7736ed37d6ed8a02b.tar.xz
abrt-1270e9dc13385eb07bd420c7736ed37d6ed8a02b.zip
updated icons rhbz#587698
- thanks to Lapo Calamandrei for the icons
Diffstat (limited to 'src/Applet/CCApplet.cpp')
-rw-r--r--src/Applet/CCApplet.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Applet/CCApplet.cpp b/src/Applet/CCApplet.cpp
index d890e902..efbed8fd 100644
--- a/src/Applet/CCApplet.cpp
+++ b/src/Applet/CCApplet.cpp
@@ -83,6 +83,7 @@ static GtkWidget *create_about_dialog()
NULL};
const char *artists[] = {"Patrick Connelly <pcon@fedoraproject.org>",
+ "Lapo Calamandrei"
NULL};
const char *comments = _("Notification area applet to notify user about "
@@ -141,11 +142,12 @@ CApplet::CApplet(const char* app_name)
/* - animation - */
if (m_bIconsLoaded == true)
{
+ //FIXME: animation is disabled for now
m_pStatusIcon = gtk_status_icon_new_from_pixbuf(icon_stages_buff[ICON_DEFAULT]);
}
else
{
- m_pStatusIcon = gtk_status_icon_new_from_stock(GTK_STOCK_DIALOG_WARNING);
+ m_pStatusIcon = gtk_status_icon_new_from_icon_name("abrt");
}
notify_init(app_name);
@@ -417,6 +419,8 @@ void CApplet::stop_animate_icon()
bool CApplet::load_icons()
{
+ //FIXME: just a tmp workaround
+ return false;
int stage;
for (stage = ICON_DEFAULT; stage < ICON_STAGE_LAST; stage++)
{