Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/9/head
Michele Calgaro 7 months ago
parent c5c714fa1a
commit bcbccb5990
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -9,11 +9,11 @@ for 0.10.x:
snippet:
char cu[L_cuserid];
user = QString::fromLocal8Bit( cuserid( cu ), -1 );
user = TQString::fromLocal8Bit( cuserid( cu ), -1 );
or
user = QString::fromLocal8Bit( cuserid( NULL ), -1 ); // returning static pointer
user = TQString::fromLocal8Bit( cuserid( NULL ), -1 ); // returning static pointer
- Move smb4k/core subdirectory to the root directory of the source.
- Rename libsmb4kcore to libsmb4k?

@ -1133,14 +1133,14 @@ cat >> conftest.$ac_ext <<EOF
EOF
if test $kde_qtsubver -gt 0; then
cat >> conftest.$ac_ext <<EOF
QString s;
TQString s;
s.setLatin1("Elvis is alive", 14);
EOF
fi
fi
if test "$kde_qtver" = "3"; then
cat >> conftest.$ac_ext <<EOF
(void)QStyleFactory::create(QString::null);
(void)QStyleFactory::create(TQString::null);
QCursor c(Qt::WhatsThisCursor);
EOF
fi
@ -4663,7 +4663,7 @@ AC_TRY_RUN(dnl
#include <qimageio.h>
#include <qstring.h>
int main() {
QString t = "hallo";
TQString t = "hallo";
t.fill('t');
qInitImageIO();
}

Loading…
Cancel
Save