Upstream-Status: Submitted https://code.google.com/p/omgps/issues/detail?id=15 diff -uNr omgps.orig/src/dbus_intf.c omgps/src/dbus_intf.c --- omgps.orig/src/dbus_intf.c 2011-12-12 12:22:47.000000000 +0100 +++ omgps/src/dbus_intf.c 2012-11-14 14:44:45.435381443 +0100 @@ -171,7 +171,7 @@ gpsdata->svinfo_valid = TRUE; int i, j; - GValueArray *val; + GArray *val; svinfo_channel_t *sv; j = 0; @@ -179,16 +179,16 @@ val = satellites->pdata[i]; sv = &gpsdata->sv_channels[j]; - sv->sv_id = g_value_get_uint(g_value_array_get_nth(val, 0)); + sv->sv_id = g_array_index(val, guint, 0); - if (g_value_get_boolean(g_value_array_get_nth(val, 1))) { + if (g_array_index(val, gboolean, 1)) { ++gpsdata->sv_in_use; sv->flags = 0x01; } - sv->elevation = (int)g_value_get_uint(g_value_array_get_nth(val, 2)); - sv->azimuth = (int)g_value_get_uint(g_value_array_get_nth(val, 3)); - sv->cno = g_value_get_uint(g_value_array_get_nth(val, 4)); + sv->elevation = (int)g_array_index(val, guint, 2); + sv->azimuth = (int)g_array_index(val, guint, 3); + sv->cno = g_array_index(val, guint, 4); if (sv->cno > 0) ++gpsdata->sv_get_signal; diff -uNr omgps.orig/src/main.c omgps/src/main.c --- omgps.orig/src/main.c 2011-12-12 12:22:47.000000000 +0100 +++ omgps/src/main.c 2012-11-14 14:46:00.345402222 +0100 @@ -489,9 +489,6 @@ g_type_init(); - if (! g_thread_supported ()) - g_thread_init(NULL); - gdk_threads_init(); gdk_threads_enter(); diff -uNr omgps.orig/src/tab_gpscfg.c omgps/src/tab_gpscfg.c --- omgps.orig/src/tab_gpscfg.c 2011-12-12 12:22:47.000000000 +0100 +++ omgps/src/tab_gpscfg.c 2012-11-14 15:23:47.526925258 +0100 @@ -222,7 +222,7 @@ static gboolean change_platform_model_cmd(void *model_id) { - U1 model = (U1)(int) model_id; + U1 model = (U1)GPOINTER_TO_INT(model_id); int gps_dev_fd = 0; /* non ubx means: we need open serial port @@ -269,7 +269,7 @@ static void change_platmodel_button_clicked(GtkWidget *widget, gpointer data) { int idx = gtk_combo_box_get_active(GTK_COMBO_BOX(platmodel_list)); - char *model_id = (void *)(int)platmodel_values[idx]; + void *model_id = (void *)GINT_TO_POINTER(platmodel_values[idx]); if (POLL_ENGINE_TEST(UBX)) { gtk_widget_set_sensitive(change_platmodel_button, FALSE); diff -uNr omgps.orig/src/tab_menu.c omgps/src/tab_menu.c --- omgps.orig/src/tab_menu.c 2011-12-12 12:22:47.000000000 +0100 +++ omgps/src/tab_menu.c 2012-11-14 15:25:08.217941513 +0100 @@ -65,7 +65,7 @@ static void poll_button_clicked(GtkWidget *widget, gpointer data) { - gboolean is_start_bt = (gboolean)data; + gboolean is_start_bt = (gboolean) GPOINTER_TO_INT(data); if (POLL_STATE_TEST(RUNNING) == is_start_bt) return; diff -uNr omgps.orig/src/tab_tile.c omgps/src/tab_tile.c --- omgps.orig/src/tab_tile.c 2011-12-12 12:22:47.000000000 +0100 +++ omgps/src/tab_tile.c 2012-11-14 15:25:30.392945800 +0100 @@ -101,7 +101,7 @@ static gboolean set_bg_map(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data) { map_repo_t *repo; - gboolean clear = (gboolean)data; + gboolean clear = (gboolean)GPOINTER_TO_INT(data); int type; @@ -240,7 +240,7 @@ static void alpha_radio_toggled (GtkWidget *widget, gpointer user_data) { - int idx = (int)user_data; + int idx = (int)GPOINTER_TO_INT(user_data); if (g_view.bg_alpha_idx == idx) return; @@ -384,7 +384,7 @@ for (i=0; i