summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2014-07-25 08:34:28 -0400
committerDan Winship <danw@gnome.org>2014-07-25 08:34:28 -0400
commit23a475ae181acd57c492bdbe4e39bab939026cf0 (patch)
treedb80b8dbb5f38b846411709f60deea39f6f73856
parent30f4df4c755ad2eb53bc00778c7aeca9dc37785f (diff)
downloadnetwork-manager-applet-23a475ae181acd57c492bdbe4e39bab939026cf0.tar.gz
connection-editor: rename new-connection.c to connection-helpers.c
Originally this file only had the new_connection* stuff in it, but later it got delete_connection() too and was supposed to have been renamed (the multiple-include guard in the header was already "__CONNECTION_HELPERS_H__"), but apparently I forgot to rename it...
-rw-r--r--src/connection-editor/Makefile.am4
-rw-r--r--src/connection-editor/connection-helpers.c (renamed from src/connection-editor/new-connection.c)2
-rw-r--r--src/connection-editor/connection-helpers.h (renamed from src/connection-editor/new-connection.h)0
-rw-r--r--src/connection-editor/nm-connection-list.c2
-rw-r--r--src/connection-editor/page-bond.c2
-rw-r--r--src/connection-editor/page-bridge.c2
-rw-r--r--src/connection-editor/page-master.h2
-rw-r--r--src/connection-editor/page-team.c2
-rw-r--r--src/connection-editor/page-vpn.c2
9 files changed, 9 insertions, 9 deletions
diff --git a/src/connection-editor/Makefile.am b/src/connection-editor/Makefile.am
index 5554c243..89923e7e 100644
--- a/src/connection-editor/Makefile.am
+++ b/src/connection-editor/Makefile.am
@@ -78,8 +78,8 @@ nm_connection_editor_SOURCES = \
ppp-auth-methods-dialog.h \
ce-polkit-button.c \
ce-polkit-button.h \
- new-connection.c \
- new-connection.h
+ connection-helpers.c \
+ connection-helpers.h
nm-connection-editor-service-glue.h: $(top_srcdir)/src/connection-editor/nm-connection-editor-service.xml
$(AM_V_GEN) dbus-binding-tool --prefix=nm_connection_editor_service --mode=glib-server --output=$@ $<
diff --git a/src/connection-editor/new-connection.c b/src/connection-editor/connection-helpers.c
index ed3a7424..d346532f 100644
--- a/src/connection-editor/new-connection.c
+++ b/src/connection-editor/connection-helpers.c
@@ -22,7 +22,7 @@
#include <glib/gi18n.h>
-#include "new-connection.h"
+#include "connection-helpers.h"
#include "nm-connection-list.h"
#include "nm-connection-editor.h"
#include "page-ethernet.h"
diff --git a/src/connection-editor/new-connection.h b/src/connection-editor/connection-helpers.h
index cef2afed..cef2afed 100644
--- a/src/connection-editor/new-connection.h
+++ b/src/connection-editor/connection-helpers.h
diff --git a/src/connection-editor/nm-connection-list.c b/src/connection-editor/nm-connection-list.c
index ceb7432d..1e6846a7 100644
--- a/src/connection-editor/nm-connection-list.c
+++ b/src/connection-editor/nm-connection-list.c
@@ -52,7 +52,7 @@
#include "nm-connection-list.h"
#include "vpn-helpers.h"
#include "ce-polkit-button.h"
-#include "new-connection.h"
+#include "connection-helpers.h"
G_DEFINE_TYPE (NMConnectionList, nm_connection_list, G_TYPE_OBJECT)
diff --git a/src/connection-editor/page-bond.c b/src/connection-editor/page-bond.c
index 718a3985..d05b0b70 100644
--- a/src/connection-editor/page-bond.c
+++ b/src/connection-editor/page-bond.c
@@ -31,7 +31,7 @@
#include "page-bond.h"
#include "page-infiniband.h"
#include "nm-connection-editor.h"
-#include "new-connection.h"
+#include "connection-helpers.h"
G_DEFINE_TYPE (CEPageBond, ce_page_bond, CE_TYPE_PAGE_MASTER)
diff --git a/src/connection-editor/page-bridge.c b/src/connection-editor/page-bridge.c
index 05936512..2221e070 100644
--- a/src/connection-editor/page-bridge.c
+++ b/src/connection-editor/page-bridge.c
@@ -30,7 +30,7 @@
#include "page-bridge.h"
#include "nm-connection-editor.h"
-#include "new-connection.h"
+#include "connection-helpers.h"
G_DEFINE_TYPE (CEPageBridge, ce_page_bridge, CE_TYPE_PAGE_MASTER)
diff --git a/src/connection-editor/page-master.h b/src/connection-editor/page-master.h
index 56cc6c41..380d8964 100644
--- a/src/connection-editor/page-master.h
+++ b/src/connection-editor/page-master.h
@@ -27,7 +27,7 @@
#include <glib-object.h>
#include "ce-page.h"
-#include "new-connection.h"
+#include "connection-helpers.h"
#define CE_TYPE_PAGE_MASTER (ce_page_master_get_type ())
#define CE_PAGE_MASTER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CE_TYPE_PAGE_MASTER, CEPageMaster))
diff --git a/src/connection-editor/page-team.c b/src/connection-editor/page-team.c
index 05be62d3..26e3432f 100644
--- a/src/connection-editor/page-team.c
+++ b/src/connection-editor/page-team.c
@@ -30,7 +30,7 @@
#include "page-team.h"
#include "page-infiniband.h"
#include "nm-connection-editor.h"
-#include "new-connection.h"
+#include "connection-helpers.h"
G_DEFINE_TYPE (CEPageTeam, ce_page_team, CE_TYPE_PAGE_MASTER)
diff --git a/src/connection-editor/page-vpn.c b/src/connection-editor/page-vpn.c
index 080b422c..81592c8d 100644
--- a/src/connection-editor/page-vpn.c
+++ b/src/connection-editor/page-vpn.c
@@ -35,7 +35,7 @@
#include <nm-vpn-plugin-ui-interface.h>
#include "page-vpn.h"
-#include "new-connection.h"
+#include "connection-helpers.h"
#include "nm-connection-editor.h"
#include "vpn-helpers.h"