NetworkManager r4344 - trunk/libnm-glib



Author: dcbw
Date: Thu Nov 27 00:49:19 2008
New Revision: 4344
URL: http://svn.gnome.org/viewvc/NetworkManager?rev=4344&view=rev

Log:
doc fixes

Modified:
   trunk/libnm-glib/nm-device-wifi.c
   trunk/libnm-glib/nm-dhcp4-config.c

Modified: trunk/libnm-glib/nm-device-wifi.c
==============================================================================
--- trunk/libnm-glib/nm-device-wifi.c	(original)
+++ trunk/libnm-glib/nm-device-wifi.c	Thu Nov 27 00:49:19 2008
@@ -219,23 +219,23 @@
 
 /**
  * nm_device_wifi_get_active_access_point:
- * @self: a #NMDeviceWifi
+ * @device: a #NMDeviceWifi
  *
  * Gets the active #NMAccessPoint.
  *
  * Returns: the access point or %NULL if none is active
  **/
 NMAccessPoint *
-nm_device_wifi_get_active_access_point (NMDeviceWifi *self)
+nm_device_wifi_get_active_access_point (NMDeviceWifi *device)
 {
 	NMDeviceWifiPrivate *priv;
 	NMDeviceState state;
 	char *path;
 	GValue value = { 0, };
 
-	g_return_val_if_fail (NM_IS_DEVICE_WIFI (self), NULL);
+	g_return_val_if_fail (NM_IS_DEVICE_WIFI (device), NULL);
 
-	state = nm_device_get_state (NM_DEVICE (self));
+	state = nm_device_get_state (NM_DEVICE (device));
 	switch (state) {
 	case NM_DEVICE_STATE_PREPARE:
 	case NM_DEVICE_STATE_CONFIG:
@@ -248,19 +248,19 @@
 		break;
 	}
 
-	priv = NM_DEVICE_WIFI_GET_PRIVATE (self);
+	priv = NM_DEVICE_WIFI_GET_PRIVATE (device);
 	if (priv->active_ap)
 		return priv->active_ap;
 	if (priv->null_active_ap)
 		return NULL;
 
-	path = _nm_object_get_object_path_property (NM_OBJECT (self),
+	path = _nm_object_get_object_path_property (NM_OBJECT (device),
 	                                           NM_DBUS_INTERFACE_DEVICE_WIRELESS,
 	                                           DBUS_PROP_ACTIVE_ACCESS_POINT);
 	if (path) {
 		g_value_init (&value, DBUS_TYPE_G_OBJECT_PATH);
 		g_value_take_boxed (&value, path);
-		demarshal_active_ap (NM_OBJECT (self), NULL, &value, &priv->active_ap);
+		demarshal_active_ap (NM_OBJECT (device), NULL, &value, &priv->active_ap);
 		g_value_unset (&value);
 	}
 
@@ -269,7 +269,7 @@
 
 /**
  * nm_device_wifi_get_access_points:
- * @self: a #NMDeviceWifi
+ * @device: a #NMDeviceWifi
  *
  * Gets all the scanned access points of the #NMDeviceWifi.
  *
@@ -277,7 +277,7 @@
  * The returned array is owned by the client and should not be modified.
  **/
 const GPtrArray *
-nm_device_wifi_get_access_points (NMDeviceWifi *self)
+nm_device_wifi_get_access_points (NMDeviceWifi *device)
 {
 	NMDeviceWifiPrivate *priv;
 	DBusGConnection *connection;
@@ -285,9 +285,9 @@
 	GError *error = NULL;
 	GPtrArray *temp;
 
-	g_return_val_if_fail (NM_IS_DEVICE_WIFI (self), NULL);
+	g_return_val_if_fail (NM_IS_DEVICE_WIFI (device), NULL);
 
-	priv = NM_DEVICE_WIFI_GET_PRIVATE (self);
+	priv = NM_DEVICE_WIFI_GET_PRIVATE (device);
 	if (priv->aps)
 		return handle_ptr_array_return (priv->aps);
 
@@ -299,7 +299,7 @@
 
 	g_value_init (&value, DBUS_TYPE_G_ARRAY_OF_OBJECT_PATH);
 	g_value_take_boxed (&value, temp);
-	connection = nm_object_get_connection (NM_OBJECT (self));
+	connection = nm_object_get_connection (NM_OBJECT (device));
 	_nm_object_array_demarshal (&value, &priv->aps, connection, nm_access_point_new);
 	g_value_unset (&value);
 
@@ -308,7 +308,7 @@
 
 /**
  * nm_device_wifi_get_access_point_by_path:
- * @self: a #NMDeviceWifi
+ * @device: a #NMDeviceWifi
  * @path: the object path of the access point
  *
  * Gets a #NMAccessPoint by path.
@@ -316,17 +316,17 @@
  * Returns: the access point or %NULL if none is found.
  **/
 NMAccessPoint *
-nm_device_wifi_get_access_point_by_path (NMDeviceWifi *self,
-											        const char *path)
+nm_device_wifi_get_access_point_by_path (NMDeviceWifi *device,
+                                         const char *path)
 {
 	const GPtrArray *aps;
 	int i;
 	NMAccessPoint *ap = NULL;
 
-	g_return_val_if_fail (NM_IS_DEVICE_WIFI (self), NULL);
+	g_return_val_if_fail (NM_IS_DEVICE_WIFI (device), NULL);
 	g_return_val_if_fail (path != NULL, NULL);
 
-	aps = nm_device_wifi_get_access_points (self);
+	aps = nm_device_wifi_get_access_points (device);
 	if (!aps)
 		return NULL;
 

Modified: trunk/libnm-glib/nm-dhcp4-config.c
==============================================================================
--- trunk/libnm-glib/nm-dhcp4-config.c	(original)
+++ trunk/libnm-glib/nm-dhcp4-config.c	Thu Nov 27 00:49:19 2008
@@ -199,7 +199,7 @@
 
 /**
  * nm_dhcp4_config_get_options:
- * @self: a #NMDHCP4Config
+ * @config: a #NMDHCP4Config
  *
  * Gets all the options contained in the configuration.
  *
@@ -207,21 +207,21 @@
  * This is the internal copy used by the configuration, and must not be modified.
  **/
 GHashTable *
-nm_dhcp4_config_get_options (NMDHCP4Config *self)
+nm_dhcp4_config_get_options (NMDHCP4Config *config)
 {
-	NMDHCP4ConfigPrivate *priv = NM_DHCP4_CONFIG_GET_PRIVATE (self);
+	NMDHCP4ConfigPrivate *priv = NM_DHCP4_CONFIG_GET_PRIVATE (config);
 	GValue value = { 0, };
 
 	if (g_hash_table_size (priv->options))
 		return priv->options;
 
-	if (!_nm_object_get_property (NM_OBJECT (self),
+	if (!_nm_object_get_property (NM_OBJECT (config),
 	                             "org.freedesktop.DBus.Properties",
 	                             "Options",
 	                             &value))
 		goto out;
 
-	demarshal_dhcp4_options (NM_OBJECT (self), NULL, &value, &priv->options);	
+	demarshal_dhcp4_options (NM_OBJECT (config), NULL, &value, &priv->options);	
 	g_value_unset (&value);
 
 out:
@@ -230,7 +230,7 @@
 
 /**
  * nm_dhcp4_config_get_one_option:
- * @self: a #NMDHCP4Config
+ * @config: a #NMDHCP4Config
  * @option: the option to retrieve
  *
  * Gets one option by option name.
@@ -239,10 +239,10 @@
  * configuration, and must not be modified.
  **/
 const char *
-nm_dhcp4_config_get_one_option (NMDHCP4Config *self, const char *option)
+nm_dhcp4_config_get_one_option (NMDHCP4Config *config, const char *option)
 {
-	g_return_val_if_fail (NM_IS_DHCP4_CONFIG (self), NULL);
+	g_return_val_if_fail (NM_IS_DHCP4_CONFIG (config), NULL);
 
-	return g_hash_table_lookup (nm_dhcp4_config_get_options (self), option);
+	return g_hash_table_lookup (nm_dhcp4_config_get_options (config), option);
 }
 



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