summaryrefslogtreecommitdiff
path: root/pluma/pluma-document.c
diff options
context:
space:
mode:
Diffstat (limited to 'pluma/pluma-document.c')
-rw-r--r--pluma/pluma-document.c23
1 files changed, 16 insertions, 7 deletions
diff --git a/pluma/pluma-document.c b/pluma/pluma-document.c
index 3fe939f5..8634636f 100644
--- a/pluma/pluma-document.c
+++ b/pluma/pluma-document.c
@@ -545,8 +545,6 @@ pluma_document_class_init (PlumaDocumentClass *klass)
* @create: whether the document should be created if it doesn't exist.
*
* The "load" signal is emitted when a document is loaded.
- *
- * Since: 2.22
*/
document_signals[LOAD] =
g_signal_new ("load",
@@ -596,8 +594,6 @@ pluma_document_class_init (PlumaDocumentClass *klass)
* @flags: the #PlumaDocumentSaveFlags for the save operation.
*
* The "save" signal is emitted when the document is saved.
- *
- * Since: 2.20
*/
document_signals[SAVE] =
g_signal_new ("save",
@@ -1039,6 +1035,13 @@ set_uri (PlumaDocument *doc,
}
}
+
+/**
+ * pluma_document_get_location:
+ * @doc: a #PlumaDocument
+ *
+ * Returns: (allow-none) (transfer full): a new #GFile
+ */
GFile *
pluma_document_get_location (PlumaDocument *doc)
{
@@ -1777,7 +1780,7 @@ compute_num_of_lines (const gchar *text)
}
/**
- * pluma_document_set_search_text"
+ * pluma_document_set_search_text:
* @doc:
* @text: (allow-none):
* @flags:
@@ -1876,7 +1879,7 @@ pluma_document_get_can_search_again (PlumaDocument *doc)
* @start: (allow-none):
* @end: (allow-none):
* @match_start: (allow-none):
- * @match_end: (allow=none):
+ * @match_end: (allow-none):
**/
gboolean
pluma_document_search_forward (PlumaDocument *doc,
@@ -1964,7 +1967,7 @@ pluma_document_search_forward (PlumaDocument *doc,
* @start: (allow-none):
* @end: (allow-none):
* @match_start: (allow-none):
- * @match_end: (allow=none):
+ * @match_end: (allow-none):
**/
gboolean
pluma_document_search_backward (PlumaDocument *doc,
@@ -2191,6 +2194,12 @@ pluma_document_set_language (PlumaDocument *doc,
set_language (doc, lang, TRUE);
}
+/**
+ * pluma_document_get_language:
+ * @doc:
+ *
+ * Return value: (transfer none):
+ */
GtkSourceLanguage *
pluma_document_get_language (PlumaDocument *doc)
{