From ec66f247f08737567e88a342442b65e03026632b Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 04 Oct 2018 15:53:25 -0400 Subject: mq_notebook_remove_current_page(): New function --- diff --git a/src/notebook.c b/src/notebook.c index 20f7ff2..e5dbd47 100644 --- a/src/notebook.c +++ b/src/notebook.c @@ -460,6 +460,12 @@ mq_notebook_remove_page(MqNotebook *notebook, MqTabPage *page) } } +void +mq_notebook_remove_current_page(MqNotebook *notebook) +{ + mq_notebook_remove_page(notebook, notebook->current_page); +} + gint mq_notebook_get_n_pages(MqNotebook *notebook) { diff --git a/src/notebook.h b/src/notebook.h index 8fec0f6..3bc6961 100644 --- a/src/notebook.h +++ b/src/notebook.h @@ -68,6 +68,9 @@ mq_notebook_insert_child(MqNotebook *notebook, const gchar *uri, void mq_notebook_remove_page(MqNotebook *notebook, MqTabPage *page); +void +mq_notebook_remove_current_page(MqNotebook *notebook); + gint mq_notebook_get_n_pages(MqNotebook *notebook) G_GNUC_PURE; -- cgit v0.9.1