User: rt Date: 2008-01-29 14:34:35+0000 Modified: dba/reportdesign/java/com/sun/star/report/pentaho/layoutprocessor/OfficeTableTemplateLayoutController.java
Log: INTEGRATION: CWS pentaho2_SRC680 (1.2.82); FILE MERGED 2008/01/21 09:00:24 oj 1.2.82.1: #i79173# #i78502# import changes from pentaho1 File Changes: Directory: /dba/reportdesign/java/com/sun/star/report/pentaho/layoutprocessor/ ============================================================================== File [changed]: OfficeTableTemplateLayoutController.java Url: http://dba.openoffice.org/source/browse/dba/reportdesign/java/com/sun/star/report/pentaho/layoutprocessor/OfficeTableTemplateLayoutController.java?r1=1.2&r2=1.3 Delta lines: +11 -3 -------------------- --- OfficeTableTemplateLayoutController.java 2007-07-09 11:56:06+0000 1.2 +++ OfficeTableTemplateLayoutController.java 2008-01-29 14:34:32+0000 1.3 @@ -91,6 +91,10 @@ final OfficeReport report = (OfficeReport) node; final ArrayList tables = new ArrayList(); + if (report.getPageHeader() != null) + { + addFromSection(tables, (Section) report.getPageHeader()); + } if (report.getReportHeader() != null) { addFromSection(tables, (Section) report.getReportHeader()); @@ -100,6 +104,10 @@ { addFromSection(tables, (Section) report.getReportFooter()); } + if (report.getPageFooter() != null) + { + addFromSection(tables, (Section) report.getPageFooter()); + } this.nodes = (Node[]) tables.toArray(new Node[tables.size()]); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
