summaryrefslogtreecommitdiffstats
path: root/src/tab-chrome.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tab-chrome.h')
-rw-r--r--src/tab-chrome.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tab-chrome.h b/src/tab-chrome.h
index cda67ad..20e086c 100644
--- a/src/tab-chrome.h
+++ b/src/tab-chrome.h
@@ -19,13 +19,15 @@
* along with Marquee. If not, see <http://www.gnu.org/licenses/>.
*/
+typedef struct MqTabChrome MqTabChrome;
+
#ifndef MQ_TAB_CHROME_H
#define MQ_TAB_CHROME_H
#include <gtk/gtk.h>
#include <webkit2/webkit2.h>
-typedef struct {
+struct MqTabChrome {
GtkWidget *container;
GtkWidget *back_forward_box;
GtkWidget *back_button;
@@ -40,7 +42,7 @@ typedef struct {
GtkWidget *back_forward_popover;
gint back_items;
GtkToolItem *menu_button;
-} MqTabChrome;
+};
MqTabChrome *
mq_tab_chrome_new(gchar *uri);