| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Split kvirc executable into a shared library (libkvirc) and a stub ↵feat/separate-kvirc-lib | Michele Calgaro | 11 hours | 61 | -61/+61 |
| | | | | | | | | | | | executable (kvirc). Autotool builds kvirc with '-export-dynamic', which exports all global symbols from the main executable to the dynamic symbol table. This allows 'modules' to access those symbols and build successfully. CMake build kvirc without '-export-dynamic' and with hidden symbol visibitily by default, resulting in FTBFS when the build process reaches the 'modules' part. This is caused by the modules referring to symbols define in code under the 'src/kvirc' folder Splitting 'kvirc' into an additional 'libkvirc' shared library plus a simple executable stub that creates the application and run it, allows modules to be linked against the library part and build successfully also with cmake. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Fix conversion of TQString to const char*feat/various-fixes | Michele Calgaro | 11 hours | 13 | -18/+18 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Improvements suggested on PR #58HEADmaster | Michele Calgaro | 4 days | 2 | -46/+46 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Fix invalid comparison warnings | Michele Calgaro | 7 days | 8 | -19/+19 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Fix 'this if clause does not guard...' warnings | Michele Calgaro | 7 days | 2 | -1/+2 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Fix 'ISO C++11 forbids converting a string constant to char*' warnings | Michele Calgaro | 7 days | 3 | -4/+4 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Look for translation .mo files in the new location | Michele Calgaro | 2025-12-31 | 1 | -7/+25 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Fix TQString formatting in 'KviTQString::sprintf'. | Michele Calgaro | 2025-12-27 | 2 | -2/+2 |
| | | | | | | | | | | | This was causing translation catalouges not to be found and eventually the program to always display in English. The problem was introduced by an automated Q --> TQ renaming done sometime in the past. 'KviTQString::sprintf' uses '%Q' as a marker for a TQString* argument, so using '%TQ' was resulting in garbage bytes being fed and the catalouges not being found. This resolves issue #44. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Replace TRUE/FALSE with boolean values true/false | Michele Calgaro | 2025-03-22 | 33 | -106/+106 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Replace Qt with TQt | Michele Calgaro | 2024-04-02 | 3 | -5/+5 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines | Michele Calgaro | 2024-01-01 | 93 | -706/+706 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Remove various '#define' strings - part 6 | Michele Calgaro | 2023-12-08 | 43 | -57/+57 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Replaced various '#define' with actual strings - part 5 | Michele Calgaro | 2023-12-04 | 5 | -16/+16 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Replace various strings '#define'd in tqtinterface | Michele Calgaro | 2023-11-19 | 2 | -2/+2 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Replace Qt with TQt | Michele Calgaro | 2023-11-05 | 53 | -121/+121 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, ↵ | Michele Calgaro | 2023-09-26 | 1 | -10/+10 |
| | | | | | | | QIODevice with TQ* version Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Replace TQ_*Focus* and TQ_Scale* defines | Michele Calgaro | 2023-09-02 | 8 | -12/+12 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Drop USE_QT4 code | Michele Calgaro | 2023-08-31 | 82 | -1968/+11 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Fix FTBFS from issue #9. | Slávek Banko | 2023-08-15 | 1 | -1/+1 |
| | | | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz> | ||||
| * | Drop TQT_BASE_OBJECT* defines | Michele Calgaro | 2023-08-15 | 4 | -6/+6 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Replace Q_OBJECT with TQ_OBJECT | Michele Calgaro | 2023-07-20 | 127 | -224/+224 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the ↵ | Michele Calgaro | 2023-07-11 | 3 | -9/+9 |
| | | | | | | | merging of tqtinterface with tqt3. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Fixed FTBFS with clang. | Michele Calgaro | 2021-07-28 | 2 | -2/+2 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Fix ftbfs on Fedora 34 | François Andriot | 2021-05-11 | 1 | -2/+2 |
| | | | | | | | error: ordered comparison of pointer with integer zero ('int*' and 'int') Signed-off-by: François Andriot <francois.andriot@free.fr> | ||||
| * | Removed code formatting modelines. | Michele Calgaro | 2020-09-29 | 18 | -21/+0 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Removed explicit usage of the 'register' keyword. | Michele Calgaro | 2020-01-30 | 1 | -1/+1 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Fix branding of KVIrc and also translations, for fuzzy prevention. | Chris | 2019-07-29 | 5 | -7/+7 |
| | | | | | Signed-off-by: Chris <xchrisx@uber.space> | ||||
| * | Adjusted to use new TQStringVariantMap type. | Michele Calgaro | 2019-06-01 | 2 | -8/+8 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Adjusted to latest TQVariant::TQVariant(bool) function. | Michele Calgaro | 2019-05-29 | 1 | -4/+4 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Fix empty translation. | Slávek Banko | 2019-01-07 | 1 | -1/+1 |
| | | | | | | | Fix charset in translation. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> | ||||
| * | Fix build with a clean TQt namespace. | Slávek Banko | 2018-10-29 | 49 | -177/+177 |
| | | | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz> | ||||
| * | Fixed incorrect TTQ rename (TTQ -> TQ) | Michele Calgaro | 2018-10-14 | 5 | -8/+8 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Removed unnecessary executable flag. | Michele Calgaro | 2018-09-02 | 2 | -0/+0 |
| | | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> | ||||
| * | Added support for OpenSSL 1.1 | Slávek Banko | 2017-01-10 | 1 | -6/+16 |
| | | | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz> | ||||
| * | Fix FTBFS with GCC6 | Slávek Banko | 2016-09-03 | 2 | -3/+3 |
| | | | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz> | ||||
| * | Fix invalid headers in PNG files and optimize for size | Timothy Pearson | 2016-07-23 | 73 | -0/+0 |
| | | |||||
| * | Fix unintended renaming | Darrell Anderson | 2014-02-16 | 1 | -4/+4 |
| | | |||||
| * | Fix unintended renaming | Darrell Anderson | 2014-02-16 | 1 | -7/+7 |
| | | |||||
| * | Add end-of-file newlines. | Darrell Anderson | 2013-11-30 | 5 | -5/+5 |
| | | |||||
| * | Fix unintended rename of interfacelookglobal | Slávek Banko | 2013-02-19 | 4 | -8/+8 |
| | | |||||
| * | Fix prior commit | Timothy Pearson | 2013-02-15 | 2 | -0/+0 |
| | | |||||
| * | Rename additional header files to avoid conflicts with KDE4 | Timothy Pearson | 2013-02-15 | 4 | -8/+8 |
| | | |||||
| * | Rename KIcon to enhance compatibility with KDE4 | Timothy Pearson | 2013-02-04 | 2 | -2/+2 |
| | | |||||
| * | Rename many classes and header files to avoid conflicts with KDE4 | Timothy Pearson | 2013-02-01 | 1 | -1/+1 |
| | | |||||
| * | Rename a number of classes to enhance compatibility with KDE4 | Timothy Pearson | 2013-02-01 | 2 | -3/+3 |
| | | |||||
| * | Rename KLock and KTrader to avoid conflicts with KDE4 | Timothy Pearson | 2013-02-01 | 1 | -3/+3 |
| | | |||||
| * | Rename a number of libraries and executables to avoid conflicts with KDE4 | Timothy Pearson | 2013-01-27 | 1 | -2/+2 |
| | | |||||
| * | Rename a number of libraries and executables to avoid conflicts with KDE4 | Timothy Pearson | 2013-01-26 | 3 | -5/+5 |
| | | |||||
| * | Rename KApplication to TDEApplication to avoid conflicts with KDE4 | Timothy Pearson | 2013-01-20 | 1 | -1/+1 |
| | | |||||
| * | Fix inadvertent tq changes. | Darrell Anderson | 2012-10-21 | 1 | -2/+2 |
| | | |||||
