1. Before:
  2. if (!qname_prefix(code).id()) {
  3. gchar *svg_name = g_strconcat(prefix, ":", g_quark_to_string(code), NULL);
  4. repr->setCodeUnsafe(g_quark_from_string(svg_name));
  5. g_free(svg_name);
  6. }
  7. After:
  8. if (!qname_prefix(code).id()) {
  9. TempGString svg_name(g_strconcat(prefix, ":", g_quark_to_string(code), NULL));
  10. repr->setCodeUnsafe(g_quark_from_string(svg_name));
  11. }
 
 

36

 

498

Pasted Text #1574

PasteBin

Lines
12
Words
25
Size
401 bytes
Created
Type
text/plain
Public Domain (PD)
Please log in to leave a comment!