summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorDavid Ostrovsky <david@ostrovsky.org>2013-03-07 08:17:56 +0100
committerDavid Ostrovsky <David.Ostrovsky@gmx.de>2013-03-11 08:56:40 +0000
commit6f28efc2a8a559cc8c37aa883f4de0b59d4fc79c (patch)
treec99e9f01d5f52daad04aa1f51e3bc53e78c073fb /dbaccess
parentab8f432b3382967f87967495b0b0e4c17f082da5 (diff)
fdo#61726: rename report-builder package to org.libreoffice.report
To prevent future clashes with uno name space rename the com.sun.star.report package to org.libreoffice.report. Bump the version to 1.2.4. Change-Id: Ia06cb7ad8c1528c1d5b5eeb70f1e4b2aa854b70f Reviewed-on: https://gerrit.libreoffice.org/2578 Reviewed-by: David Ostrovsky <David.Ostrovsky@gmx.de> Tested-by: David Ostrovsky <David.Ostrovsky@gmx.de>
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/core/dataaccess/documentdefinition.cxx2
-rw-r--r--dbaccess/source/ui/app/AppController.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/core/dataaccess/documentdefinition.cxx b/dbaccess/source/core/dataaccess/documentdefinition.cxx
index e6cff05ec260..ae467674257b 100644
--- a/dbaccess/source/core/dataaccess/documentdefinition.cxx
+++ b/dbaccess/source/core/dataaccess/documentdefinition.cxx
@@ -1627,7 +1627,7 @@ void ODocumentDefinition::loadEmbeddedObject( const Reference< XConnection >& i_
{
sDocumentService = GetDocumentServiceFromMediaType( getContentType(), m_aContext, aClassID );
// check if we are not a form and
- // the com.sun.star.report.pentaho.SOReportJobFactory is not present.
+ // the org.libreoffice.report.pentaho.SOReportJobFactory is not present.
if ( !m_bForm && !(sDocumentService == "com.sun.star.text.TextDocument"))
{
// we seem to be a "new style" report, check if report extension is present.
diff --git a/dbaccess/source/ui/app/AppController.cxx b/dbaccess/source/ui/app/AppController.cxx
index 0880194a6c62..b44772634da7 100644
--- a/dbaccess/source/ui/app/AppController.cxx
+++ b/dbaccess/source/ui/app/AppController.cxx
@@ -746,7 +746,7 @@ FeatureState OApplicationController::GetState(sal_uInt16 _nId) const
aReturn.bEnabled = xEnumAccess.is();
if ( aReturn.bEnabled )
{
- static OUString s_sReportDesign("com.sun.star.report.pentaho.SOReportJobFactory");
+ static OUString s_sReportDesign("org.libreoffice.report.pentaho.SOReportJobFactory");
Reference< XEnumeration > xEnumDrivers = xEnumAccess->createContentEnumeration(s_sReportDesign);
aReturn.bEnabled = xEnumDrivers.is() && xEnumDrivers->hasMoreElements();
}