Comment 40 for bug 433563

Revision history for this message
In , julien2412 (serval2412-6) wrote :

Created attachment 101944
bt

On pc Debian x86-64 with master sources updated today, I could reproduce this.

I noticed that if I change
    933 else if ( !xReportDefinition.is() )
    934 xModule->setIdentifier( "com.sun.star.sdb.TextReportDesign" );
by
    933 else if ( !xReportDefinition.is() )
    934 xModule->setIdentifier( "com.sun.star.text.TextDocument" );
it worked
(see http://opengrok.libreoffice.org/xref/core/dbaccess/source/core/dataaccess/documentdefinition.cxx#934), of course it was just to test

Now, after other investigation, I think the filter doesn't work with "com.sun.star.sdb.TextReportDesign" because there's no fragment about it here:
filter/source/config/fragments/filters

Opengroking TextReportDesign gives few results, see http://opengrok.libreoffice.org/search?q=TextReportDesign&project=core&defs=&refs=&path=&hist=
I wonder if it could be removed and replaced by com.sun.star.text.TextDocument or if a filter fragment should be added.