]> spindle.queued.net Git - midori/commitdiff
Rename HTML import function from mozilla to netscape to be more consistent.
authorPaweł Forysiuk <tuxator@o2.pl>
Sun, 30 Jan 2011 10:16:34 +0000 (11:16 +0100)
committerChristian Dywan <christian@twotoasts.de>
Sun, 30 Jan 2011 17:58:00 +0000 (18:58 +0100)
midori/midori-array.c

index f6495e58d6b0e1589b92f125784c9c2260240a5f..7e5f0f934fe6f149707e6ee214ae05c92900dc95 100644 (file)
@@ -294,7 +294,7 @@ katze_array_from_xmlDocPtr (KatzeArray* array,
 }
 
 static gboolean
-katze_array_from_mozilla_file (KatzeArray*  array,
+katze_array_from_netscape_file (KatzeArray* array,
                                const gchar* filename)
 {
     gchar* line  = NULL;
@@ -489,7 +489,7 @@ midori_array_from_file (KatzeArray*  array,
     if (!format)
         format = "";
 
-    /* mozilla html */
+    /* netscape html */
     if (!*format && g_str_has_suffix (filename, ".html"))
     {
         FILE* file;
@@ -501,7 +501,7 @@ midori_array_from_file (KatzeArray*  array,
                 g_strstrip (line);
                 if (katze_str_equal (line, "<!DOCTYPE NETSCAPE-Bookmark-file-1>"))
                 {
-                    if (!katze_array_from_mozilla_file (array, filename))
+                    if (!katze_array_from_netscape_file (array, filename))
                     {
                         /* Parsing failed */
                         fclose (file);