summaryrefslogtreecommitdiffstats
path: root/kexi/doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-03-09 18:58:02 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-03-17 21:16:45 +0900
commit7a7827396f90ad06945cd5a367f93d8ffd380e0f (patch)
treec812fa6c9a336fac31583724535fbcf8fd0e5ae0 /kexi/doc
parentea7a0b4d73337e0e30678300466e668179241348 (diff)
downloadkoffice-7a7827396f90ad06945cd5a367f93d8ffd380e0f.tar.gz
koffice-7a7827396f90ad06945cd5a367f93d8ffd380e0f.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kexi/doc')
-rw-r--r--kexi/doc/dev/TODO-Kexi-js4
-rw-r--r--kexi/doc/dev/auto_update_service.txt2
-rw-r--r--kexi/doc/dev/kexi_guidelines.txt4
-rw-r--r--kexi/doc/dev/naming_conventions.txt2
4 files changed, 6 insertions, 6 deletions
diff --git a/kexi/doc/dev/TODO-Kexi-js b/kexi/doc/dev/TODO-Kexi-js
index 8baabd7be..9d0eb85be 100644
--- a/kexi/doc/dev/TODO-Kexi-js
+++ b/kexi/doc/dev/TODO-Kexi-js
@@ -246,7 +246,7 @@ I am using update_kexi_po to recreate kexi.po file. THis will run cd koffice/ &&
- add action "restore original column order"
- add possibility of renaming column by 1) dbl-clicking header 2) "rename column" action
- more actions (as in Format and Insert menus of MSA2k3)
-- add own impl. (based on Qt) for date/time editor because:
+- add own impl. (based on TQt) for date/time editor because:
-- no focusSection(), etc. is available in current impl.
-- frames cannot be easily removed
-store last sorting column (and type) and load it on KexiTableView::setData()
@@ -341,7 +341,7 @@ HINT: removing WStaticContents from KexiTableView ctor fixed repaint problem
- fix repainting form's surface boundaries repainting when its size is changed by entering
value in the propeditor
- fix spring behaviour: it cannot be shrinked if its inside a layout
-- KTextEdit doesn't allow to set custom cursor (also in Qt Designer)
+- KTextEdit doesn't allow to set custom cursor (also in TQt Designer)
- support for multiple widgets selection in the property editor (requires changes to kexiproperty)
- handle older and newer formats in FormIO::loadFormFromDom()
- TDEAcceleratorManager::setNoAccel(TQWidget*) - use it in data mode,
diff --git a/kexi/doc/dev/auto_update_service.txt b/kexi/doc/dev/auto_update_service.txt
index eb3312184..698f3871c 100644
--- a/kexi/doc/dev/auto_update_service.txt
+++ b/kexi/doc/dev/auto_update_service.txt
@@ -20,7 +20,7 @@ to developers with a bug report to help find a bug context.
- This is a step for making KDE apps packages distribution-neutral on Linux.
Notes:
- The Service guis and backend should be build from two parts:
- - First: qt-only that is used to initialize the process and check the system, independently
+ - First: tqt-only that is used to initialize the process and check the system, independently
from existing KDE sybsystem.
- Second: used when we already know we already have a working KDE subsystem. This part can use
TDEConfig, KLibLoader, etc. to change the KDE settings.
diff --git a/kexi/doc/dev/kexi_guidelines.txt b/kexi/doc/dev/kexi_guidelines.txt
index cb1ea7b20..7b3392592 100644
--- a/kexi/doc/dev/kexi_guidelines.txt
+++ b/kexi/doc/dev/kexi_guidelines.txt
@@ -9,9 +9,9 @@ These tests can be later turned to command line options for Kexi what will allow
GUI operations o databases/projects.
Idea 2
-Look at QSQL module from QT. E.g. there is efficient cursor feature (it works quite good with mysql).
+Look at TQSQL module from TQt. E.g. there is efficient cursor feature (it works quite good with mysql).
We have KexiDBRecordSet instead, but this is just the same thing.
-In fact many KexiDB features are compatible with QSQL.
+In fact many KexiDB features are compatible with TQSQL.
Focus on:
- avoid loading all result data to client memory (fetch some records instead)
- avoid blocking operations (do asynchronously as many things as possible)
diff --git a/kexi/doc/dev/naming_conventions.txt b/kexi/doc/dev/naming_conventions.txt
index 7c167a772..e63e62bb6 100644
--- a/kexi/doc/dev/naming_conventions.txt
+++ b/kexi/doc/dev/naming_conventions.txt
@@ -123,7 +123,7 @@ void mymethod()
}
}
-This is good, because made qt and kde sources readable.
+This is good, because made tqt and tde sources readable.
4.3 Indentation within classes declaration