network-manager-applet r1142 - in trunk: . src/connection-editor



Author: dcbw
Date: Fri Feb  6 19:14:05 2009
New Revision: 1142
URL: http://svn.gnome.org/viewvc/network-manager-applet?rev=1142&view=rev

Log:
2009-02-06  Dan Williams  <dcbw redhat com>

	* src/connection-editor/connection-editor.c
		- (nm_connection_editor_set_connection): add IPv4 tab for DSL and Mobile
			Broadband to allow users to override/amend DNS settings



Modified:
   trunk/ChangeLog
   trunk/src/connection-editor/nm-connection-editor.c

Modified: trunk/src/connection-editor/nm-connection-editor.c
==============================================================================
--- trunk/src/connection-editor/nm-connection-editor.c	(original)
+++ trunk/src/connection-editor/nm-connection-editor.c	Fri Feb  6 19:14:05 2009
@@ -537,10 +537,12 @@
 		add_page (editor, CE_PAGE (ce_page_dsl_new (editor->connection)));
 		add_page (editor, CE_PAGE (ce_page_wired_new (editor->connection)));
 		add_page (editor, CE_PAGE (ce_page_ppp_new (editor->connection)));
+		add_page (editor, CE_PAGE (ce_page_ip4_new (editor->connection)));
 	} else if (!strcmp (connection_type, NM_SETTING_GSM_SETTING_NAME) || 
 			 !strcmp (connection_type, NM_SETTING_CDMA_SETTING_NAME)) {
 		add_page (editor, CE_PAGE (ce_page_mobile_new (editor->connection)));
 		add_page (editor, CE_PAGE (ce_page_ppp_new (editor->connection)));
+		add_page (editor, CE_PAGE (ce_page_ip4_new (editor->connection)));
 	} else {
 		g_warning ("Unhandled setting type '%s'", connection_type);
 	}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]