diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-08-30 08:59:55 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-08-30 08:59:55 +0000 |
commit | 0e5064562e488e1a277a0d84fbd5595fe0019f76 (patch) | |
tree | 83767c8c2e0b8a88e0c531d6ce49ca2cef3c21ec /basic/source/comp/exprnode.cxx | |
parent | a8911b849f4b114ea7eb1b4f76229e9d3aa5f1c6 (diff) |
INTEGRATION: CWS npower7 (1.16.48); FILE MERGED
2007/02/16 17:14:15 npower 1.16.48.1: #i73830 compatible rtl like function
Diffstat (limited to 'basic/source/comp/exprnode.cxx')
-rw-r--r-- | basic/source/comp/exprnode.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/comp/exprnode.cxx b/basic/source/comp/exprnode.cxx index f9f0afe2a8cd..dcbc189c4f20 100644 --- a/basic/source/comp/exprnode.cxx +++ b/basic/source/comp/exprnode.cxx @@ -4,9 +4,9 @@ * * $RCSfile: exprnode.cxx,v $ * - * $Revision: 1.16 $ + * $Revision: 1.17 $ * - * last change: $Author: obo $ $Date: 2006-10-12 14:34:58 $ + * last change: $Author: vg $ $Date: 2007-08-30 09:59:55 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -244,7 +244,7 @@ void SbiExprNode::CollectBits() void SbiExprNode::FoldConstants() { - if( IsOperand() ) return; + if( IsOperand() || eTok == LIKE ) return; pLeft->FoldConstants(); if( pRight ) { |