View | Details | Raw Unified | Return to bug 460890
Collapse All | Expand All

(-)gtk+-2.14.4/modules/other/gail/gail.c (+11 lines)
Lines 27-32 Link Here
27
#include "gailfactory.h"
27
#include "gailfactory.h"
28
28
29
#define GNOME_ACCESSIBILITY_ENV "GNOME_ACCESSIBILITY"
29
#define GNOME_ACCESSIBILITY_ENV "GNOME_ACCESSIBILITY"
30
#define NO_GAIL_ENV "NO_GAIL"
30
31
31
static gboolean gail_focus_watcher      (GSignalInvocationHint *ihint,
32
static gboolean gail_focus_watcher      (GSignalInvocationHint *ihint,
32
                                         guint                  n_param_values,
33
                                         guint                  n_param_values,
Lines 976-981 Link Here
976
int
977
int
977
gtk_module_init (gint *argc, char** argv[])
978
gtk_module_init (gint *argc, char** argv[])
978
{
979
{
980
  const char* env_no_gail;
981
  gboolean no_gail = FALSE;
982
983
  env_no_gail = g_getenv (NO_GAIL_ENV);
984
  if (env_no_gail)
985
      no_gail = atoi (env_no_gail);
986
987
  if (no_gail)
988
      return 0;
989
979
  gail_accessibility_module_init ();
990
  gail_accessibility_module_init ();
980
991
981
  return 0;
992
  return 0;

Return to bug 460890