summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/report
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-08 14:40:18 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-08 14:40:18 +0000
commit30961f5d5f4bfbeabf010b7884bf7bf861103d5e (patch)
treeb31f50e392f579f3d022bf9be7b5d5783b617b3e /wizards/com/sun/star/wizards/report
parent4cb3bf8c2a481e1855cf93a5863705836083a47b (diff)
INTEGRATION: CWS toolkit01 (1.2.72); FILE MERGED
2005/02/25 12:02:26 bc 1.2.72.2: RESYNC: (1.2-1.4); FILE MERGED 2005/02/23 17:38:40 bc 1.2.72.1: ##several changes in Webwizard
Diffstat (limited to 'wizards/com/sun/star/wizards/report')
-rw-r--r--wizards/com/sun/star/wizards/report/DBColumn.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/report/DBColumn.java b/wizards/com/sun/star/wizards/report/DBColumn.java
index 269e05ea22f0..b2feda6a591a 100644
--- a/wizards/com/sun/star/wizards/report/DBColumn.java
+++ b/wizards/com/sun/star/wizards/report/DBColumn.java
@@ -293,7 +293,7 @@ public class DBColumn {
if (bAlignLeft)
Helper.setUnoPropertyValue(xValCellCursor, "ParaAdjust", new Integer(ParagraphAdjust.LEFT_value));
- if (CurDBField.FieldType == com.sun.star.sdbc.DataType.BOOLEAN || CurDBField.FieldType == com.sun.star.sdbc.DataType.BIT){
+ if (CurDBField.FieldType == com.sun.star.sdbc.DataType.BIT){
CharFontName = "StarSymbol";
Helper.setUnoPropertyValue(xValCellCursor, "CharFontName", CharFontName);
if (bIsGroupColumn == false)
@@ -319,7 +319,7 @@ public class DBColumn {
try{
XPropertyState xPropertyState;
int FieldType = CurDBField.FieldType;
- if (FieldType == com.sun.star.sdbc.DataType.BOOLEAN || FieldType == com.sun.star.sdbc.DataType.BIT){
+ if (FieldType == com.sun.star.sdbc.DataType.BIT){
CharFontName = "StarSymbol";
PropertyState = com.sun.star.beans.PropertyState.DIRECT_VALUE;
}