summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2013-10-28 11:17:47 +0100
committerStefano Karapetsas <[email protected]>2013-10-28 11:17:47 +0100
commit5e27c642d0f755771873254c936261126d20deb8 (patch)
treeaf5cef47a365ff24778f347b5b6ca63a43f18918
parent686ef72ea7b93f38623a3978a9bccb879b8565b4 (diff)
downloadmate-calc-5e27c642d0f755771873254c936261126d20deb8.tar.bz2
mate-calc-5e27c642d0f755771873254c936261126d20deb8.tar.xz
Fix g_type_init deprecations
-rw-r--r--src/mate-calc-cmd.c2
-rw-r--r--src/mate-calc.c2
-rw-r--r--src/test-mp-equation.c2
-rw-r--r--src/test-mp.c2
4 files changed, 8 insertions, 0 deletions
diff --git a/src/mate-calc-cmd.c b/src/mate-calc-cmd.c
index e65ac5a..ed6b556 100644
--- a/src/mate-calc-cmd.c
+++ b/src/mate-calc-cmd.c
@@ -74,7 +74,9 @@ main(int argc, char **argv)
/* Seed random number generator. */
srand48((long) time((time_t *) 0));
+#if !GLIB_CHECK_VERSION (2, 36, 0)
g_type_init ();
+#endif
setlocale(LC_ALL, "");
result_serializer = mp_serializer_new(MP_DISPLAY_FORMAT_AUTOMATIC, 10, 9);
diff --git a/src/mate-calc.c b/src/mate-calc.c
index 39c7f23..0094be8 100644
--- a/src/mate-calc.c
+++ b/src/mate-calc.c
@@ -189,7 +189,9 @@ int main(int argc, char **argv)
gchar *source_currency, *target_currency;
gchar *source_units, *target_units;
+#if !GLIB_CHECK_VERSION (2, 36, 0)
g_type_init();
+#endif
setlocale(LC_ALL, "");
bindtextdomain(GETTEXT_PACKAGE, LOCALE_DIR);
diff --git a/src/test-mp-equation.c b/src/test-mp-equation.c
index 95bb4a8..6460665 100644
--- a/src/test-mp-equation.c
+++ b/src/test-mp-equation.c
@@ -619,7 +619,9 @@ int
main (int argc, char **argv)
{
setlocale(LC_ALL, "C");
+#if !GLIB_CHECK_VERSION (2, 36, 0)
g_type_init ();
+#endif
test_conversions();
test_equations();
diff --git a/src/test-mp.c b/src/test-mp.c
index a750f2a..2b976ac 100644
--- a/src/test-mp.c
+++ b/src/test-mp.c
@@ -229,7 +229,9 @@ int
main (int argc, char **argv)
{
setlocale(LC_ALL, "C");
+#if !GLIB_CHECK_VERSION (2, 36, 0)
g_type_init ();
+#endif
test_mp();
test_numbers();