aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-fs-gtk_main-window-meta-data-context-menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/gnunet-fs-gtk_main-window-meta-data-context-menu.c')
-rw-r--r--src/fs/gnunet-fs-gtk_main-window-meta-data-context-menu.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/fs/gnunet-fs-gtk_main-window-meta-data-context-menu.c b/src/fs/gnunet-fs-gtk_main-window-meta-data-context-menu.c
index f5ecc1ab..06e58b67 100644
--- a/src/fs/gnunet-fs-gtk_main-window-meta-data-context-menu.c
+++ b/src/fs/gnunet-fs-gtk_main-window-meta-data-context-menu.c
@@ -48,7 +48,12 @@ copy_metadata_to_clipboard (GtkTreeModel * model, GtkTreePath * path,
48 gchar *type; 48 gchar *type;
49 gchar *value; 49 gchar *value;
50 50
51 gtk_tree_model_get (model, iter, 2, &type, 3, &value, -1); 51 gtk_tree_model_get (model, iter,
52 GNUNET_GTK_FS_MAIN_WINDOW_META_DATA_MC_META_TYPE_STRING,
53 &type,
54 GNUNET_GTK_FS_MAIN_WINDOW_META_DATA_MC_META_VALUE,
55 &value,
56 -1);
52 *l = g_list_prepend (*l, type); 57 *l = g_list_prepend (*l, type);
53 *l = g_list_prepend (*l, value); 58 *l = g_list_prepend (*l, value);
54} 59}