diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-06-09 12:13:59 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-06-09 12:13:59 +0100 |
commit | 664a45a398020f82f1e8f8e22f1627392a06a0c2 (patch) | |
tree | 43bd6bcccc4f5b63937ffcaa96c38b04bbd07623 /src/transport-bar.h | |
parent | 744083d4483291a87f4f348d6937257d8887cfb1 (diff) | |
download | ayatana-indicator-sound-664a45a398020f82f1e8f8e22f1627392a06a0c2.tar.gz ayatana-indicator-sound-664a45a398020f82f1e8f8e22f1627392a06a0c2.tar.bz2 ayatana-indicator-sound-664a45a398020f82f1e8f8e22f1627392a06a0c2.zip |
buttons added - events being received
Diffstat (limited to 'src/transport-bar.h')
-rw-r--r-- | src/transport-bar.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/transport-bar.h b/src/transport-bar.h index e931298..e90e39c 100644 --- a/src/transport-bar.h +++ b/src/transport-bar.h @@ -19,8 +19,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #ifndef __TRANSPORT_BAR_H__ #define __TRANSPORT_BAR_H__ -#include <glib.h> -#include <glib-object.h> +#include <gtk/gtkmenuitem.h> G_BEGIN_DECLS @@ -35,13 +34,15 @@ typedef struct _TransportBar TransportBar; typedef struct _TransportBarClass TransportBarClass; struct _TransportBarClass { + GtkMenuItemClass parent_class; }; struct _TransportBar { + GtkMenuItem parent; }; GType transport_bar_get_type (void); -TransportBar* transport_bar_new(); +GtkWidget* transport_bar_new(); G_END_DECLS |