[Libreoffice-commits] .: cui/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Mon Nov 26 08:35:45 PST 2012
cui/source/options/certpath.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 3bdd04fc0466154e16243cf233fb2bb3ad4043a0
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Mon Nov 26 17:35:15 2012 +0100
Improve error reporting
Change-Id: I46e97b59716e5d716ac5d76a0bd6af5eea05a57f
diff --git a/cui/source/options/certpath.cxx b/cui/source/options/certpath.cxx
index 95709ac..e567260 100644
--- a/cui/source/options/certpath.cxx
+++ b/cui/source/options/certpath.cxx
@@ -253,9 +253,9 @@ IMPL_LINK_NOARG(CertPathDialog, AddHdl_Impl)
AddCertPath(m_sManual, aPath);
}
}
- catch (const uno::Exception&)
+ catch (uno::Exception & e)
{
- SAL_WARN( "cui.options", "CertPathDialog::AddHdl_Impl(): caught exception" );
+ SAL_WARN("cui.options", "caught UNO exception: " << e.Message);
}
return 0;
More information about the Libreoffice-commits
mailing list