summaryrefslogtreecommitdiffstats
path: root/src/tab-body.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tab-body.h')
-rw-r--r--src/tab-body.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tab-body.h b/src/tab-body.h
index 60d0975..e38f97c 100644
--- a/src/tab-body.h
+++ b/src/tab-body.h
@@ -19,16 +19,18 @@
* along with Marquee. If not, see <http://www.gnu.org/licenses/>.
*/
+typedef struct MqTabBody MqTabBody;
+
#ifndef MQ_TAB_BODY_H
#define MQ_TAB_BODY_H
#include <gtk/gtk.h>
#include <webkit2/webkit2.h>
-typedef struct {
+struct MqTabBody {
GtkWidget *container;
WebKitWebView *web_view;
-} MqTabBody;
+};
MqTabBody *
mq_tab_body_new(gchar *uri);