From 01795835d5c1ff258e872627652191051ecf4bfc Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 26 Sep 2023 11:48:48 +0900 Subject: [PATCH] Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version Signed-off-by: Michele Calgaro --- kile-remote-control.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/kile-remote-control.txt b/kile-remote-control.txt index ff90771..77d3e70 100644 --- a/kile-remote-control.txt +++ b/kile-remote-control.txt @@ -4,31 +4,31 @@ the services Kile can use from other KDE apps. 1. Kile's DCOP interface Open a file either by absolute or relative path: - virtual void openDocument(const QString &); + virtual void openDocument(const TQString &); Insert text at the cursor position in the current document; this can be used to replace Lyx's pipe mechanism: - virtual void insertText(const QString &); + virtual void insertText(const TQString &); Same effect as openDocument; kept for backward compatibility: - virtual void fileSelected(const QString &); + virtual void fileSelected(const TQString &); Close the current document: virtual void closeDocument(); Open a Kile project file, either by absolute or relative path: - virtual void openProject(const QString &); + virtual void openProject(const TQString &); -Jump to the given line in the current document; please note that the parameter is not of the type 'int' but of 'QString' instead: - virtual void setLine(const QString &); +Jump to the given line in the current document; please note that the parameter is not of the type 'int' but of 'TQString' instead: + virtual void setLine(const TQString &); Raise Kile's main window; does not steal the focus: virtual void setActive(); Run the given tool; the return values are { Running = 0, ConfigureFailed, NoLauncherInstalled, NoValidTarget, NoValidSource, TargetHasWrongPermissions, NoValidPrereqs, CouldNotLaunch, SelfCheckFailed}: - virtual int run(const QString &); + virtual int run(const TQString &); Run the given tool with a specific configuration as second parameter; returns the same values as the function above: - virtual int runWith(const QString &, const QString &); + virtual int runWith(const TQString &, const TQString &); 2. Kile's Lyx Pipe emulation