diff options
Diffstat (limited to 'camel/camel-formatter.c')
-rw-r--r-- | camel/camel-formatter.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/camel/camel-formatter.c b/camel/camel-formatter.c index 6f66d8293a..469a096689 100644 --- a/camel/camel-formatter.c +++ b/camel/camel-formatter.c @@ -235,9 +235,15 @@ typedef void (*mime_handler_fn) (CamelFormatter *formatter, static gchar* lookup_unique_id (CamelDataWrapper* root, CamelDataWrapper* child) { + /* ** FIXME : replace this with a string representing + the location of the objetc in the tree */ /* TODO: assert our return value != NULL */ - return "NYI"; + gchar *temp_hack_uid; + + temp_hack_uid = g_strdup_printf ("%p", camel_data_wrapper_get_output_stream (child)); + + return temp_hack_uid; } static GHashTable* mime_function_table; |