]> saetta.ns0.it Git - libgtkform/commitdiff
Bug fix for datetime fields sql value.
authorAndrea Zagli <azagli@libero.it>
Sun, 1 Nov 2009 15:16:58 +0000 (16:16 +0100)
committerAndrea Zagli <azagli@libero.it>
Sun, 1 Nov 2009 15:16:58 +0000 (16:16 +0100)
.gitignore
docs/reference/libgtkform-decl.txt
src/fielddatetime.c
test/database.db
test/from_xml_with_db.c

index 149fee46a4413fd7e9e5f13658715e8946033023..cd9f704a7d5d9d89069730765f6dcbff37be120e 100644 (file)
@@ -10,6 +10,9 @@
 *.stamp
 *.tar.gz
 *.pc
+*.sed
+*.sin
+*.header
 .libs
 .deps
 ABOUT-NLS
@@ -17,6 +20,7 @@ INSTALL
 Makefile
 Makefile.in
 Makefile.in.in
+Makevars
 aclocal.m4
 autom4te.cache/
 config.guess
@@ -43,3 +47,4 @@ POTFILES
 mkinstalldirs
 stamp-it
 intltool-*
+Rules-quot
index 74cb43a93f50c26fbdcc71910b3809387994b644..724ce229d357bd8f2b91ba77820626ae25d406d1 100644 (file)
@@ -1049,7 +1049,7 @@ GtkForm *form
 </FUNCTION>
 <FUNCTION>
 <NAME>gtk_form_get_table</NAME>
-<RETURNS>const gchar *</RETURNS>
+<RETURNS>gchar *</RETURNS>
 GtkForm *form
 </FUNCTION>
 <FUNCTION>
index ff56a5e520f55ffa43251777dae2ff721ab95764..ba03320e2f4085f2135f2670259d796f2603d212 100644 (file)
@@ -211,7 +211,7 @@ gchar
        gchar *format;
        GtkFormFieldDateTimePrivate *priv;
 
-       ret = g_strdup ("''");
+       ret = g_strdup ("NULL");
 
        g_return_val_if_fail (IS_GTK_FORM_FIELD_DATETIME (field), ret);
 
index 8ba071fbb5132c66f70c0a71c55970715707c8ee..0660349eff5feb8860ee97696849d20830a37c28 100644 (file)
Binary files a/test/database.db and b/test/database.db differ
index bfe95cdcb3925307840445bdf9282e1987f9d84d..a050d9c8da78d9a44d6ffe93cf6a28044ee30145 100644 (file)
@@ -72,7 +72,7 @@ on_btn_save_clicked (GtkButton *button,
 {
        gchar *sql;
 
-       if (!gtk_form_check (form, TRUE, NULL, TRUE, w, FALSE))
+       if (!gtk_form_check (form, FALSE, NULL, TRUE, w, FALSE))
                {
                        return;
                }