summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/mysql
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-07-19 14:53:45 +0000
committerKurt Zenker <kz@openoffice.org>2006-07-19 14:53:45 +0000
commit5556154ae5a37a612326735bf4eaf0861ac07a41 (patch)
tree48b778c68d34486962819e9f087b25575c112fd4 /connectivity/source/drivers/mysql
parent5e35b349a14908aeb3ef58a85e85ae090e2fc827 (diff)
INTEGRATION: CWS warningfixes02 (1.4.128); FILE MERGED
2006/06/30 11:44:35 sb 1.4.128.1: #i66577# Made the code compile (warning-free) on a unxlngi6.pro GCC 4.1.1 Linux box.
Diffstat (limited to 'connectivity/source/drivers/mysql')
-rw-r--r--connectivity/source/drivers/mysql/YCatalog.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/mysql/YCatalog.cxx b/connectivity/source/drivers/mysql/YCatalog.cxx
index a403dddf76c3..e7082303b2a7 100644
--- a/connectivity/source/drivers/mysql/YCatalog.cxx
+++ b/connectivity/source/drivers/mysql/YCatalog.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: YCatalog.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 06:31:16 $
+ * last change: $Author: kz $ $Date: 2006-07-19 15:53:45 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -114,7 +114,7 @@ void OMySQLCatalog::refreshViews()
Reference<XRow> xRow(xRes,UNO_QUERY);
while ( xRow.is() && xRes->next() )
{
- if ( bSupportsViews = xRow->getString(1).equalsIgnoreAsciiCase(aTypes[0]) )
+ if ( (bSupportsViews = xRow->getString(1).equalsIgnoreAsciiCase(aTypes[0])) )
{
break;
}