From dba036816b279bc1539a9f3894fbc414665d2bce Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 21 Apr 2019 23:22:20 +0900 Subject: Removed unnecessary and/or TDE-unrelated code. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michele Calgaro Signed-off-by: Slávek Banko --- .../qt4/qmake/examples/precompile/main.cpp | 18 ------------ .../qt4/qmake/examples/precompile/mydialog.ui | 32 ---------------------- .../qt4/qmake/examples/precompile/myobject.cpp | 14 ---------- .../qt4/qmake/examples/precompile/myobject.h | 8 ------ .../qt4/qmake/examples/precompile/precompile.pro | 19 ------------- .../qt4/qmake/examples/precompile/stable.h | 10 ------- .../qt4/qmake/examples/precompile/util.cpp | 7 ----- 7 files changed, 108 deletions(-) delete mode 100644 tqtinterface/qt4/qmake/examples/precompile/main.cpp delete mode 100644 tqtinterface/qt4/qmake/examples/precompile/mydialog.ui delete mode 100644 tqtinterface/qt4/qmake/examples/precompile/myobject.cpp delete mode 100644 tqtinterface/qt4/qmake/examples/precompile/myobject.h delete mode 100644 tqtinterface/qt4/qmake/examples/precompile/precompile.pro delete mode 100644 tqtinterface/qt4/qmake/examples/precompile/stable.h delete mode 100644 tqtinterface/qt4/qmake/examples/precompile/util.cpp (limited to 'tqtinterface/qt4/qmake/examples/precompile') diff --git a/tqtinterface/qt4/qmake/examples/precompile/main.cpp b/tqtinterface/qt4/qmake/examples/precompile/main.cpp deleted file mode 100644 index 9669a2c..0000000 --- a/tqtinterface/qt4/qmake/examples/precompile/main.cpp +++ /dev/null @@ -1,18 +0,0 @@ -#include -#include -#include -#include "myobject.h" -#include "mydialog.h" - -int main(int argc, char **argv) -{ - TQApplication app(argc, argv); - - MyObject obj; - MyDialog dia; - app.setMainWidget( &dia ); - dia.connect( dia.aButton, TQT_SIGNAL(clicked()), TQT_SLOT(close()) ); - dia.show(); - - return app.exec(); -} diff --git a/tqtinterface/qt4/qmake/examples/precompile/mydialog.ui b/tqtinterface/qt4/qmake/examples/precompile/mydialog.ui deleted file mode 100644 index fe90a29..0000000 --- a/tqtinterface/qt4/qmake/examples/precompile/mydialog.ui +++ /dev/null @@ -1,32 +0,0 @@ - -MyDialog - - - MyDialog - - - Mach 2! - - - - - aLabel - - - Join the life in the fastlane; - PCH enable your project today! - - - - - - aButton - - - &Quit - - - Alt+Q - - - - - diff --git a/tqtinterface/qt4/qmake/examples/precompile/myobject.cpp b/tqtinterface/qt4/qmake/examples/precompile/myobject.cpp deleted file mode 100644 index 7c3d04c..0000000 --- a/tqtinterface/qt4/qmake/examples/precompile/myobject.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include -#include -#include "myobject.h" - -MyObject::MyObject() - : TQObject() -{ - std::cout << "MyObject::MyObject()\n"; -} - -MyObject::~MyObject() -{ - qDebug("MyObject::~MyObject()"); -} diff --git a/tqtinterface/qt4/qmake/examples/precompile/myobject.h b/tqtinterface/qt4/qmake/examples/precompile/myobject.h deleted file mode 100644 index 90c0b86..0000000 --- a/tqtinterface/qt4/qmake/examples/precompile/myobject.h +++ /dev/null @@ -1,8 +0,0 @@ -#include - -class MyObject : public TQObject -{ -public: - MyObject(); - ~MyObject(); -}; diff --git a/tqtinterface/qt4/qmake/examples/precompile/precompile.pro b/tqtinterface/qt4/qmake/examples/precompile/precompile.pro deleted file mode 100644 index 1f02d1a..0000000 --- a/tqtinterface/qt4/qmake/examples/precompile/precompile.pro +++ /dev/null @@ -1,19 +0,0 @@ -############################################# -# -# Example for using Precompiled Headers -# -############################################# -TEMPLATE = app -LANGUAGE = C++ -CONFIG += console precompile_header - -# Use Precompiled headers (PCH) -PRECOMPILED_HEADER = stable.h - -HEADERS += stable.h \ - myobject.h -SOURCES += main.cpp \ - myobject.cpp \ - util.cpp -FORMS = mydialog.ui - diff --git a/tqtinterface/qt4/qmake/examples/precompile/stable.h b/tqtinterface/qt4/qmake/examples/precompile/stable.h deleted file mode 100644 index a62e501..0000000 --- a/tqtinterface/qt4/qmake/examples/precompile/stable.h +++ /dev/null @@ -1,10 +0,0 @@ -/* Add C includes here */ - -#if defined __cplusplus -/* Add C++ includes here */ - -# include -# include -# include -# include -#endif diff --git a/tqtinterface/qt4/qmake/examples/precompile/util.cpp b/tqtinterface/qt4/qmake/examples/precompile/util.cpp deleted file mode 100644 index 6a15452..0000000 --- a/tqtinterface/qt4/qmake/examples/precompile/util.cpp +++ /dev/null @@ -1,7 +0,0 @@ -void util_function_does_nothing() -{ - // Nothing here... - int x = 0; - ++x; -} - -- cgit v1.2.3