diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-10-30 13:47:29 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-10-30 13:47:29 +0900 |
commit | e8494e60efeb94c67c813d1c1c038031915e8c17 (patch) | |
tree | 3238b3e8ceeb577a8eda00da66704c7e5fc6f9f5 /examples/main.cpp | |
parent | 28de2ff84f59ac0b173670aa9c5331bc77c1e63f (diff) | |
download | polkit-tqt-e8494e60efeb94c67c813d1c1c038031915e8c17.tar.gz polkit-tqt-e8494e60efeb94c67c813d1c1c038031915e8c17.zip |
Raw Qt->TQt conversion using tde/scripts/conversions/qt3-tqt3/convert_existing_qt3_app_to_tqt3.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'examples/main.cpp')
-rw-r--r-- | examples/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/main.cpp b/examples/main.cpp index e81f80409..602721d00 100644 --- a/examples/main.cpp +++ b/examples/main.cpp @@ -19,13 +19,13 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * ***************************************************************************/ -#include <QtGui/QApplication> +#include <TQtGui/TQApplication> #include "PkExample.h" int main(int argc, char *argv[]) { - QApplication app(argc, argv); + TQApplication app(argc, argv); PkExample example; example.show(); return app.exec(); |