Tag: cws_src680_rptchart01 User: oj Date: 2008-02-19 08:47:01+0000 Modified: dba/reportdesign/java/com/sun/star/report/SDBCReportDataFactory.java
Log: #i85225# wrong para name File Changes: Directory: /dba/reportdesign/java/com/sun/star/report/ ====================================================== File [changed]: SDBCReportDataFactory.java Url: http://dba.openoffice.org/source/browse/dba/reportdesign/java/com/sun/star/report/SDBCReportDataFactory.java?r1=1.2.70.1&r2=1.2.70.2 Delta lines: +6 -2 ------------------- --- SDBCReportDataFactory.java 2008-02-19 06:42:48+0000 1.2.70.1 +++ SDBCReportDataFactory.java 2008-02-19 08:46:58+0000 1.2.70.2 @@ -4,9 +4,9 @@ * * $RCSfile: SDBCReportDataFactory.java,v $ * - * $Revision: 1.2.70.1 $ + * $Revision: 1.2.70.2 $ * - * last change: $Author: oj $ $Date: 2008/02/19 06:42:48 $ + * last change: $Author: oj $ $Date: 2008/02/19 08:46:58 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -93,6 +93,8 @@ rowSetProp.setPropertyValue("Filter", filter); rowSetProp.setPropertyValue("ApplyFilter", new Boolean(filter.length() != 0)); } + else + rowSetProp.setPropertyValue("ApplyFilter", new Boolean(false)); final XConnectionTools tools = (XConnectionTools) UnoRuntime.queryInterface(XConnectionTools.class, connection); String order = getOrderStatement(commandType, command, (Vector) parameters.get("group-expressions")); if (order.length() > 0) { @@ -113,6 +115,8 @@ } } } + rowSetProp.setPropertyValue("Order", order); + if (command.length() != 0) { Vector masterValues = (Vector) parameters.get("master-values"); if (masterValues != null && masterValues.size() > 0) { --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
