diff options
author | Stefano Karapetsas <[email protected]> | 2013-10-08 02:15:47 -0700 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-10-08 02:15:47 -0700 |
commit | 84ae373c1c412eb260fcfdaf57be7ddf4942d310 (patch) | |
tree | 89f123a23715430462a055868061ee8ed42fb340 /src/prettytable.h | |
parent | 82314dfe634a141792a4b274bebb63901730bf98 (diff) | |
parent | 01999fa43ecc9a5a1432cbbee0e69925e1d8c1fb (diff) | |
download | mate-system-monitor-84ae373c1c412eb260fcfdaf57be7ddf4942d310.tar.bz2 mate-system-monitor-84ae373c1c412eb260fcfdaf57be7ddf4942d310.tar.xz |
Merge pull request #24 from infirit/master
back to libwnck
Diffstat (limited to 'src/prettytable.h')
-rw-r--r-- | src/prettytable.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/prettytable.h b/src/prettytable.h index bfb45f5..7884cdd 100644 --- a/src/prettytable.h +++ b/src/prettytable.h @@ -12,7 +12,8 @@ #include <string> extern "C" { -#include <libmatewnck/libmatewnck.h> +#define WNCK_I_KNOW_THIS_IS_UNSTABLE +#include <libwnck/libwnck.h> } #include "iconthemewrapper.h" @@ -33,8 +34,8 @@ class PrettyTable private: - static void on_application_opened(MatewnckScreen* screen, MatewnckApplication* app, gpointer data); - static void on_application_closed(MatewnckScreen* screen, MatewnckApplication* app, gpointer data); + static void on_application_opened(WnckScreen* screen, WnckApplication* app, gpointer data); + static void on_application_closed(WnckScreen* screen, WnckApplication* app, gpointer data); void register_application(pid_t pid, Glib::RefPtr<Gdk::Pixbuf> icon); void unregister_application(pid_t pid); @@ -42,7 +43,7 @@ private: Glib::RefPtr<Gdk::Pixbuf> get_icon_from_theme(const ProcInfo &); Glib::RefPtr<Gdk::Pixbuf> get_icon_from_default(const ProcInfo &); - Glib::RefPtr<Gdk::Pixbuf> get_icon_from_matewnck(const ProcInfo &); + Glib::RefPtr<Gdk::Pixbuf> get_icon_from_wnck(const ProcInfo &); Glib::RefPtr<Gdk::Pixbuf> get_icon_from_name(const ProcInfo &); Glib::RefPtr<Gdk::Pixbuf> get_icon_for_kernel(const ProcInfo &); Glib::RefPtr<Gdk::Pixbuf> get_icon_dummy(const ProcInfo &); |