diff options
Diffstat (limited to 'gio/giomm/init.cc')
-rw-r--r-- | gio/giomm/init.cc | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/gio/giomm/init.cc b/gio/giomm/init.cc index 7d592836..4891cdbb 100644 --- a/gio/giomm/init.cc +++ b/gio/giomm/init.cc @@ -18,18 +18,19 @@ */ #include "init.h" + namespace Gio { -void -init () +void init() { - static bool s_init = false ; - if (!s_init) { - Glib::init () ; - Gio::wrap_init () ; - s_init = true ; - } + static bool s_init = false ; + if(!s_init) + { + Glib::init(); + Gio::wrap_init(); + s_init = true; + } } -} +} //namespace Gio |