]> saetta.ns0.it Git - solipa/libsolipa/commitdiff
Deprecazioni varie e header non inclusi in glib.h.
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Wed, 12 Aug 2015 10:20:25 +0000 (12:20 +0200)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Wed, 12 Aug 2015 10:20:25 +0000 (12:20 +0200)
12 files changed:
src/allegato.c
src/ooo.c
src/solipa.c
src/utils.c
tests/allegato.c
tests/mail_check_address.c
tests/mail_get_addresses_from_string.c
tests/mailui.c
tests/utils_compare_version.c
tests/utils_gdatetime.c
tests/utils_gstring_initial_capital.c
tests/utils_gtktreemodel_copy.c

index 16a56b3b7f396465565447af40d8c062db043882..bbf3fbf33c0c5f050b276f4b8ae189823e16c425 100644 (file)
@@ -20,6 +20,8 @@
        #include <config.h>
 #endif
 
+#include <glib/gstdio.h>
+
 #include <libgda/libgda.h>
 #include <sql-parser/gda-sql-parser.h>
 
@@ -606,7 +608,7 @@ solipa_allegato_on_btn_file_clicked (GtkButton *button,
        if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT)
                {
                        char *filename;
-                       struct stat buf;
+                       GStatBuf buf;
 
                        filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
 
index ccdcbcc989ea38f0478c32f4b9bd1cc36f2728f7..0fc28c7b6f84ad9bd10bd87f0bf0da0a6b6ee092 100644 (file)
--- a/src/ooo.c
+++ b/src/ooo.c
@@ -22,6 +22,8 @@
 
 #include <Python.h>
 
+#include <glib/gstdio.h>
+
 #include "ooo.h"
 
 static void solipa_ooo_class_init (SolipaOOOClass *class);
index cf82eb6854d946cfc8016f4b2099350a2d6ae480..44e0f3be129d44026bff1f7e8dae3b12913a046f 100644 (file)
@@ -22,6 +22,7 @@
 
 #include <stdlib.h>
 
+#include <glib/gstdio.h>
 #include <gtk/gtk.h>
 
 #ifdef G_OS_WIN32
@@ -113,10 +114,6 @@ Solipa
        Solipa *solipa;
        SolipaPrivate *priv;
 
-       /* inizializzo GType e GThread */
-       g_type_init ();
-       g_thread_init (NULL);
-
        solipa = SOLIPA (g_object_new (solipa_get_type (), NULL));
        priv = SOLIPA_GET_PRIVATE (solipa);
 
index 776c91108ed7e121d4a7a9034fbc018f72f9ae0d..6201b2250c3d3be3fa1b472b81cc967b4407a22d 100644 (file)
@@ -26,6 +26,7 @@
 #include <errno.h>
 #include <math.h>
 
+#include <glib/gstdio.h>
 #include <gio/gio.h>
 #include <gtk/gtk.h>
 
@@ -1899,7 +1900,7 @@ solipa_apri_collegamento (GtkWindow *transient, const gchar *indirizzo)
 #ifdef G_OS_WIN32
 
        /* da rimuovere quando gnome-vfs-extra (o gvfs) sarĂ  compilabile in win */
-       guint err;
+       HINSTANCE err;
 
        err = ShellExecute (NULL, "open", indirizzo, NULL, NULL, SW_SHOW);
        if (err < 33)
index 2666a2a2b0c96d1d8f3eb463efc62dba09a50f33..fdb384bd840c0b594272ebc297a6a834a8c0904a 100644 (file)
@@ -16,8 +16,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#include <solipa.h>
-#include <allegato.h>
+#include "solipa.h"
+#include "allegato.h"
+#include "utils.h"
 
 GtkWidget *w;
 
index e3a1a14f444c6fbf5fc581591d64e40f1c5ccc00..23f5fcedc2e9e4a27ee33f14d72f58907f63f1ef 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2011-2015 Andrea Zagli <azagli@libero.it>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -21,8 +21,6 @@
 int
 main (int argc, char **argv)
 {
-       g_type_init ();
-
        if (argc != 2) return 0;
 
        if (!solipa_mail_check_email_address (argv[1]))
index d94f19dd44dcd17d2fd44e5f57447c49cf854994..3400b11e5214998e432d0cfd2c60fb2e5facf0b3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2011-2015 Andrea Zagli <azagli@libero.it>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -26,8 +26,6 @@ main (int argc, char **argv)
        gchar *name;
        gchar *address;
 
-       g_type_init ();
-
        if (argc != 2) return 0;
 
        lst = solipa_mail_get_addresses_from_string (argv[1]);
index ab339cdd412c109bf157423a8665b499b45568b3..c8a0334ebef403177cc44036f7f63e0085921a29 100644 (file)
@@ -16,6 +16,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
+#include "utils.h"
 #include <mailui.h>
 
 Solipa *solipa;
index 7c85be012a9449b89083105c6ac464ce57810393..be10577f4f1fb83c1c90ed8f3e82d69cb1841c42 100644 (file)
@@ -25,8 +25,6 @@ main (int argc, char *argv[])
        int ret;
        guint part;
 
-       g_type_init ();
-
        if (argc == 3)
                {
                        ret = solipa_compare_version (argv[1], argv[2], NULL, &part);
index 457e3567dc827226780eac0cded115da9f5b3232..eedf156c2ee6525b1897408bb00be2324ad8c42c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2011-2015 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -24,8 +24,6 @@ main (int argc, char *argv[])
 {
        GDateTime *gdatetime;
 
-       g_type_init ();
-
        if (argc == 3)
                {
                        gdatetime = solipa_get_gdatetime_from_string (argv[1], argv[2]);
index 7aee2f73c38baa2706dc06e0ba1f54908feb7918..d53c712f5fdf6517721d7fece620d953659ff742 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2012 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2012-2015 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -24,8 +24,6 @@ main (int argc, char *argv[])
 {
        GString *str;
 
-       g_type_init ();
-
        if (argc == 2)
                {
                        str = g_string_new (argv[1]);
index fea02fb05909f2ca049cb75aa43b13cc0fa00e1d..d0febdc428be30c05aa62502b0a7c7b13dcc6807 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2011-2015 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -16,6 +16,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
+#include <glib/gprintf.h>
+
 #include <solipa.h>
 #include <utils.h>