diff options
author | Michele Calgaro <[email protected]> | 2023-09-26 11:50:58 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-28 11:41:17 +0900 |
commit | 7cec1c0edd5e9103470f05af4e8403c3ace08780 (patch) | |
tree | d7058008da5066e2b9c232c7d5b7e7e33294df35 /kexi/doc/dev/kexi_guidelines.txt | |
parent | c5457738148661c46793712f2b3bfdf86654e298 (diff) | |
download | koffice-7cec1c0edd5e9103470f05af4e8403c3ace08780.tar.gz koffice-7cec1c0edd5e9103470f05af4e8403c3ace08780.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 49e49d1876484adcc6c4f264b44b7f4cee28acc2)
Diffstat (limited to 'kexi/doc/dev/kexi_guidelines.txt')
-rw-r--r-- | kexi/doc/dev/kexi_guidelines.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kexi/doc/dev/kexi_guidelines.txt b/kexi/doc/dev/kexi_guidelines.txt index 7c2dfaba..cb1ea7b2 100644 --- a/kexi/doc/dev/kexi_guidelines.txt +++ b/kexi/doc/dev/kexi_guidelines.txt @@ -15,8 +15,8 @@ In fact many KexiDB features are compatible with QSQL. Focus on: - avoid loading all result data to client memory (fetch some records instead) - avoid blocking operations (do asynchronously as many things as possible) -- avoid memory copying (at low level try to store original char* data instead of QString, - convert to QString only on data displaying) +- avoid memory copying (at low level try to store original char* data instead of TQString, + convert to TQString only on data displaying) Idea 3 Directories layout: |