From d2728dd8dbad48f045a5eca1899924df15633a89 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 25 Sep 2023 13:57:48 +0900 Subject: Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version Signed-off-by: Michele Calgaro --- doc/api/HowToAddPlugins.dox | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/api/HowToAddPlugins.dox') diff --git a/doc/api/HowToAddPlugins.dox b/doc/api/HowToAddPlugins.dox index 3f9d1b20..e40840a8 100644 --- a/doc/api/HowToAddPlugins.dox +++ b/doc/api/HowToAddPlugins.dox @@ -85,7 +85,7 @@ Your part must be derived from KDevPlugin. - KDevPlugin takes two arguments: - 1) A parent argument. This also comes from createPartObject(). - - 2) A name, which in turn is given to the QObject + - 2) A name, which in turn is given to the TQObject constructor. . . @@ -134,7 +134,7 @@ rooted in the dom document node. For example, the autoproject part uses the statement
-    QString cflags = DomUtil::readEntry( *part->document(),
+    TQString cflags = DomUtil::readEntry( *part->document(),
                                          "/kdevautoproject/cflags" );
 
@@ -181,7 +181,7 @@ void GDBBreakpointWidget::savePartialProjectSession(QDomElement* el) { BreakpointTableRow* btr = (BreakpointTableRow *) m_table->item(row, Control); Breakpoint* bp = btr->breakpoint(); - QDomElement breakpointEl = domDoc.createElement("breakpoint"+QString::number(row)); + QDomElement breakpointEl = domDoc.createElement("breakpoint"+TQString::number(row)); breakpointEl.setAttribute("type", bp->type()); breakpointEl.setAttribute("location", bp->location(false)); breakpointEl.setAttribute("enabled", bp->isEnabled()); -- cgit v1.2.1