mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
GNetworkMonitor: Rename "network-changed" signal argument
Because the argument being called "available" and the property being called "network-available" is confusing. Also remove the details of what that value means, as it's already described in the property, and duplicating the explanation makes it look like it might have a different meaning. https://bugzilla.gnome.org/show_bug.cgi?id=792370
This commit is contained in:
parent
c4ad10fede
commit
181d1c3052
@ -309,13 +309,9 @@ g_network_monitor_default_init (GNetworkMonitorInterface *iface)
|
|||||||
/**
|
/**
|
||||||
* GNetworkMonitor::network-changed:
|
* GNetworkMonitor::network-changed:
|
||||||
* @monitor: a #GNetworkMonitor
|
* @monitor: a #GNetworkMonitor
|
||||||
* @available: the current value of #GNetworkMonitor:network-available
|
* @network_available: the current value of #GNetworkMonitor:network-available
|
||||||
*
|
*
|
||||||
* Emitted when the network configuration changes. If @available is
|
* Emitted when the network configuration changes.
|
||||||
* %TRUE, then some hosts may be reachable that were not reachable
|
|
||||||
* before, while others that were reachable before may no longer be
|
|
||||||
* reachable. If @available is %FALSE, then no remote hosts are
|
|
||||||
* reachable.
|
|
||||||
*
|
*
|
||||||
* Since: 2.32
|
* Since: 2.32
|
||||||
*/
|
*/
|
||||||
|
@ -48,7 +48,7 @@ struct _GNetworkMonitorInterface {
|
|||||||
GTypeInterface g_iface;
|
GTypeInterface g_iface;
|
||||||
|
|
||||||
void (*network_changed) (GNetworkMonitor *monitor,
|
void (*network_changed) (GNetworkMonitor *monitor,
|
||||||
gboolean available);
|
gboolean network_available);
|
||||||
|
|
||||||
gboolean (*can_reach) (GNetworkMonitor *monitor,
|
gboolean (*can_reach) (GNetworkMonitor *monitor,
|
||||||
GSocketConnectable *connectable,
|
GSocketConnectable *connectable,
|
||||||
|
Loading…
Reference in New Issue
Block a user