Kaydet (Commit) 97fc4005 authored tarafından Caolán McNamara's avatar Caolán McNamara

not every extension's help will have help in all langs, catch that exception

üst 3ea0a0a4
......@@ -35,6 +35,8 @@
#include <l10ntools/HelpSearch.hxx>
#include <rtl/oustringostreaminserter.hxx>
#include <algorithm>
#include <set>
......@@ -247,8 +249,13 @@ ResultSetForQuery::ResultSetForQuery( const uno::Reference< lang::XMultiServiceF
aIndexFolderResultVectorVector.push_back( pIndexFolderHitItemVector );
aIndexFolderResultVector.clear();
}
catch( const Exception& )
catch (const Exception &e)
{
SAL_WARN("xmlhelp", "Exception: " << e.Message);
}
catch (CLuceneError &e)
{
SAL_WARN("xmlhelp", "CLuceneError: " << e.what());
}
++iDir;
......
......@@ -59,12 +59,13 @@ SHL1STDLIBS= \
$(CPPULIB) \
$(COMPHELPERLIB) \
$(HELPLINKERLIB) \
$(CLUCENELIB) \
$(SALLIB) \
$(EXPATASCII3RDLIB) \
$(UNOTOOLSLIB) \
$(UCBHELPERLIB) \
$(BERKELEYLIB) \
$(XSLTLIB)
$(BERKELEYLIB) \
$(XSLTLIB)
SHL1LIBS = \
$(SLB)$/jaqe.lib \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment