network-manager-applet r975 - in trunk: . src src/connection-editor
- From: dcbw svn gnome org
- To: svn-commits-list gnome org
- Subject: network-manager-applet r975 - in trunk: . src src/connection-editor
- Date: Sun, 26 Oct 2008 21:35:02 +0000 (UTC)
Author: dcbw
Date: Sun Oct 26 21:35:02 2008
New Revision: 975
URL: http://svn.gnome.org/viewvc/network-manager-applet?rev=975&view=rev
Log:
2008-10-26 Dan Williams <dcbw redhat com>
Patch from Tambet Ingo <tambet gmail com>
* src/applet-device-cdma.c
src/applet-device-gsm.c
src/connection-editor/nm-connection-list.c
- Use setting object accessors
Modified:
trunk/ChangeLog
trunk/src/applet-device-cdma.c
trunk/src/applet-device-gsm.c
trunk/src/connection-editor/nm-connection-list.c
Modified: trunk/src/applet-device-cdma.c
==============================================================================
--- trunk/src/applet-device-cdma.c (original)
+++ trunk/src/applet-device-cdma.c Sun Oct 26 21:35:02 2008
@@ -73,10 +73,13 @@
/* Serial setting */
s_serial = (NMSettingSerial *) nm_setting_serial_new ();
- s_serial->baud = 115200;
- s_serial->bits = 8;
- s_serial->parity = 'n';
- s_serial->stopbits = 1;
+ g_object_set (s_serial,
+ NM_SETTING_SERIAL_BAUD, 115200,
+ NM_SETTING_SERIAL_BITS, 8,
+ NM_SETTING_SERIAL_PARITY, 'n',
+ NM_SETTING_SERIAL_STOPBITS, 1,
+ NULL);
+
nm_connection_add_setting (connection, NM_SETTING (s_serial));
s_ppp = (NMSettingPPP *) nm_setting_ppp_new ();
Modified: trunk/src/applet-device-gsm.c
==============================================================================
--- trunk/src/applet-device-gsm.c (original)
+++ trunk/src/applet-device-gsm.c Sun Oct 26 21:35:02 2008
@@ -74,10 +74,13 @@
/* Serial setting */
s_serial = (NMSettingSerial *) nm_setting_serial_new ();
- s_serial->baud = 115200;
- s_serial->bits = 8;
- s_serial->parity = 'n';
- s_serial->stopbits = 1;
+ g_object_set (s_serial,
+ NM_SETTING_SERIAL_BAUD, 115200,
+ NM_SETTING_SERIAL_BITS, 8,
+ NM_SETTING_SERIAL_PARITY, 'n',
+ NM_SETTING_SERIAL_STOPBITS, 1,
+ NULL);
+
nm_connection_add_setting (connection, NM_SETTING (s_serial));
s_ppp = (NMSettingPPP *) nm_setting_ppp_new ();
Modified: trunk/src/connection-editor/nm-connection-list.c
==============================================================================
--- trunk/src/connection-editor/nm-connection-list.c (original)
+++ trunk/src/connection-editor/nm-connection-list.c Sun Oct 26 21:35:02 2008
@@ -763,10 +763,13 @@
NMSettingSerial *s_serial;
s_serial = NM_SETTING_SERIAL (nm_setting_serial_new ());
- s_serial->baud = 115200;
- s_serial->bits = 8;
- s_serial->parity = 'n';
- s_serial->stopbits = 1;
+ g_object_set (s_serial,
+ NM_SETTING_SERIAL_BAUD, 115200,
+ NM_SETTING_SERIAL_BITS, 8,
+ NM_SETTING_SERIAL_PARITY, 'n',
+ NM_SETTING_SERIAL_STOPBITS, 1,
+ NULL);
+
nm_connection_add_setting (connection, NM_SETTING (s_serial));
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]