]> saetta.ns0.it Git - libgdaex/commitdiff
Fixed two functions not updated to libgda 4.
authorAndrea Zagli <azagli@libero.it>
Sun, 26 Jul 2009 10:07:57 +0000 (12:07 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 26 Jul 2009 10:07:57 +0000 (12:07 +0200)
src/gdaex.c

index 897a8ded2417d7c5d0d1ffe509437f232aa21f59..7d4bdfe23956a0cbe1d60b0f73277baf7755ef93 100644 (file)
@@ -189,7 +189,7 @@ GdaEx
        GdaEx *gdaex;
        GdaExPrivate *priv;
 
-       g_return_val_if_fail (IS_GDA_CONNECTION (conn), NULL);
+       g_return_val_if_fail (GDA_IS_CONNECTION (conn), NULL);
 
        gdaex = gdaex_new_ ();
 
@@ -906,7 +906,7 @@ gdaex_free (GdaEx *gdaex)
        GdaExPrivate *priv = GDAEX_GET_PRIVATE (gdaex);
 
        /* close connection */
-       if (gda_connection_is_open (priv->gda_conn))
+       if (gda_connection_is_opened (priv->gda_conn))
                {
                        gda_connection_close (priv->gda_conn);
                }