summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}