aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/rtf/rtflib/rtfdoc/RtfTable.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop/rtf/rtflib/rtfdoc/RtfTable.java')
-rwxr-xr-xsrc/java/org/apache/fop/rtf/rtflib/rtfdoc/RtfTable.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/java/org/apache/fop/rtf/rtflib/rtfdoc/RtfTable.java b/src/java/org/apache/fop/rtf/rtflib/rtfdoc/RtfTable.java
index 9d9b37a35..2b9273b73 100755
--- a/src/java/org/apache/fop/rtf/rtflib/rtfdoc/RtfTable.java
+++ b/src/java/org/apache/fop/rtf/rtflib/rtfdoc/RtfTable.java
@@ -82,15 +82,15 @@ public class RtfTable extends RtfContainer
m_table_context = tc;
}
- /** Create an RTF element as a child of given container
+ /** Create an RTF element as a child of given container
* Modified by Boris Poudérous in order to process 'number-columns-spanned' attribute
*/
RtfTable(IRtfTableContainer parent, Writer w, RtfAttributes attrs, ITableColumnsInfo tc) throws IOException
- {
- super((RtfContainer)parent,w,attrs);
+ {
+ super((RtfContainer)parent,w,attrs);
// Line added by Boris Poudérous on 07/22/2002
m_table_context = tc;
- }
+ }
/** close current row if any and start a new one */
public RtfTableRow newTableRow() throws IOException
@@ -135,7 +135,7 @@ public class RtfTable extends RtfContainer
public boolean isHighestRow(int id)
{
- return (highestRow == id) ? true : false;
+ return (highestRow == id) ? true : false;
}
/** Added by Boris Poudérous on 07/22/2002 */