diff options
Diffstat (limited to 'src/eggsmclient.c')
-rw-r--r-- | src/eggsmclient.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/eggsmclient.c b/src/eggsmclient.c index 6f78626..4035060 100644 --- a/src/eggsmclient.c +++ b/src/eggsmclient.c @@ -333,23 +333,7 @@ egg_sm_client_get (void) if (global_client_mode != EGG_SM_CLIENT_MODE_DISABLED && !sm_client_disable) { -#if defined (GDK_WINDOWING_WIN32) - global_client = egg_sm_client_win32_new (); -#elif defined (GDK_WINDOWING_QUARTZ) - global_client = egg_sm_client_osx_new (); -#else - /* If both D-Bus and XSMP are compiled in, try XSMP first - * (since it supports state saving) and fall back to D-Bus - * if XSMP isn't available. - */ -# ifdef EGG_SM_CLIENT_BACKEND_XSMP global_client = egg_sm_client_xsmp_new (); -# endif -# ifdef EGG_SM_CLIENT_BACKEND_DBUS - if (!global_client) - global_client = egg_sm_client_dbus_new (); -# endif -#endif } /* Fallback: create a dummy client, so that callers don't have |