diff options
-rw-r--r-- | src/tab.c | 6 | ||||
-rw-r--r-- | src/tab.h | 3 |
2 files changed, 9 insertions, 0 deletions
@@ -566,6 +566,12 @@ mq_tab_new_root(MqWindow *window) return tab; } +MqApplication * +mq_tab_get_application(MqTab *tab) +{ + return tab->application; +} + void mq_tab_update_position(MqTab *tab, guint position) { @@ -64,6 +64,9 @@ mq_tab_new_relative(const gchar *uri, MqTab *source); MqTab * mq_tab_new_root(MqWindow *window); +MqApplication * +mq_tab_get_application(MqTab *tab); + void mq_tab_update_position(MqTab *tab, guint position); |