[Tomoe-cvs 1015] CVS update: tomoe/lib

Back to archive index

Takuro Ashie makei****@users*****
2006年 11月 25日 (土) 20:19:26 JST


Index: tomoe/lib/tomoe-dict.c
diff -u tomoe/lib/tomoe-dict.c:1.71 tomoe/lib/tomoe-dict.c:1.72
--- tomoe/lib/tomoe-dict.c:1.71	Sat Nov 25 15:56:32 2006
+++ tomoe/lib/tomoe-dict.c	Sat Nov 25 20:19:26 2006
@@ -21,7 +21,7 @@
  *  Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  *  Boston, MA  02111-1307  USA
  *
- *  $Id: tomoe-dict.c,v 1.71 2006/11/25 06:56:32 makeinu Exp $
+ *  $Id: tomoe-dict.c,v 1.72 2006/11/25 11:19:26 makeinu Exp $
  */
 
 #include <stdio.h>
@@ -41,8 +41,6 @@
 #define DICT_LETTER_INITIAL_SIZE 3049
 #define DICT_LETTER_EXPAND_SIZE 10
 
-extern int xmlLoadExtDtdDefaultValue;
-
 #define TOMOE_DICT_GET_PRIVATE(obj) \
   (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TOMOE_TYPE_DICT, TomoeDictPrivate))
 
@@ -55,8 +53,6 @@
 
     gboolean             editable;
     gboolean             modified;
-
-	GMarkupParseContext *context;
 };
 
 typedef struct _TomoeDictSearchContext {
@@ -150,7 +146,7 @@
     priv->filename = NULL;
     priv->name     = NULL;
     priv->letters  = g_ptr_array_new();
-    priv->context  = NULL;
+    priv->modified = FALSE;
 }
 
 
@@ -158,7 +154,6 @@
 tomoe_dict_new (const char* filename, gboolean editable)
 {
     TomoeDict* dict;
-    TomoeDictPrivate *priv;
 
     if (!filename && !*filename) return NULL;
 
@@ -166,12 +161,9 @@
                         "filename", filename,
                         "editable", editable,
                         NULL);
-    priv = TOMOE_DICT_GET_PRIVATE (dict);
 
     tomoe_dict_load (dict);
 
-    priv->modified = FALSE;
-
     return dict;
 }
 
@@ -736,6 +728,7 @@
 tomoe_dict_load (TomoeDict *dict)
 {
     TomoeDictPrivate *priv = TOMOE_DICT_GET_PRIVATE(dict);
+	GMarkupParseContext *context;
     FILE *f;
     gint bytes;
     gchar buf[4096];
@@ -755,16 +748,13 @@
     data.key = NULL;
     data.value = NULL;
 
-    if (!priv->context) {
-        priv->context = g_markup_parse_context_new (&parser, 0, &data, NULL);
-    }
+    context = g_markup_parse_context_new (&parser, 0, &data, NULL);
 
     while ((bytes = fread (buf, sizeof (char), 4096, f)) > 0) {
         GError *error = NULL;
         gboolean success;
 
-        success = g_markup_parse_context_parse(priv->context, buf, bytes,
-                                               &error);
+        success = g_markup_parse_context_parse(context, buf, bytes, &error);
         if (!success) {
             g_warning("XML parse error!: %s", error->message);
             g_error_free(error);
@@ -773,8 +763,7 @@
     }
 
     fclose (f);
-    g_markup_parse_context_free (priv->context);
-    priv->context = NULL;
+    g_markup_parse_context_free (context);
 
     if (priv->letters)
         g_ptr_array_sort (priv->letters, letter_compare_func);


tomoe-cvs メーリングリストの案内
Back to archive index