libmm-common: `MMSimpleConnectProperties' won't be considered internal any more

Renamed `MMCommonConnectProperties' to `MMSimpleConnectProperties', and removed
the `MMModemSimpleConnectProperties' provided in libmm-glib. We'll just use the
original one from libmm-common always.
This commit is contained in:
Aleksander Morgado
2012-03-01 12:31:17 +01:00
parent d306bb082f
commit 1385eb394f
12 changed files with 230 additions and 396 deletions

View File

@@ -316,11 +316,11 @@ get_modem_ready (GObject *source,
/* Request to connect the modem? */
if (connect_str) {
GError *error = NULL;
MMModemSimpleConnectProperties *properties;
MMSimpleConnectProperties *properties;
g_debug ("Asynchronously connecting the modem...");
properties = mm_modem_simple_connect_properties_new_from_string (connect_str, &error);
properties = mm_simple_connect_properties_new_from_string (connect_str, &error);
if (!properties) {
g_printerr ("Error parsing connect string: '%s'\n", error->message);
exit (EXIT_FAILURE);