diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-23 12:51:17 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-23 12:51:17 +0900 |
commit | b3acf22ba81b51b959a545c591d294190f705a73 (patch) | |
tree | f8b02aa5193ddc4ecf5103ee43e91229bf8ea23c | |
parent | d82c9bd8b659143ef1c13dfff0f0a1a6da99e11f (diff) | |
download | tellico-b3acf22ba81b51b959a545c591d294190f705a73.tar.gz tellico-b3acf22ba81b51b959a545c591d294190f705a73.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | doc/en/advanced.docbook | 34 | ||||
-rw-r--r-- | doc/fr/advanced.docbook | 18 |
2 files changed, 26 insertions, 26 deletions
diff --git a/doc/en/advanced.docbook b/doc/en/advanced.docbook index 61286ed..6703e23 100644 --- a/doc/en/advanced.docbook +++ b/doc/en/advanced.docbook @@ -43,20 +43,20 @@ Arguments: <para>The full list of &DCOP; commands in the <constant>tellico</constant> object is shown below:</para> <programlisting> -bool importTellico(QString file, QString action) -bool importBibtex(QString file, QString action) -bool importMODS(QString file, QString action) -bool importRIS(QString file, QString action) -bool exportXML(QString file) -bool exportZip(QString file) -bool exportBibtex(QString file) -bool exportHTML(QString file) -bool exportCSV(QString file) -bool exportPilotDB(QString file) +bool importTellico(TQString file, TQString action) +bool importBibtex(TQString file, TQString action) +bool importMODS(TQString file, TQString action) +bool importRIS(TQString file, TQString action) +bool exportXML(TQString file) +bool exportZip(TQString file) +bool exportBibtex(TQString file) +bool exportHTML(TQString file) +bool exportCSV(TQString file) +bool exportPilotDB(TQString file) QValueList<long int> selectedEntries() QValueList<long int> filteredEntries() -void openFile(QString file) -void setFilter(QString text) +void openFile(TQString file) +void setFilter(TQString text) bool showEntry(long int id) </programlisting> @@ -85,12 +85,12 @@ The current open collection in &appname; may be exported to a file, in either Te <programlisting> long int addEntry() bool removeEntry(long int entryID) -QStringList values(QString fieldName) -QStringList values(long int entryID,QString fieldName) +QStringList values(TQString fieldName) +QStringList values(long int entryID,TQString fieldName) QStringList bibtexKeys() -QString bibtexKey(long int entryID) -bool setFieldValue(long int entryID,QString fieldName,QString value) -bool addFieldValue(long int entryID,QString fieldName,QString value) +TQString bibtexKey(long int entryID) +bool setFieldValue(long int entryID,TQString fieldName,TQString value) +bool addFieldValue(long int entryID,TQString fieldName,TQString value) </programlisting> <para> diff --git a/doc/fr/advanced.docbook b/doc/fr/advanced.docbook index 54f04b7..a238523 100644 --- a/doc/fr/advanced.docbook +++ b/doc/fr/advanced.docbook @@ -50,15 +50,15 @@ est disponible ci-dessous : </para> <programlisting> -bool importTellico(QString file, QString action) -bool importBibtex(QString file, QString action) -bool importMODS(QString file, QString action) -bool importRIS(QString file, QString action) -bool exportXML(QString file) -bool exportBibtex(QString file) -bool exportHTML(QString file) -bool exportCSV(QString file) -bool exportPilotDB(QString file) +bool importTellico(TQString file, TQString action) +bool importBibtex(TQString file, TQString action) +bool importMODS(TQString file, TQString action) +bool importRIS(TQString file, TQString action) +bool exportXML(TQString file) +bool exportBibtex(TQString file) +bool exportHTML(TQString file) +bool exportCSV(TQString file) +bool exportPilotDB(TQString file) QStringList bibtexKeys() </programlisting> |