l10ntools/source/localize.cxx      |    1 +
 svtools/source/contnr/templwin.cxx |   13 ++++++++++---
 unusedcode.exclude                 |    3 +++
 3 files changed, 14 insertions(+), 3 deletions(-)

New commits:
commit c0ae8f9a03ab292de8bfdce29c3ccbb9965a3068
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Tue Nov 20 13:32:05 2012 +0100

    Improve error reporting
    
    Change-Id: Icdafde88e3984cf3689f591216a890392892dfce

diff --git a/svtools/source/contnr/templwin.cxx 
b/svtools/source/contnr/templwin.cxx
index 714667f..011dff1 100644
--- a/svtools/source/contnr/templwin.cxx
+++ b/svtools/source/contnr/templwin.cxx
@@ -1455,8 +1455,11 @@ void SvtDocumentTemplateDialog::InitImpl( )
         aPackageBtn.SetClickHdl( LINK( this, SvtDocumentTemplateDialog, 
PackageHdl_Impl ) );
         aPackageBtn.Enable(xSyncDbusSessionHelper.is());
     }
-    catch(...)
+    catch (Exception & e)
     {
+        SAL_INFO(
+            "svtools.contnr",
+            "disable Install Template Pack, caught " << e.Message);
         aPackageBtn.Enable(false);
     }
     Link aLink = LINK( this, SvtDocumentTemplateDialog, OKHdl_Impl );
@@ -1656,8 +1659,12 @@ IMPL_LINK_NOARG(SvtDocumentTemplateDialog, 
PackageHdl_Impl)
         ::rtl::OUString sInteraction("");
         xSyncDbusSessionHelper->InstallPackageNames(0, vPackages, 
sInteraction);
     }
-    catch(...)
-    { }
+    catch (Exception & e)
+    {
+        SAL_INFO(
+            "svtools.contnr",
+            "trying Install Template Pack, caught " << e.Message);
+    }
     return 0;
 }
 
commit 50b4b0db8bcf33e26dc332d558f0e03c65ad742b
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Tue Nov 20 13:31:00 2012 +0100

    Add comphelper/configuration.hxx functions to unusedcode.exclude
    
    The functionality in comphelper/configuration.hxx is used by C++ headers to
    simplify configuration access that are generated via
    officecfg/Package_cppheader.mk.
    
    Change-Id: I85d26309ec8c4f8ac5cde773fd3298a699bad030

diff --git a/unusedcode.exclude b/unusedcode.exclude
index f6dc906..dc8ec70 100644
--- a/unusedcode.exclude
+++ b/unusedcode.exclude
@@ -24,3 +24,6 @@ apitest::XPropertySet::testAddVetoableChangeListener()
 apitest::XPropertySet::testRemovePropertyChangeListener()
 apitest::XPropertySet::testRemoveVetoableChangeListener()
 apitest::XSpreadsheetDocument::testGetSheets()
+comphelper::detail::ConfigurationWrapper::getGroupReadWrite(boost::shared_ptr<comphelper::ConfigurationChanges>
 const&, rtl::OUString const&) const
+comphelper::detail::ConfigurationWrapper::getLocalizedPropertyValue(rtl::OUString
 const&) const
+comphelper::detail::ConfigurationWrapper::setLocalizedPropertyValue(boost::shared_ptr<comphelper::ConfigurationChanges>
 const&, rtl::OUString const&, com::sun::star::uno::Any const&) const
commit 954f991ba8b109a5e642fb6520ba076c3d1715ed
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Tue Nov 20 13:30:16 2012 +0100

    "tubes" missing from l10n project list
    
    Change-Id: Ieb04a22f83e698521aa90fe16fce4f66c4635034

diff --git a/l10ntools/source/localize.cxx b/l10ntools/source/localize.cxx
index 8dfb8ec..e4eb955 100644
--- a/l10ntools/source/localize.cxx
+++ b/l10ntools/source/localize.cxx
@@ -322,6 +322,7 @@ bool includeProject(rtl::OUString const & project) {
         "sw",
         "swext",
         "sysui",
+        "tubes",
         "uui",
         "vcl",
         "wizards",
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to