diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2011-12-15 08:18:28 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-12-15 08:21:34 +0200 |
commit | 38b097840f1139ada4abf11c5ce7a4691fa29c0b (patch) | |
tree | 606eaea914b842b8029716e3d18847addc3a71dc /vcl/unx | |
parent | 0f44079ce20ece1931c40f62584013ac6d1668e4 (diff) |
The "generic" thing is X11-specific
Diffstat (limited to 'vcl/unx')
-rw-r--r-- | vcl/unx/generic/plugadapt/salplug.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/unx/generic/plugadapt/salplug.cxx b/vcl/unx/generic/plugadapt/salplug.cxx index 9bd9781e3197..8b4488d4f10c 100644 --- a/vcl/unx/generic/plugadapt/salplug.cxx +++ b/vcl/unx/generic/plugadapt/salplug.cxx @@ -52,12 +52,12 @@ static oslModule pCloseModule = NULL; static SalInstance* tryInstance( const OUString& rModuleBase ) { SalInstance* pInst = NULL; - +#ifndef ANDROID // Disable gtk3 plugin load except in experimental mode for now. if( rModuleBase.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "gtk3" ) ) && !SalGenericSystem::enableExperimentalFeatures() ) return NULL; - +#endif OUStringBuffer aModName( 128 ); aModName.appendAscii( SAL_DLLPREFIX"vclplug_" ); aModName.append( rModuleBase ); |