gboolean gsd_datetime_mechanism_get_timezone (GsdDatetimeMechanism *mechism, DBusGMethodInvocation *context) { gchar *timezone; reset_killtimer (); timezone = system_timezone_find (); dbus_g_method_return (context, timezone); return TRUE; }
/** * e_cal_system_timezone_get_location: * * Returns system timezone location string, NULL on an error. * Returned pointer should be freed with g_free(). * * Note: Since 3.4 the returned timezone location is either NULL or * an equivalent within known libical timezones. * * Since: 2.28 **/ gchar * e_cal_system_timezone_get_location (void) { #ifndef G_OS_WIN32 return system_timezone_find (); #else gchar *windows_timezone_string = NULL; gchar *olson_timezone_string = NULL; if (!(windows_timezone_string = system_timezone_win32_query_registry ())) return NULL; olson_timezone_string = windows_timezone_string_to_olson (windows_timezone_string); g_free (windows_timezone_string); if (!olson_timezone_string) return NULL; g_debug ("Olson Timezone String: %s\n", olson_timezone_string); return olson_timezone_string; #endif }