color: fix up some minor indenting issues

This commit is contained in:
Richard Hughes 2011-05-27 20:11:49 +01:00
parent 26031e6de6
commit 63c7019e95

View file

@ -1513,8 +1513,8 @@ gcm_prefs_add_device (CcColorPanel *prefs, CdDevice *device)
/* create sort order */ /* create sort order */
sort = g_strdup_printf ("%s%s", sort = g_strdup_printf ("%s%s",
gcm_prefs_device_kind_to_sort (kind), gcm_prefs_device_kind_to_sort (kind),
title); title);
/* watch for changes to update the status icons */ /* watch for changes to update the status icons */
g_signal_connect (device, "changed", g_signal_connect (device, "changed",
@ -1525,12 +1525,12 @@ gcm_prefs_add_device (CcColorPanel *prefs, CdDevice *device)
g_debug ("add %s to device list", id); g_debug ("add %s to device list", id);
gtk_tree_store_append (priv->list_store_devices, &parent, NULL); gtk_tree_store_append (priv->list_store_devices, &parent, NULL);
gtk_tree_store_set (priv->list_store_devices, &parent, gtk_tree_store_set (priv->list_store_devices, &parent,
GCM_PREFS_COLUMN_DEVICE, device, GCM_PREFS_COLUMN_DEVICE, device,
GCM_PREFS_COLUMN_DEVICE_ID, id, GCM_PREFS_COLUMN_DEVICE_ID, id,
GCM_PREFS_COLUMN_SORT, sort, GCM_PREFS_COLUMN_SORT, sort,
GCM_PREFS_COLUMN_TITLE, title, GCM_PREFS_COLUMN_TITLE, title,
GCM_PREFS_COLUMN_ICON, icon_name, GCM_PREFS_COLUMN_ICON, icon_name,
-1); -1);
gcm_prefs_device_set_model_by_iter (prefs, device, &parent); gcm_prefs_device_set_model_by_iter (prefs, device, &parent);
g_free (sort); g_free (sort);
g_free (title); g_free (title);