summaryrefslogtreecommitdiffstats
path: root/kexi/doc/dev
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/doc/dev')
-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 8baabd7b..9d0eb85b 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 eb331218..698f3871 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 cb1ea7b2..7b339259 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 7c167a77..e63e62bb 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