connectivity/source/drivers/kab/KDatabaseMetaData.cxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 325690a7ccab6c500f83a40f91e037fd9d1338f0
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Mon Mar 23 09:17:24 2015 +0100

    -Werror,-Wpointer-bool-conversion
    
    Change-Id: Ib143870ff6e5cf9dd62b420d8f8f1e71dbac42e7

diff --git a/connectivity/source/drivers/kab/KDatabaseMetaData.cxx 
b/connectivity/source/drivers/kab/KDatabaseMetaData.cxx
index 8dd330f..6f909a1 100644
--- a/connectivity/source/drivers/kab/KDatabaseMetaData.cxx
+++ b/connectivity/source/drivers/kab/KDatabaseMetaData.cxx
@@ -779,13 +779,12 @@ Reference< XResultSet > SAL_CALL 
KabDatabaseMetaData::getTableTypes(  ) throw(SQ
     Reference< XResultSet > xRef = pResult;
 
     static ODatabaseMetaDataResultSet::ORows aRows;
-    static const char aTable[]="TABLE";
 
     if (aRows.empty())
     {
         ODatabaseMetaDataResultSet::ORow aRow(2);
         aRow[0] = ODatabaseMetaDataResultSet::getEmptyValue();
-        aRow[1] = new ORowSetValueDecorator(aTable);
+        aRow[1] = new ORowSetValueDecorator(OUString("TABLE"));
         aRows.push_back(aRow);
     }
     pResult->setRows(aRows);
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to