summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/misc/linkeddocuments.cxx
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-01-26 23:25:22 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-01-26 23:25:22 +0100
commit61d77a767a0d519201f3a8554b343bce881c5991 (patch)
tree23ca6cde1c86316f380d575d67f5291a9a662241 /dbaccess/source/ui/misc/linkeddocuments.cxx
parentautorecovery: mav sanctioned the approach of the (now so-called) RecoveryStorage (diff)
downloadcore-61d77a767a0d519201f3a8554b343bce881c5991.tar.gz
core-61d77a767a0d519201f3a8554b343bce881c5991.zip
autorecovery: introduce createComponent/WithArguments at the XDatabaseDocumentUI interface
Diffstat (limited to 'dbaccess/source/ui/misc/linkeddocuments.cxx')
-rw-r--r--dbaccess/source/ui/misc/linkeddocuments.cxx9
1 files changed, 2 insertions, 7 deletions
diff --git a/dbaccess/source/ui/misc/linkeddocuments.cxx b/dbaccess/source/ui/misc/linkeddocuments.cxx
index a7be84b5e497..13fcc8a1f0d8 100644
--- a/dbaccess/source/ui/misc/linkeddocuments.cxx
+++ b/dbaccess/source/ui/misc/linkeddocuments.cxx
@@ -348,7 +348,7 @@ namespace dbaui
return impl_newWithPilot( "com.sun.star.wizards.query.CallQueryWizard", xDefinition, -1, ::rtl::OUString() );
}
//------------------------------------------------------------------
- Reference< XComponent > OLinkedDocumentsAccess::newDocument( sal_Int32 _nNewFormId, Reference< XComponent >& _xDefinition, const sal_Int32 _nCommandType, const ::rtl::OUString& _sObjectName )
+ Reference< XComponent > OLinkedDocumentsAccess::newDocument( sal_Int32 _nNewFormId, Reference< XComponent >& _xDefinition )
{
OSL_ENSURE(m_xDocumentContainer.is(), "OLinkedDocumentsAccess::OLinkedDocumentsAccess: invalid document container!");
// determine the URL to use for the new document
@@ -367,6 +367,7 @@ namespace dbaui
case ID_FORM_NEW_IMPRESS:
aClassId = lcl_GetSequenceClassID(SO3_SIMPRESS_CLASSID);
break;
+
case ID_REPORT_NEW_TEXT:
aClassId = comphelper::MimeConfigurationHelper::GetSequenceClassID(SO3_RPT_CLASSID_90);
break;
@@ -408,12 +409,6 @@ namespace dbaui
aCommand.Argument <<= aOpenCommand;
WaitObject aWaitCursor( m_pDialogParent );
xNewDocument.set(xContent->execute(aCommand,xContent->createCommandIdentifier(),Reference< XCommandEnvironment >()),UNO_QUERY);
- Reference<XPropertySet> xProp(xNewDocument,UNO_QUERY);
- if ( xProp.is() && _sObjectName.getLength() )
- {
- xProp->setPropertyValue(PROPERTY_COMMAND_TYPE,makeAny(_nCommandType));
- xProp->setPropertyValue(PROPERTY_COMMAND,makeAny(_sObjectName));
- }
}
}
}