From 40148688983cb799adb8d9a5ceffd592a67b2ea5 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Wed, 22 Aug 2012 01:08:14 +0200 Subject: [PATCH] Fix ambiguous "Log" class: GLib.Log is wanted here diff --git a/test/direct/query-operators-test.vala b/test/direct/query-operators-test.vala index 9dd22c5..8165f8e 100644 --- a/test/direct/query-operators-test.vala +++ b/test/direct/query-operators-test.vala @@ -26,7 +26,7 @@ int main (string[] args) Test.init (ref args); // Do not abort on warning()s. - Log.set_always_fatal (LogLevelFlags.LEVEL_CRITICAL); + GLib.Log.set_always_fatal (LogLevelFlags.LEVEL_CRITICAL); // This test will connect to the database, make sure it won't mess up // anything. diff --git a/test/direct/table-lookup-test.vala b/test/direct/table-lookup-test.vala index 457aa42..0ce51ef 100644 --- a/test/direct/table-lookup-test.vala +++ b/test/direct/table-lookup-test.vala @@ -27,7 +27,7 @@ int main (string[] args) Test.init (ref args); // Do not abort on warning()s. - Log.set_always_fatal (LogLevelFlags.LEVEL_CRITICAL); + GLib.Log.set_always_fatal (LogLevelFlags.LEVEL_CRITICAL); // This test will use the database, make sure it won't mess up // the system. diff --git a/test/direct/where-clause-test.vala b/test/direct/where-clause-test.vala index c78074e..e746daf 100644 --- a/test/direct/where-clause-test.vala +++ b/test/direct/where-clause-test.vala @@ -26,7 +26,7 @@ int main (string[] args) Test.init (ref args); // Do not abort on warning()s. - Log.set_always_fatal (LogLevelFlags.LEVEL_CRITICAL); + GLib.Log.set_always_fatal (LogLevelFlags.LEVEL_CRITICAL); Test.add_func ("/WhereClause/basic", basic_test); Test.add_func ("/WhereClause/nested", nested_test); -- 1.7.9.5