diff options
author | Michele Calgaro <[email protected]> | 2023-09-23 12:48:33 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-27 11:06:45 +0900 |
commit | fd7a4086a1171a02553077f919d373048aa62327 (patch) | |
tree | 8390e5d3d52f3ae1180b40f512db31843c5b7a69 /acinclude.m4 | |
parent | 6c59a8b0157d3c11bcbb020a89e2efdf0e0c77fe (diff) | |
download | ktorrent-fd7a4086a1171a02553077f919d373048aa62327.tar.gz ktorrent-fd7a4086a1171a02553077f919d373048aa62327.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 18c1b43..2db09a6 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -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 @@ -4690,7 +4690,7 @@ AC_TRY_RUN(dnl #include <qimageio.h> #include <qstring.h> int main() { - QString t = "hallo"; + TQString t = "hallo"; t.fill('t'); qInitImageIO(); } |