summaryrefslogtreecommitdiff
path: root/src/applet-device-broadband.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/applet-device-broadband.c')
-rw-r--r--src/applet-device-broadband.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/applet-device-broadband.c b/src/applet-device-broadband.c
index 9c47318a..6315eaba 100644
--- a/src/applet-device-broadband.c
+++ b/src/applet-device-broadband.c
@@ -805,11 +805,11 @@ notify_connected (NMDevice *device,
const char *msg,
NMApplet *applet)
{
- applet_do_notify_with_pref (applet,
- _("Connection Established"),
- msg ? msg : _("You are now connected to the Mobile Broadband network."),
- "nm-device-wwan",
- PREF_DISABLE_CONNECTED_NOTIFICATIONS);
+ applet_do_notify (applet,
+ _("Connection Established"),
+ msg ? msg : _("You are now connected to the Mobile Broadband network."),
+ "nm-device-wwan",
+ PREF_DISABLE_CONNECTED_NOTIFICATIONS);
}
/********************************************************************/
@@ -946,17 +946,17 @@ modem_state_changed (MMModem *object,
/* Notify about new registration info */
mb_state = broadband_state_to_mb_state (info);
if (mb_state == MB_STATE_HOME) {
- applet_do_notify_with_pref (info->applet,
- _("Mobile Broadband network."),
- _("You are now registered on the home network."),
- signal_strength_icon,
- PREF_DISABLE_CONNECTED_NOTIFICATIONS);
+ applet_do_notify (info->applet,
+ _("Mobile Broadband network."),
+ _("You are now registered on the home network."),
+ signal_strength_icon,
+ PREF_DISABLE_CONNECTED_NOTIFICATIONS);
} else if (mb_state == MB_STATE_ROAMING) {
- applet_do_notify_with_pref (info->applet,
- _("Mobile Broadband network."),
- _("You are now registered on a roaming network."),
- signal_strength_icon,
- PREF_DISABLE_CONNECTED_NOTIFICATIONS);
+ applet_do_notify (info->applet,
+ _("Mobile Broadband network."),
+ _("You are now registered on a roaming network."),
+ signal_strength_icon,
+ PREF_DISABLE_CONNECTED_NOTIFICATIONS);
}
}
}