| 598 | }; |
| 599 | |
| 600 | void MacroTest2_test() |
| 601 | { |
| 602 | QString str = MacroTest2::tr("hello"); |
| 603 | QByteArray ba = str.toLatin1(); |
| 604 | printf(ba.data()); |
| 605 | |
| 606 | #if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0)) |
| 607 | #ifndef QT_NO_DEPRECATED |
| 608 | str = MacroTest2::trUtf8("test2"); |
| 609 | ba = str.toLatin1(); |
| 610 | printf(ba.data()); |
| 611 | #endif |
| 612 | #endif |
| 613 | } |
| 614 | |
| 615 | void MacroTest3() |
| 616 | { |