diff options
author | Pranav Kant <pranavk@libreoffice.org> | 2015-12-06 23:41:57 +0530 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-12-06 20:01:38 +0000 |
commit | 9e9703389e015d0f3520344715df6719559362e4 (patch) | |
tree | 94a45b9718b573ecabf59d9dd4c4b7a3195c282f /include/LibreOfficeKit | |
parent | 4d3d266e8a47715268cbec1b5e5b8d9fecc54cf6 (diff) |
tdf#96246: Make pRenderingArguments nullable
Type gchar* is not nullable by convention.
See:
https://wiki.gnome.org/Projects/GObjectIntrospection/Annotations#Nullable_parameters
Change-Id: Ibfee816a3ef2d29c7376071fb61eda7bf0538efb
Reviewed-on: https://gerrit.libreoffice.org/20425
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'include/LibreOfficeKit')
-rw-r--r-- | include/LibreOfficeKit/LibreOfficeKitGtk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKitGtk.h b/include/LibreOfficeKit/LibreOfficeKitGtk.h index c947ce3f8369..8b6092c56ef2 100644 --- a/include/LibreOfficeKit/LibreOfficeKitGtk.h +++ b/include/LibreOfficeKit/LibreOfficeKitGtk.h @@ -65,7 +65,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: lok::Document::initializeForRendering() arguments. + * @pRenderingArguments: (nullable): lok::Document::initializeForRendering() arguments. * @cancellable: * @callback: * @userdata: |