diff options
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 |