gpointing-device-settings r234 - trunk/src
- From: hiikezoe svn gnome org
- To: svn-commits-list gnome org
- Subject: gpointing-device-settings r234 - trunk/src
- Date: Mon, 16 Mar 2009 11:52:38 +0000 (UTC)
Author: hiikezoe
Date: Mon Mar 16 11:52:38 2009
New Revision: 234
URL: http://svn.gnome.org/viewvc/gpointing-device-settings?rev=234&view=rev
Log:
fix crash and select first device.
Modified:
trunk/src/gpointing-device-settings.c
Modified: trunk/src/gpointing-device-settings.c
==============================================================================
--- trunk/src/gpointing-device-settings.c (original)
+++ trunk/src/gpointing-device-settings.c Mon Mar 16 11:52:38 2009
@@ -132,6 +132,20 @@
}
static void
+select_first_device (GtkIconView *icon_view)
+{
+ GtkTreeModel *model;
+ GtkTreePath *path;
+ GtkTreeIter iter;
+
+ model = gtk_icon_view_get_model(icon_view);
+ gtk_tree_model_get_iter_first(model, &iter);
+ path = gtk_tree_model_get_path(model, &iter);
+ gtk_icon_view_select_path(icon_view, path);
+ gtk_tree_path_free(path);
+}
+
+static void
append_uis (GtkIconView *icon_view, GtkNotebook *notebook)
{
GpdsUI *ui;
@@ -146,7 +160,7 @@
if (ui) {
uis = g_list_prepend(uis, ui);
loaded_ui_names = g_list_prepend(loaded_ui_names,
- (gpointer)gpds_ui_get_device_name(ui));
+ g_strdup(gpds_xinput_pointer_info_get_type_name(info)));
append_ui(icon_view, notebook, ui);
}
}
@@ -159,7 +173,7 @@
const gchar *ui_name = node->data;
if (g_list_find_custom(loaded_ui_names, ui_name,
- (GCompareFunc)strcmp)) {
+ (GCompareFunc)g_str_equal)) {
continue;
}
@@ -172,7 +186,10 @@
append_ui(icon_view, notebook, ui);
}
g_list_free(ui_names);
+ g_list_foreach(loaded_ui_names, (GFunc)g_free, NULL);
g_list_free(loaded_ui_names);
+
+ select_first_device(icon_view);
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]