diff options
author | Mike Gorse <mgorse@suse.com> | 2017-03-10 17:34:27 -0600 |
---|---|---|
committer | pranavk <pranavk@collabora.co.uk> | 2017-03-15 14:17:30 +0000 |
commit | 2ba485158bfa089e931c0c3e29389fe64a42dd4d (patch) | |
tree | fa98f3254302ee35e4cc45a6864860569369de2b | |
parent | fa05bf54c923d0a8fc648593a001358a100e6285 (diff) |
tdf#102511: Fix gobject-introspection annotation syntax
Change-Id: I43a3ee21bd2db9ace809084d3ab888008243c97f
Reviewed-on: https://gerrit.libreoffice.org/35155
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: pranavk <pranavk@collabora.co.uk>
Tested-by: pranavk <pranavk@collabora.co.uk>
-rw-r--r-- | include/LibreOfficeKit/LibreOfficeKitGtk.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKitGtk.h b/include/LibreOfficeKit/LibreOfficeKitGtk.h index a2312d6d2527..dd35505e2b86 100644 --- a/include/LibreOfficeKit/LibreOfficeKitGtk.h +++ b/include/LibreOfficeKit/LibreOfficeKitGtk.h @@ -42,7 +42,7 @@ GType lok_doc_view_get_type (void) G_GNUC /** * lok_doc_view_new: - * @pPath: (nullable): (allow-none): LibreOffice install path. Pass null to set it to default + * @pPath: (nullable) (allow-none): LibreOffice install path. Pass null to set it to default * path which in most cases would be $libdir/libreoffice/program * @cancellable: The cancellable object that you can use to cancel this * operation. @@ -56,9 +56,9 @@ GtkWidget* lok_doc_view_new (const gchar* /** * lok_doc_view_new_from_user_profile: - * @pPath: (nullable): (allow-none): LibreOffice install path. Pass null to set it to default + * @pPath: (nullable) (allow-none): LibreOffice install path. Pass null to set it to default * path which in most cases would be $libdir/libreoffice/program - * @pUserProfile: (nullable): (allow-none): User profile URL. Must be either a file URL or a + * @pUserProfile: (nullable) (allow-none): User profile URL. Must be either a file URL or a * special vnd.sun.star.pathname URL. Pass non-null to be able to use this * widget and LibreOffice itself in parallel. * @cancellable: The cancellable object that you can use to cancel this @@ -75,7 +75,7 @@ GtkWidget* lok_doc_view_new_from_user_profile (const gchar* /** * lok_doc_view_new_from_widget: * @pDocView: The #LOKDocView instance - * @pRenderingArguments: (nullable): (allow-none): lok::Document::initializeForRendering() arguments. + * @pRenderingArguments: (nullable) (allow-none): lok::Document::initializeForRendering() arguments. * * Returns: (transfer none): The #LOKDocView widget instance. */ @@ -86,7 +86,7 @@ GtkWidget* lok_doc_view_new_from_widget (LOKDocView* * lok_doc_view_open_document: * @pDocView: The #LOKDocView instance * @pPath: (transfer full): The path of the document that #LOKDocView widget should try to open - * @pRenderingArguments: (nullable): (allow-none): lok::Document::initializeForRendering() arguments. + * @pRenderingArguments: (nullable) (allow-none): lok::Document::initializeForRendering() arguments. * @cancellable: * @callback: * @userdata: @@ -309,7 +309,7 @@ gboolean lok_doc_view_paste (LOKDocView* * lok_doc_view_set_document_password: * @pDocView: The #LOKDocView instance * @pUrl: the URL of the document to set password for, as sent with signal `password-required` - * @pPassword: (nullable): (allow-none): the password, NULL for no password + * @pPassword: (nullable) (allow-none): the password, NULL for no password * * Set the password for password protected documents */ |