diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2011-05-31 18:27:15 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2011-05-31 18:27:15 +0200 |
commit | 3d87ce7865cfb224269e6f90d6f1b244b32e00a7 (patch) | |
tree | d5c053f7f2ad3760160c07c589511481c208782b | |
parent | 61acd9e80025bbfbc6e1ad575a2aa997273d620d (diff) |
proper debug output again, enabled by mistake
-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 3d92163b75c3..d88ef7c7dbb4 100644 --- a/vcl/unx/generic/plugadapt/salplug.cxx +++ b/vcl/unx/generic/plugadapt/salplug.cxx @@ -182,10 +182,10 @@ static SalInstance* autodetect_plugin() { rtl::OUString aTry( rtl::OUString::createFromAscii( pList[nListEntry] ) ); pInst = tryInstance( aTry ); -// #if OSL_DEBUG_LEVEL > 1 + #if OSL_DEBUG_LEVEL > 1 if( pInst ) std::fprintf( stderr, "plugin autodetection: %s\n", pList[nListEntry] ); -// #endif + #endif nListEntry++; } |