diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-04-19 10:51:31 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-04-19 10:51:31 +0300 |
commit | 652ef6e3131358e9d83dc45d2cbd90bf207a3aaf (patch) | |
tree | b153e24d6475503fc670319c27ae3549797b97b4 | |
parent | 53f5865c07d3a73ab81fd78337e246cddc08a914 (diff) |
WaE: unused variable 's_pAccessibleFactoryFunc'
Change-Id: I45f2dfcfedbcbd3aa1cbff965ce255ce9a413867
-rw-r--r-- | toolkit/source/helper/accessibilityclient.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/toolkit/source/helper/accessibilityclient.cxx b/toolkit/source/helper/accessibilityclient.cxx index 4a02a509fc7a..7364a5b09b5a 100644 --- a/toolkit/source/helper/accessibilityclient.cxx +++ b/toolkit/source/helper/accessibilityclient.cxx @@ -60,7 +60,9 @@ namespace toolkit #ifndef DISABLE_DYNLOADING static oslModule s_hAccessibleImplementationModule = NULL; #endif +#if HAVE_FEATURE_DESKTOP static GetStandardAccComponentFactory s_pAccessibleFactoryFunc = NULL; +#endif static ::rtl::Reference< IAccessibleFactory > s_pFactory; } @@ -260,7 +262,9 @@ namespace toolkit if( 0 == osl_atomic_decrement( &s_nAccessibilityClients ) ) { s_pFactory = NULL; +#if HAVE_FEATURE_DESKTOP s_pAccessibleFactoryFunc = NULL; +#endif if ( s_hAccessibleImplementationModule ) { osl_unloadModule( s_hAccessibleImplementationModule ); |