Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix crash in tqimage for certain malformed ppm image files | Slávek Banko | 2019-12-16 | 1 | -1/+1 |
| | | | | | | | | | | The ppm format specifies that the maximum color value field must be less than 65536. The handler did not enforce this, leading to potentional overflow when the value was used in 16 bits context. Based on Qt5 patch for CVE-2018-19872. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> | ||||
* | Renamed QT_IM_* to TQT_IM_*. This relates to bug 3020. | Michele Calgaro | 2019-06-16 | 1 | -3/+3 |
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
* | Rename tqt-kde integration to tqt-tde. | Slávek Banko | 2019-06-04 | 4 | -71/+71 |
| | | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz> | ||||
* | The TDE integration library (libtqtkde) will be searched for | gregory guy | 2019-06-02 | 1 | -5/+1 |
| | | | | | | | | | | in the TQt plugins directory, instead of the TDE plugins directory, which cannot be known at TQt build time. This resolves issue #3. Signed-off-by: gregory guy <g-gregory@gmx.fr> Signed-off-by: Slávek Banko <slavek.banko@axis.cz> | ||||
* | Added convenient TQStringVariantMap type and iterators. | Michele Calgaro | 2019-06-01 | 1 | -7/+7 |
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
* | Removed dummy int parameter from TQVariant(bool, int). | Michele Calgaro | 2019-05-23 | 3 | -8/+5 |
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
* | bmp image: check for out of range image size. | Slávek Banko | 2019-03-03 | 1 | -0/+2 |
| | | | | | | | | | Make the decoder fail early to avoid spending time and memory on attempting to decode a corrupt image file. Based on Qt5 patch for CVE-2018-19873. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> | ||||
* | Check for TQImage allocation failure in qasyncimageio. | Slávek Banko | 2019-03-03 | 1 | -3/+6 |
| | | | | | | | | | Since image files easily can be (or corrupt files claim to be) huge, it is worth checking for out of memory situations. Based on Qt5 patch for CVE-2018-19870. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> | ||||
* | Add the definition _WANT_SEMUN to ensure the definition of the semun structure. | Slávek Banko | 2019-02-16 | 1 | -0/+1 |
| | | | | | | | | This resolves bug 2991. Thanks to Nikolaus Klepp for initial patch. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> | ||||
* | Removed some obsolete code related to Qt1. | Michele Calgaro | 2018-10-21 | 3 | -98/+0 |
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
* | Removed obsolete Qt2's TQList/TQListIterator classes and replaced | Michele Calgaro | 2018-10-17 | 2 | -7/+2 |
| | | | | | | with TQt3's TQPtrList/TQPtrListIterator ones. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
* | QT_NO_* -> TQT_NO_* renaming. | Michele Calgaro | 2018-10-17 | 149 | -1235/+1235 |
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
* | qt -> tqt conversion: | Michele Calgaro | 2018-09-28 | 4 | -45/+45 |
| | | | | | | | | kdeqt -> kdetqt qtkde -> tqtkde qtdesigner -> tqtdesigner Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
* | qt -> tqt conversion: | Michele Calgaro | 2018-09-27 | 25 | -56/+56 |
| | | | | | | | | | QT_NO_ASCII_CAST -> TQT_NO_ASCII_CAST QT_NO_STL -> TQT_NO_STL QT_NO_COMPAT -> TQT_NO_COMPAT QT_NO_TRANSLATION -> TQT_NO_TRANSLATION Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
* | qt -> tqt conversion: | Michele Calgaro | 2018-09-27 | 1 | -2/+2 |
| | | | | | | | | | qtlib -> tqtlib libqt -> libtqt QTLIB -> TQTLIB LIBQT -> LIBTQT Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
* | Always build with a clean namespace | Slávek Banko | 2018-09-24 | 8 | -39/+0 |
| | | | | | | | | | QT_CLEAN_NAMESPACE constant is no more needed This may theoretically affect applications created for Qt1 and Qt2, but such applications require further modifications as well. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> | ||||
* | Conversion QT_THREAD_SUPPORT -> TQT_THREAD_SUPPORT. This is part of the | Michele Calgaro | 2018-09-16 | 17 | -213/+213 |
| | | | | | | | qt->tqt conversion and is required to align to corresponding patch for common/admin module. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
* | Fix FTBFS with stricter C++11 | Slávek Banko | 2018-08-19 | 1 | -4/+4 |
| | | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz> | ||||
* | Add brightness keys support | Roman Savochenko | 2017-07-30 | 4 | -0/+25 |
| | | | | | | | The code partially taken from Qt4 This relates to bug 2775 Signed-off-by: Roman Savochenko <rom_as@oscada.org> | ||||
* | Added safety harness for currentThreadObject() usage. | Michele Calgaro | 2015-07-19 | 2 | -7/+25 |
| | | | | | | | | currentThreadObject() returns a null pointer if the current thread was not started using the TQThread API. This relates to bug 1748. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
* | Fix security issue CVE-2015-1860 | Slávek Banko | 2015-05-23 | 1 | -0/+2 |
| | | | | [taken from RedHat Qt3 patches] | ||||
* | Fix security issue CVE-2015-0295 | Slávek Banko | 2015-03-09 | 1 | -0/+6 |
| | | | | [taken from RedHat Qt3 patches] | ||||
* | Fix security issue CVE-2014-0190 | Slávek Banko | 2015-03-09 | 1 | -1/+6 |
| | | | | [taken from RedHat Qt3 patches] | ||||
* | Automated update from Qt3 | Timothy Pearson | 2015-03-05 | 3 | -4/+4 |
| | |||||
* | Automated update from Qt3 | Timothy Pearson | 2015-03-05 | 1 | -3/+3 |
| | |||||
* | Automated update from Qt3 | Timothy Pearson | 2014-11-22 | 1 | -1/+1 |
| | |||||
* | Automated update from Qt3 | Timothy Pearson | 2014-11-21 | 1 | -1/+1 |
| | |||||
* | Automated update from Qt3 | Timothy Pearson | 2014-10-04 | 2 | -9/+9 |
| | |||||
* | Fix dpi detection when using xft2 | François Andriot | 2014-09-16 | 1 | -1/+18 |
| | |||||
* | Fix crash in TQTranslator | François Andriot | 2014-09-16 | 1 | -1/+1 |
| | |||||
* | Fixed warning message if QMetaObjectCleanUp::setMetaObject is invoked twice. | Michele Calgaro | 2014-08-18 | 1 | -1/+1 |
| | | | | | | If the passed object is the same, the warning message is not displayed any more. If the passed object is different, a message is still displayed. This resolves bug 1947. | ||||
* | Revert "Fixed warning message if QMetaObjectCleanUp::setMetaObject is ↵ | Michele Calgaro | 2014-08-18 | 1 | -1/+1 |
| | | | | | | | invoked twice." because of wrong reference to bug 1887. This reverts commit f0bff64751c7d6911be3578d7578bae8180e987d. | ||||
* | Fixed warning message if QMetaObjectCleanUp::setMetaObject is invoked twice. | Michele Calgaro | 2014-08-18 | 1 | -1/+1 |
| | | | | | | If the passed object is the same, the warning message is not displayed any more. If the passed object is different, a message is still displayed. This resolves bug 1887. | ||||
* | Automated update from Qt3 | Timothy Pearson | 2014-08-07 | 1 | -6/+15 |
| | |||||
* | Fixed "TQApplication::postEvent: Unexpected null receiver" warning message. ↵ | Michele Calgaro | 2014-07-30 | 1 | -3/+3 |
| | | | | This resolves bug 1901 and 1909. | ||||
* | Fix overwriting memory for an application icon | Slávek Banko | 2014-05-19 | 3 | -8/+9 |
| | | | | This resolves Bug 2033 | ||||
* | Automated update from Qt3 | Timothy Pearson | 2014-04-23 | 1 | -1/+1 |
| | |||||
* | Automated update from Qt3 | Timothy Pearson | 2013-12-22 | 2 | -0/+68 |
| | |||||
* | Automated update from Qt3 | Timothy Pearson | 2013-12-22 | 5 | -41/+111 |
| | |||||
* | Automated update from Qt3 | Timothy Pearson | 2013-12-02 | 1 | -1/+1 |
| | |||||
* | Automated update from Qt3 | Timothy Pearson | 2013-11-25 | 2 | -15/+20 |
| | |||||
* | Revert "Update minor TQt3 tool names to match current TQt3 sources in GIT" | Timothy Pearson | 2013-11-07 | 1 | -1/+1 |
| | | | | This reverts commit 40e50e6f20276afb557992a51d47618b014e388d. | ||||
* | Update minor TQt3 tool names to match current TQt3 sources in GIT | Timothy Pearson | 2013-11-07 | 1 | -1/+1 |
| | |||||
* | Automated update from Qt3 | Timothy Pearson | 2013-11-06 | 1 | -1/+1 |
| | |||||
* | Automated update from Qt3 | Timothy Pearson | 2013-11-04 | 2 | -6/+8 |
| | |||||
* | Automated update from Qt3 | Timothy Pearson | 2013-11-03 | 5 | -8/+52 |
| | |||||
* | Automated update from Qt3 | Timothy Pearson | 2013-10-17 | 1 | -0/+1 |
| | |||||
* | Automated update from Qt3 | Timothy Pearson | 2013-08-15 | 1 | -0/+3 |
| | |||||
* | Automated update from Qt3 | Timothy Pearson | 2013-08-15 | 1 | -2/+6 |
| | |||||
* | Private headers moved out from public include directory | Slávek Banko | 2013-08-14 | 1 | -1/+1 |
| |