From 0d8b0ecdf579c539c4e2cb4cd4368a35d25692e7 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 23 Sep 2023 12:42:39 +0900 Subject: [PATCH] Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version Signed-off-by: Michele Calgaro --- TODO | 2 +- examples/flow.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TODO b/TODO index 29d2123..5ddc387 100644 --- a/TODO +++ b/TODO @@ -206,7 +206,7 @@ Example: problematic assertion approximately what the C API can do * don't export implementation details in the API - for instance - KAudio(Play|Record)Stream should probably only inherit from QObject, and + KAudio(Play|Record)Stream should probably only inherit from TQObject, and only "use" some aRts objects to do the actual work - that way, they can be changed/modified more easily afterwards diff --git a/examples/flow.cpp b/examples/flow.cpp index eaddf32..33bf959 100644 --- a/examples/flow.cpp +++ b/examples/flow.cpp @@ -45,7 +45,7 @@ int main() connect(sin, play, "invalue_left"); connect(sin, play, "invalue_right"); - // start all objects (maybe we should group objects like with QWidget + // start all objects (maybe we should group objects like with TQWidget // parents and such?) freq.start(); sin.start();