summaryrefslogtreecommitdiffstats
path: root/kdbg
Commit message (Collapse)AuthorAgeFilesLines
* Use proper TQt headersHEADmasterMichele Calgaro2024-05-235-14/+14
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Fix FTBFS from prior commit.Slávek Banko2024-04-171-0/+1
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Fix compatibility with C++17.Slávek Banko2024-04-151-1/+1
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT definesMichele Calgaro2023-12-2814-186/+186
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Removed outdated filesMichele Calgaro2023-09-263-58/+0
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, ↵Michele Calgaro2023-09-261-10/+10
| | | | | | QIODevice with TQ* version Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace Q_OBJECT with TQ_OBJECTMichele Calgaro2023-07-1817-21/+21
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Remove unnecessary accelerator from .ui files.Michele Calgaro2022-09-072-27/+0
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Convert some TRACE() messages to avoid FTBFS with clang. This resolves issue ↵Michele Calgaro2022-05-115-16/+14
| | | | | | #13. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Fixed detection of gdb when an executable file contains warnings about ↵Michele Calgaro2021-07-071-1/+2
| | | | | | sections outside of ELF segments. This resolves isue #12. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Fixed command execution and detection of gdb. This resolves issue #8.Michele Calgaro2021-07-032-4/+6
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Guard mydebug.h file.Michele Calgaro2021-07-031-0/+5
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Added translation of .desktop files.Michele Calgaro2021-07-022-37/+13
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Remove CMakeLists.txt for docRay-V2021-06-2555-3002/+0
| | | | | | | | Move doc directory up a level from kdbg/doc Add macro call to source root CMakeLists.txt Remove tde_conditional_add_subdirectory() macro call for doc Signed-off-by: Ray-V <ray-v@inbox.lv>
* Copy translation files to new translations folder.Michele Calgaro2021-06-251-1/+1
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Drop automake build support.Michele Calgaro2021-06-169-313/+0
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Use common rules for build and install documentation and translations.Ray-V2021-06-042-6/+1
| | | | | Signed-off-by: Ray-V <ray-v@inbox.lv> Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Fixed building with -DWITH_TRACE_OUTPUT=ON. This resolves issue #6.Michele Calgaro2021-06-033-3/+3
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Added controlled conversions to char* instead of automatic ascii conversions.Slávek Banko2021-03-143-6/+6
| | | | | | The definition of -UTQT_NO_ASCII_CAST is no longer needed. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Update the use of TQRegExp so that it does not require an old API.Michele Calgaro2021-03-142-7/+10
| | | | | | | The definition of -UTQT_NO_COMPAT is no longer needed. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* conversion to the cmake building system.gregory guy2021-03-0278-495/+544
| | | | Signed-off-by: gregory guy <gregory-tde@laposte.net>
* Removed code formatting modelines.Michele Calgaro2020-09-282-26/+0
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Fix call of a member function dependent on a template parameter.Johannes Sixt2019-05-311-1/+1
| | | | | | | We must make the access of 'push_back' dependent, too. Otherwise, name lookup does not find the name. Earlier compilers were more permissive and did find the name. (cherry picked from upstream commit 5f55847d441aba7742417e78c3b4fbe8344acc5e)
* Fix parsing of disassembly produced by gdb 7.1.Johannes Sixt2019-05-311-0/+9
| | | | | | Since gdb 7.1, the address does not start at the beginning of a line, and it can be prefixed by a pointer => that indicates the current instruction. (cherry picked from upstream commit 5c5f34852d30337ef7c23ef4e88d50ecee1c0703)
* Grok gdb 7's <incomplete sequence> marker in strings.Johannes Sixt2019-05-312-1/+32
| | | | | | | | | When a string ends in an incomplete multi-byte sequence, gdb adds an <incomplete sequence...> fragment to the end of the string. Previously, this resulted in a parse error and incomplete variable information. Reported by Kevin Lemay. (cherry picked from upstream commit 03da8a5ec97c8c7b125b2bd453d2f1c3a018d477)
* Fix assembler code display with gdb 7.1 and later.Johannes Sixt2019-05-311-0/+32
| | | | | | | | | | | | The syntax of the 'disassemble' command changed in gdb 7.1: it now requires a comma between the two address expressions. Previously, KDbg showed an error message instead of assembler code when a plus in front of a source code line was clicked. Reported by Gerfried Essler. This reverts part of the previous commit. (cherry picked from upstream commit b6ee6a035abe41f7c0d59fbd830e895b6edeb748)
* Drop gdb versionning.gregory guy2019-05-304-106/+11
| | | | | | | | | | | | | | | | Cherry picked and adapted from commit 0efc808f from the original author of kdbg, code available at https://github.com/j6t/kdbg under GPL 2.0" Quote from the author: In early days of KDbg, it was important to use a suitable command to load a core file. This was before gdb 4.16. To pick the right command, the version number was parsed from gdb's greeting. At least with modern gdb the regular expression does not match anymore. So let's assume that nobody is using ancient gdb anymore, and always use the modern command. Signed-off-by: gregory guy <g-gregory@gmx.fr>
* drop some qt2 deprecatedgregory guy2019-05-283-16/+14
| | | | Signed-off-by: gregory guy <g-gregory@gmx.fr>
* Add CMakeL10n rules.Slávek Banko2018-12-261-0/+3
| | | | | | Create translation template. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* qt -> tqt conversion:Michele Calgaro2018-09-275-11/+11
| | | | | | | | | qtlib -> tqtlib libqt -> libtqt QTLIB -> TQTLIB LIBQT -> LIBTQT Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* LIB_QT -> LIB_TQT conversion to align to updated admin moduleMichele Calgaro2018-09-172-4/+4
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Fix FTBFS due to improper automocSlávek Banko2018-08-231-0/+2
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Fix invalid headers in PNG files and optimize for sizeTimothy Pearson2016-07-2351-0/+0
|
* Bring undo, redo, find, and revert icons into XDG complianceTimothy Pearson2014-10-131-1/+1
|
* Fix ServiceTypes, ExcludeServiceTypes, and DocPath desktop file entries to ↵Timothy Pearson2014-10-111-1/+1
| | | | match XDG specifications
* Improved detection of gdb from GdbDriver (now aligned to detection usedMichele Calgaro2014-05-141-3/+6
| | | | in Kdbg v2.5.4). This resolves bug 1996 again.
* Fixed detection of gdb from GdbDriver. This resolves bug 1996.Michele Calgaro2014-05-031-1/+2
|
* Fix FTBFSSlávek Banko2014-01-251-1/+1
|
* Fix 'style assignments are not portable' build message.Darrell Anderson2014-01-151-1/+1
|
* Fix help handbook not appearing in main handbook table of contents.Darrell Anderson2014-01-091-1/+1
|
* Additional k => tde renaming and fixesSlávek Banko2013-09-031-1/+1
|
* Initial TDE conversionSlávek Banko2013-07-0440-211/+211
|
* Initial TQt conversionSlávek Banko2013-07-0356-1901/+1901
|
* Update autotools for new DSO linkage stylev3.5.13.2Slávek Banko2013-07-031-1/+1
|
* Clean up spurious build filesSlávek Banko2013-07-038-6014/+0
|
* Initial importSlávek Banko2013-07-03209-0/+29652