summaryrefslogtreecommitdiff
path: root/libnm-core/nm-vpn-editor-plugin.h
diff options
context:
space:
mode:
authorCorentin Noël <corentin@elementary.io>2018-03-24 15:18:21 +0000
committerThomas Haller <thaller@redhat.com>2018-03-26 12:45:49 +0200
commit468a01933323f66c55ff2c1db78cf6d7996a3289 (patch)
treee1360d55d71602e2f33e986f6e1194618c55540f /libnm-core/nm-vpn-editor-plugin.h
parent03a9bb88aac42bde7f29c41ccb3785752aeb0d0e (diff)
downloadNetworkManager-468a01933323f66c55ff2c1db78cf6d7996a3289.tar.gz
gobject-introspection: made several fixes to the annotations
https://bugzilla.gnome.org/show_bug.cgi?id=794658
Diffstat (limited to 'libnm-core/nm-vpn-editor-plugin.h')
-rw-r--r--libnm-core/nm-vpn-editor-plugin.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libnm-core/nm-vpn-editor-plugin.h b/libnm-core/nm-vpn-editor-plugin.h
index 17bd08274d..0f910e36a7 100644
--- a/libnm-core/nm-vpn-editor-plugin.h
+++ b/libnm-core/nm-vpn-editor-plugin.h
@@ -34,7 +34,7 @@
G_BEGIN_DECLS
-struct _NMVpnPluginInfo;
+typedef struct _NMVpnPluginInfo NMVpnPluginInfo;
typedef struct _NMVpnEditorPlugin NMVpnEditorPlugin;
typedef struct _NMVpnEditor NMVpnEditor;
@@ -128,7 +128,7 @@ typedef struct {
char * (*get_suggested_filename) (NMVpnEditorPlugin *plugin, NMConnection *connection);
void (*notify_plugin_info_set) (NMVpnEditorPlugin *plugin,
- struct _NMVpnPluginInfo *plugin_info);
+ NMVpnPluginInfo *plugin_info);
const NMVpnEditorPluginVT *(*get_vt) (NMVpnEditorPlugin *plugin,
gsize *out_vt_size);
@@ -171,9 +171,9 @@ NMVpnEditorPlugin *nm_vpn_editor_plugin_load (const char *plugin_name,
GError **error);
NM_AVAILABLE_IN_1_4
-struct _NMVpnPluginInfo *nm_vpn_editor_plugin_get_plugin_info (NMVpnEditorPlugin *plugin);
+NMVpnPluginInfo *nm_vpn_editor_plugin_get_plugin_info (NMVpnEditorPlugin *plugin);
NM_AVAILABLE_IN_1_4
-void nm_vpn_editor_plugin_set_plugin_info (NMVpnEditorPlugin *plugin, struct _NMVpnPluginInfo *plugin_info);
+void nm_vpn_editor_plugin_set_plugin_info (NMVpnEditorPlugin *plugin, NMVpnPluginInfo *plugin_info);
#include "nm-vpn-plugin-info.h"