diff options
author | Michele Calgaro <[email protected]> | 2023-09-23 12:50:16 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-27 12:04:52 +0900 |
commit | 9fe8994679fa37370800fd83e935d4b27155e3ad (patch) | |
tree | 3adad9129a6f933c64943ef5a5eaf3acd1c6b8a0 /acinclude.m4 | |
parent | 6edf655357604fd6a6652f866b6a1fc8b470af24 (diff) | |
download | soundkonverter-9fe8994679fa37370800fd83e935d4b27155e3ad.tar.gz soundkonverter-9fe8994679fa37370800fd83e935d4b27155e3ad.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit acc588e61b01d0e91aa721db1fa788eec5708ac0)
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 07fa090..caec568 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 @@ -4609,7 +4609,7 @@ AC_TRY_RUN(dnl #include <qimageio.h> #include <qstring.h> int main() { - QString t = "hallo"; + TQString t = "hallo"; t.fill('t'); qInitImageIO(); } |