]> saetta.ns0.it Git - zakconfi/libzakconfi/commitdiff
Removed Confi::path_move.
authorAndrea Zagli <azagli@libero.it>
Thu, 18 Dec 2014 15:14:10 +0000 (16:14 +0100)
committerAndrea Zagli <azagli@libero.it>
Thu, 18 Dec 2014 15:14:10 +0000 (16:14 +0100)
src/libconfi.c
src/libconfi.h

index 421860fb1de43de6fd58cd6550fd599be54e2d88..ca4118b1907f5e0d31999a009d33e3ad745abc29 100644 (file)
@@ -453,46 +453,6 @@ confi_path_set_value (Confi *confi, const gchar *path, const gchar *value)
        return ret;
 }
 
-/**
- * confi_path_move:
- * @confi: a #Confi object.
- * @path: the key's path to move.
- * @parent: the path where add the key.
- *
- */
-gboolean
-confi_path_move (Confi *confi, const gchar *path, const gchar *parent)
-{
-       GdaDataModel *dmPath;
-       GdaDataModel *dmParent;
-
-       gboolean ret;
-       gchar *sql;
-
-       ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
-
-       //dmPath = path_get_data_model (confi, path_normalize (confi, path));
-       if (dmPath == NULL) return FALSE;
-
-       //dmParent = path_get_data_model (confi, path_normalize (confi, parent));
-       if (dmParent == NULL) return FALSE;
-
-       ret = TRUE;
-       sql = g_strdup_printf ("UPDATE %cvalues%c "
-                                     "SET id_parent = %d "
-                                     "WHERE id_configs = %d "
-                                     "AND id = %d",
-                                     priv->chrquot, priv->chrquot,
-                                     gdaex_data_model_get_field_value_integer_at (dmParent, 0, "id"),
-                                     priv->id_config,
-                                     gdaex_data_model_get_field_value_integer_at (dmPath, 0, "id"));
-
-       ret = (gdaex_execute (priv->gdaex, sql) >= 0);
-       g_free (sql);
-
-       return ret;
-}
-
 /**
  * confi_path_get_confi_key:
  * @confi: a #Confi object.
index 4d43f97fb1adad3682cf8357df1e4726fc482342..0955a8bbb22060a720a12f1dbac5a9e1cc1e0646 100644 (file)
@@ -82,10 +82,6 @@ gboolean confi_path_set_value (Confi *confi,
                                const gchar *path,
                                const gchar *value);
 
-gboolean confi_path_move (Confi *confi,
-                          const gchar *path,
-                          const gchar *parent);
-
 ConfiKey *confi_path_get_confi_key (Confi *confi,
                                     const gchar *path);