summaryrefslogtreecommitdiffstats
path: root/src/tab-page.h
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-11-01 22:00:04 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-11-01 22:00:04 (EDT)
commita7f829a8dcfe7da13a1f71c9898df5cccff48ec3 (patch)
treefba2314c175dd6ca2a044aa24bfbe685ffe51520 /src/tab-page.h
parent5d818edd2060d73767bf8088bfd256bc0baf5205 (diff)
downloadmarquee-a7f829a8dcfe7da13a1f71c9898df5cccff48ec3.zip
marquee-a7f829a8dcfe7da13a1f71c9898df5cccff48ec3.tar.gz
marquee-a7f829a8dcfe7da13a1f71c9898df5cccff48ec3.tar.bz2
MqTabPage: Mark some functions as pure
Diffstat (limited to 'src/tab-page.h')
-rw-r--r--src/tab-page.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tab-page.h b/src/tab-page.h
index 1737b59..1bb2b0c 100644
--- a/src/tab-page.h
+++ b/src/tab-page.h
@@ -63,19 +63,19 @@ void
mq_tab_page_quit(MqTabPage *tab_page);
MqApplication *
-mq_tab_page_get_application(MqTabPage *tab_page);
+mq_tab_page_get_application(MqTabPage *tab_page) G_GNUC_PURE;
MqWindow *
-mq_tab_page_get_window(MqTabPage *tab_page);
+mq_tab_page_get_window(MqTabPage *tab_page) G_GNUC_PURE;
MqTabLabel *
mq_tab_page_get_label(MqTabPage *tab_page);
guint64
-mq_tab_page_get_id(MqTabPage *tab_page);
+mq_tab_page_get_id(MqTabPage *tab_page) G_GNUC_PURE;
guint
-mq_tab_page_get_position(MqTabPage *tab_page);
+mq_tab_page_get_position(MqTabPage *tab_page) G_GNUC_PURE;
void
mq_tab_page_set_position(MqTabPage *tab_page, guint position);
@@ -84,7 +84,7 @@ MqWebView *
mq_tab_page_get_web_view(MqTabPage *tab_page);
const gchar *
-mq_tab_page_get_title(MqTabPage *tab_page);
+mq_tab_page_get_title(MqTabPage *tab_page) G_GNUC_PURE;
void
mq_tab_page_scroll_tab_labels(MqTabPage *node);