[gnome-color-manager] Don't show profiles without filenames in gcm-viewer
- From: Richard Hughes <rhughes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-color-manager] Don't show profiles without filenames in gcm-viewer
- Date: Tue, 10 May 2011 01:51:48 +0000 (UTC)
commit 991b50135f283ef4705c802897460a7df46f1ec0
Author: Richard Hughes <richard hughsie com>
Date: Tue May 10 02:51:27 2011 +0100
Don't show profiles without filenames in gcm-viewer
src/gcm-viewer.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/src/gcm-viewer.c b/src/gcm-viewer.c
index 980141c..b161abe 100644
--- a/src/gcm-viewer.c
+++ b/src/gcm-viewer.c
@@ -249,11 +249,13 @@ gcm_viewer_update_profile_list (GcmViewerPrivate *viewer)
profile_kind = cd_profile_get_kind (profile);
icon_name = gcm_viewer_profile_kind_to_icon_name (profile_kind);
gtk_list_store_append (viewer->list_store_profiles, &iter);
+ filename = cd_profile_get_filename (profile);
+ if (filename == NULL)
+ continue;
description = cd_profile_get_title (profile);
sort = g_strdup_printf ("%s%s",
gcm_viewer_profile_get_sort_string (profile_kind),
description);
- filename = cd_profile_get_filename (profile);
g_debug ("add %s to profiles list", filename);
gtk_list_store_set (viewer->list_store_profiles, &iter,
GCM_PROFILES_COLUMN_ID, filename,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]