From 47e6e18a1ef6f63336117a24039dbb97cc86bf90 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 22 Feb 2012 08:20:49 -0600 Subject: Fix FTBFS --- kexi/kexidb/drivers/pqxx/pqxxcursor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kexi/kexidb/drivers/pqxx/pqxxcursor.cpp') diff --git a/kexi/kexidb/drivers/pqxx/pqxxcursor.cpp b/kexi/kexidb/drivers/pqxx/pqxxcursor.cpp index 4ae03ced..b7219e71 100644 --- a/kexi/kexidb/drivers/pqxx/pqxxcursor.cpp +++ b/kexi/kexidb/drivers/pqxx/pqxxcursor.cpp @@ -239,7 +239,7 @@ TQVariant pqxxSqlCursor::pValue(uint pos)const } else if (f->type() == Field::Boolean ) { - return QString((*m_res)[at()][pos].c_str()).lower() == "t" ? QVariant(true, 1) : QVariant(false, 1); + return QString((*m_res)[at()][pos].c_str()).lower() == "t" ? TQVariant(true, 1) : TQVariant(false, 1); } else if (f->typeGroup() == Field::BLOBGroup) { -- cgit v1.2.1