Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/11/head
Michele Calgaro 7 months ago
parent 992e8db5fd
commit 01795835d5
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -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

Loading…
Cancel
Save