summaryrefslogtreecommitdiff
path: root/libnm-glib/nm-vpn-plugin-ui-interface.c
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2014-07-15 10:17:49 -0400
committerDan Winship <danw@gnome.org>2014-07-15 10:17:49 -0400
commit741ee7d0510adcd60806a12bc33cf9e4cc9e5404 (patch)
tree90f7356343a822bfd9310fb3bad77fe1cd0c5580 /libnm-glib/nm-vpn-plugin-ui-interface.c
parentf352bfd2af77566e2fbb1902db807af82008af1d (diff)
parent6e51e460df9f7ed3e886b33e7795427e5ec6ab95 (diff)
downloadNetworkManager-741ee7d0510adcd60806a12bc33cf9e4cc9e5404.tar.gz
Miscellaneous libnm-util/libnm-glib/include cleanups
https://bugzilla.gnome.org/show_bug.cgi?id=732867
Diffstat (limited to 'libnm-glib/nm-vpn-plugin-ui-interface.c')
-rw-r--r--libnm-glib/nm-vpn-plugin-ui-interface.c25
1 files changed, 11 insertions, 14 deletions
diff --git a/libnm-glib/nm-vpn-plugin-ui-interface.c b/libnm-glib/nm-vpn-plugin-ui-interface.c
index f1ac87fa8c..791d47ad43 100644
--- a/libnm-glib/nm-vpn-plugin-ui-interface.c
+++ b/libnm-glib/nm-vpn-plugin-ui-interface.c
@@ -1,7 +1,5 @@
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
/*
- * libnm_glib -- Access network status & information from glib applications
- *
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
@@ -17,8 +15,8 @@
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*
- * Copyright (C) 2008 - 2010 Red Hat, Inc.
- * Copyright (C) 2008 Novell, Inc.
+ * Copyright 2008 - 2010 Red Hat, Inc.
+ * Copyright 2008 Novell, Inc.
*/
#include "nm-vpn-plugin-ui-interface.h"
@@ -73,9 +71,9 @@ nm_vpn_plugin_ui_interface_get_type (void)
};
vpn_plugin_ui_interface_type = g_type_register_static (G_TYPE_INTERFACE,
- "NMVpnPluginUiInterface",
- &vpn_plugin_ui_interface_info,
- 0);
+ "NMVpnPluginUiInterface",
+ &vpn_plugin_ui_interface_info,
+ 0);
g_type_interface_add_prerequisite (vpn_plugin_ui_interface_type, G_TYPE_OBJECT);
}
@@ -163,12 +161,12 @@ widget_interface_init (gpointer g_iface)
/* Signals */
g_signal_new ("changed",
- iface_type,
- G_SIGNAL_RUN_FIRST,
- G_STRUCT_OFFSET (NMVpnPluginUiWidgetInterface, changed),
- NULL, NULL,
- g_cclosure_marshal_VOID__VOID,
- G_TYPE_NONE, 0);
+ iface_type,
+ G_SIGNAL_RUN_FIRST,
+ G_STRUCT_OFFSET (NMVpnPluginUiWidgetInterface, changed),
+ NULL, NULL,
+ g_cclosure_marshal_VOID__VOID,
+ G_TYPE_NONE, 0);
initialized = TRUE;
}
@@ -231,4 +229,3 @@ nm_vpn_plugin_ui_widget_interface_save_secrets (NMVpnPluginUiWidgetInterface *if
/* Deprecated and no longer used */
return TRUE;
}
-