summaryrefslogtreecommitdiff
path: root/examples/thread
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2011-10-26 22:34:01 +0200
committerMurray Cumming <murrayc@murrayc.com>2011-10-26 22:34:01 +0200
commit3e0fbb22c0d4814de4174d32e12a45cbad79980e (patch)
treec1c60b6b2900c9ef61146cd2a7ebec6c1d0219d7 /examples/thread
parentacf84955b9a86597e4675a0edc0848851ecafba7 (diff)
downloadglibmm-3e0fbb22c0d4814de4174d32e12a45cbad79980e.tar.gz
Avoid use of deprecated API in tests and examples.
* tests/Makefile.am: * examples/Makefile.am: Disable deprecated API. * examples/network/socket-client.cc: * examples/network/socket-server.cc: * examples/thread/dispatcher.cc: * examples/thread/dispatcher2.cc: * examples/thread/thread.cc: Remove calls to Glib::thread_init(), instead calling Glib::init() where that side-effect was also intended.
Diffstat (limited to 'examples/thread')
-rw-r--r--examples/thread/dispatcher.cc2
-rw-r--r--examples/thread/dispatcher2.cc2
-rw-r--r--examples/thread/thread.cc4
3 files changed, 4 insertions, 4 deletions
diff --git a/examples/thread/dispatcher.cc b/examples/thread/dispatcher.cc
index d5d7d8b0..01906ab9 100644
--- a/examples/thread/dispatcher.cc
+++ b/examples/thread/dispatcher.cc
@@ -213,7 +213,7 @@ void Application::on_progress_finished(ThreadProgress* thread_progress)
int main(int, char**)
{
- Glib::thread_init();
+ Glib::init();
Application application;
application.run();
diff --git a/examples/thread/dispatcher2.cc b/examples/thread/dispatcher2.cc
index fd7379e3..2f837b31 100644
--- a/examples/thread/dispatcher2.cc
+++ b/examples/thread/dispatcher2.cc
@@ -216,7 +216,7 @@ void Dispatcher::end()
int main(int, char**)
{
- Glib::thread_init();
+ Glib::init();
main_loop = Glib::MainLoop::create();
Dispatcher dispatcher;
diff --git a/examples/thread/thread.cc b/examples/thread/thread.cc
index 1e26430e..06c25f8c 100644
--- a/examples/thread/thread.cc
+++ b/examples/thread/thread.cc
@@ -4,7 +4,7 @@
#include <glibmm/thread.h>
#include <glibmm/random.h>
#include <glibmm/timer.h>
-
+#include <glibmm/init.h>
namespace
{
@@ -93,7 +93,7 @@ void MessageQueue::consumer()
int main(int, char**)
{
- Glib::thread_init();
+ Glib::init();
MessageQueue queue;