diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-25 13:57:48 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-25 13:57:48 +0900 |
commit | d2728dd8dbad48f045a5eca1899924df15633a89 (patch) | |
tree | 451778bfeb320b91a89045f80c4768b1bfbd6626 /languages/cpp/debugger | |
parent | a97b6afffb6ad7624b2d936a9f32056c7b6dd831 (diff) | |
download | tdevelop-d2728dd8dbad48f045a5eca1899924df15633a89.tar.gz tdevelop-d2728dd8dbad48f045a5eca1899924df15633a89.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'languages/cpp/debugger')
-rw-r--r-- | languages/cpp/debugger/DESIGN.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/languages/cpp/debugger/DESIGN.txt b/languages/cpp/debugger/DESIGN.txt index 627fd403..3f4b4786 100644 --- a/languages/cpp/debugger/DESIGN.txt +++ b/languages/cpp/debugger/DESIGN.txt @@ -30,7 +30,7 @@ necessary to clear already cached data for other threads. == Command execution == The controller has a queue of commands to send to gdb. A command typically -has a callback (pair of QObject* and a member pointer) to be called when +has a callback (pair of TQObject* and a member pointer) to be called when command is done. When the queue is non-empty, and debugger is not busy executing the previous |