merge the formfield patch from ooo-build
[ooovba.git] / applied_patches / 0040-fix-gtk-a11y-gail-version-warning.diff
blob56a026b3a7ac0ff11906051fa89025ccb4709232
1 --- vcl/unx/gtk/a11y/atkbridge.cxx.old 2009-04-02 12:44:27.000000000 +0200
2 +++ vcl/unx/gtk/a11y/atkbridge.cxx 2009-04-03 20:19:54.000000000 +0200
3 @@ -44,7 +44,9 @@ bool InitAtkBridge(void)
4 const char* pVersion = atk_get_toolkit_version();
5 if( ! pVersion )
7 - g_warning( "unable to get gail version number" );
8 + // InitAtkBridge is always called; we should not bother users with a warning
9 + // if they have not enabled the accessibilty support on their system
10 + // g_warning( "unable to get gail version number" );
11 return false;