diff options
author | Michele Calgaro <[email protected]> | 2023-09-23 12:51:17 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-27 11:46:26 +0900 |
commit | 9c6e80458b2abd59b6399778d07c74f356155841 (patch) | |
tree | f8b02aa5193ddc4ecf5103ee43e91229bf8ea23c /doc/en | |
parent | 4b657979ec0fccf8904edfef636f23347caa3962 (diff) | |
download | tellico-9c6e80458b2abd59b6399778d07c74f356155841.tar.gz tellico-9c6e80458b2abd59b6399778d07c74f356155841.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit b3acf22ba81b51b959a545c591d294190f705a73)
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/advanced.docbook | 34 |
1 files changed, 17 insertions, 17 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> |