From 7a7827396f90ad06945cd5a367f93d8ffd380e0f Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 9 Mar 2024 18:58:02 +0900 Subject: [PATCH] Replace Qt with TQt Signed-off-by: Michele Calgaro --- autocorrect/en_US.xml | 1 + chalk/HACKING | 6 +- chalk/IMAGE_LIBRARIES | 2 +- chalk/doc/DESIGN.obsolete | 2 +- chalk/doc/chalk.xmi | 4 +- chalk/doc/howtofilters.txt | 6 +- chalk/doc/profiles.txt | 2 +- doc/chalk/developers-plugins.docbook | 18 +- doc/koffice/index.docbook | 23 +-- doc/kugar/index.docbook | 2 +- doc/kugar/progguide.docbook | 18 +- doc/kword/index.docbook | 22 +- doc/kword/mailmerge.docbook | 4 +- filters/karbon/svg/svgimport.cpp | 4 +- .../kpresenter/ooimpress/ooimpressimport.cpp | 2 +- filters/kspread/gnumeric/gnumericimport.cpp | 2 +- filters/kspread/qpro/libqpro/README | 8 +- filters/kspread/qpro/libqpro/TODO | 2 +- filters/kword/abiword/ImportHelpers.h | 2 +- filters/kword/abiword/abiwordexport.cpp | 2 +- filters/kword/html/import/tdehtmlreader.cpp | 2 +- filters/kword/kword1.3/import/README | 2 +- filters/kword/msword/texthandler.cpp | 2 +- filters/kword/oowriter/oowriterimport.cpp | 4 +- filters/kword/pdf/README | 6 +- kchart/kdchart/README | 2 +- kexi/3rdparty/kolibs/Makefile.am | 2 +- kexi/Makefile.am | 6 +- kexi/data/Makefile.am | 4 +- kexi/doc/dev/TODO-Kexi-js | 4 +- kexi/doc/dev/auto_update_service.txt | 2 +- kexi/doc/dev/kexi_guidelines.txt | 4 +- kexi/doc/dev/naming_conventions.txt | 2 +- kexi/formeditor/TODO | 2 +- kexi/formeditor/formIO.h | 2 +- kexi/formeditor/test/Makefile.am | 2 +- kexi/kexidb/drivermanager.cpp | 2 +- kexi/kexidb/drivers/odbc/odbcconnection.cpp | 2 +- kexi/kexidb/drivers/odbc/odbcdriver.cpp | 2 +- kexi/main/printing/Makefile.am | 2 +- kexi/main/startup/Makefile.am | 6 +- kexi/migration/migratemanager.cpp | 2 +- kexi/plugins/forms/widgets/Makefile.am | 2 +- .../scripting/scripts/copycenter/readme.html | 2 +- kexi/widget/Makefile.am | 6 +- kexi/widget/relations/Makefile.am | 6 +- kexi/widget/tableview/Makefile.am | 6 +- kexi/widget/utils/Makefile.am | 2 +- kivio/kiviopart/kiviosdk/kivio_py_stencil.h | 2 +- kplato/kptcalendarpanel.h | 2 +- kpresenter/KPrPixmapObject.cpp | 2 +- kspread/Doxyfile | 2 +- kspread/dialogs/kspread_dlg_formula.h | 2 +- kspread/dialogs/kspread_dlg_goalseek.h | 2 +- kspread/kspread_cell.cpp | 2 +- kspread/kspread_object.cpp | 2 +- kugar/README | 8 +- kugar/lib/mreportviewer.cpp | 2 +- kugar/lib/mreportviewer.h | 4 +- kword/dtd/kword.dtd | 4 +- kword/mailmerge/configure.in.in | 10 +- kword/mailmerge/sql/KWMySqlCursor.h | 2 +- kword/mailmerge/sql/Makefile.am | 4 +- .../sql/kwserialletter_qtsqldb.desktop | 192 +++++++++--------- .../sql/kwserialletter_qtsqldb_power.desktop | 192 +++++++++--------- kword/mailmerge/tdeabc/Makefile.am | 2 +- kword/tests/README | 2 +- lib/kofficecore/KoSpeaker.cpp | 2 +- lib/kofficecore/THOUGHTS | 4 +- lib/koproperty/editor.cpp | 2 +- lib/kotext/DESIGN | 5 +- lib/kotext/KoTextObject.cpp | 5 +- lib/kotext/KoVariable.cpp | 2 +- lib/kwmf/kowmfreadprivate.h | 2 +- lib/kwmf/kowmfwrite.h | 2 +- lib/kwmf/qwmf.cpp | 7 +- lib/kwmf/qwmf.h | 4 +- tools/tdefile-plugins/abiword/Makefile.am | 2 +- tools/tdefile-plugins/gnumeric/Makefile.am | 2 +- tools/tdefile-plugins/koffice/Makefile.am | 2 +- tools/tdefile-plugins/ooo/Makefile.am | 2 +- 81 files changed, 343 insertions(+), 358 deletions(-) diff --git a/autocorrect/en_US.xml b/autocorrect/en_US.xml index 394c4e0f5..39bf6dfe1 100644 --- a/autocorrect/en_US.xml +++ b/autocorrect/en_US.xml @@ -901,6 +901,7 @@ + diff --git a/chalk/HACKING b/chalk/HACKING index 7673eb708..f5ddc1e47 100644 --- a/chalk/HACKING +++ b/chalk/HACKING @@ -31,7 +31,7 @@ Shared pointers Getter/setter - Chalk doesn't use Qt's properties -- yet. If you want to introduce use of + Chalk doesn't use TQt's properties -- yet. If you want to introduce use of properties, convert any and all classes in Chalk before committing. Getter/setters are named 'x() for getters and setX(int x) for setters. If you @@ -49,7 +49,7 @@ Class naming Function naming - Functions should be named in camelBackedFashion, to conform to Qt's standards. + Functions should be named in camelBackedFashion, to conform to TQt's standards. If you encounter functions in c_style_like_this, feel free to rename. Also: verbNoun -- i.e., rotateLayer, not layer_rotate. The latter is a true c-ism, introduced by a language that needs to prefix the 'class' name to every function @@ -90,4 +90,4 @@ Slots and signals Prefix slots with slot and signals with sig: slotUpdateSelection, sigSelectionUpdated. -Boudewijn Rempt \ No newline at end of file +Boudewijn Rempt diff --git a/chalk/IMAGE_LIBRARIES b/chalk/IMAGE_LIBRARIES index 1d26fb969..390ceb52b 100644 --- a/chalk/IMAGE_LIBRARIES +++ b/chalk/IMAGE_LIBRARIES @@ -247,7 +247,7 @@ too big to easily evaluate for me. Advantages - - It is used in other Qt applications, like Julius + - It is used in other TQt applications, like Julius - Probably very good Disadvantages diff --git a/chalk/doc/DESIGN.obsolete b/chalk/doc/DESIGN.obsolete index 2f0d25ca6..3d218990a 100644 --- a/chalk/doc/DESIGN.obsolete +++ b/chalk/doc/DESIGN.obsolete @@ -91,7 +91,7 @@ User interface ui - The dialogs appear to be created by hand, not with Qt + The dialogs appear to be created by hand, not with TQt Designer. Besides, many are inoperational. other diff --git a/chalk/doc/chalk.xmi b/chalk/doc/chalk.xmi index d803727a5..ce42344ab 100644 --- a/chalk/doc/chalk.xmi +++ b/chalk/doc/chalk.xmi @@ -983,7 +983,7 @@ pixels in the brush." visibility="public" xmi.id="705" type="virtual KisAlphaMas - + @@ -1050,7 +1050,7 @@ pixels in the brush." visibility="public" xmi.id="705" type="virtual KisAlphaMas - + diff --git a/chalk/doc/howtofilters.txt b/chalk/doc/howtofilters.txt index e586ae198..dad6fe455 100644 --- a/chalk/doc/howtofilters.txt +++ b/chalk/doc/howtofilters.txt @@ -1,7 +1,7 @@ The goal of this howto is to explain how to create a filter for chalk -2) using Qt/Designer for the ConfigurationWidget +2) using TQt/Designer for the ConfigurationWidget Just copy the following in a file named (for instance) myfiltercw.ui : @@ -25,6 +25,6 @@ Just copy the following in a file named (for instance) myfiltercw.ui : -And then open Qt/Designer +And then open TQt/Designer -NOTE: it would be nicer if I knew how to copy (using autoconf/automake) this file in $(TQTDIR)/tools/designer/templates \ No newline at end of file +NOTE: it would be nicer if I knew how to copy (using autoconf/automake) this file in $(TQTDIR)/tools/designer/templates diff --git a/chalk/doc/profiles.txt b/chalk/doc/profiles.txt index c1841d527..52a809418 100644 --- a/chalk/doc/profiles.txt +++ b/chalk/doc/profiles.txt @@ -60,7 +60,7 @@ Paste from clipboard Two cases: Chalk has placed a clip on the copy profile set in the Settings, or none. An external clip is always RGB8 (for now, no - doubt Qt will extend its clipboard once RGB16 + doubt TQt will extend its clipboard once RGB16 images or RGB half images become widespread), so in those cases we always need an RGB profile. diff --git a/doc/chalk/developers-plugins.docbook b/doc/chalk/developers-plugins.docbook index 2e592be11..ebd5f6647 100644 --- a/doc/chalk/developers-plugins.docbook +++ b/doc/chalk/developers-plugins.docbook @@ -33,10 +33,8 @@ the combination of a unique untranslated string (used when saving, for instance) and a translated string for GUI purposes. A word on compatibility: &chalk; is still in development. From &chalk; 1.5 to -1.6 not many API changes are expected, but there may be some. From &chalk; 1.6 -to 2.0 we will move from &Qt;3 to &Qt;4, from &tde;3 to &tde;4, from -automake to cmake: many changes are to -be expected. If you develop a plugin for &chalk; and choose to do so in +1.6 not many API changes are expected, but there may be some. +If you develop a plugin for &chalk; and choose to do so in &chalk;’s subversion repository, chances are excellent that we’ll help you porting. These changes may also render parts of this document out of date. Always check with the latest API documentation or the header files installed @@ -143,7 +141,7 @@ import/export filter could be a PDF filter. Filters are loaded by the Creating plugins -Plugins are written in C++ and can use all of &tde; and &Qt; and the &chalk; +Plugins are written in C++ and can use all of &tde; and &TQt; and the &chalk; developer API. Only viewplugins should use the &koffice; API. Don’t worry: &chalk;’s API’s are quite clear and rather extensively documented (for free software) and coding your first filter is really easy. @@ -763,7 +761,7 @@ an option widget: -Use &Qt; Designer to create a widget base, and subclass it for +Use &TQt; Designer to create a widget base, and subclass it for your filter Use one of the simple widgets that show a number of sliders for lists of integers, doubles or bools. These are useful if, like the above @@ -773,7 +771,7 @@ bools. See the API dox for KisMultiIntegerFilterWidget, KisMultiBoolFilterWidget. Hand-code a widget. This is not recommended, and if you do so and want your filter to become part of &chalk;’s official release, then I’ll ask -you to replate your hand-coded widget with a &Qt; Designer +you to replate your hand-coded widget with a &TQt; Designer widget. @@ -871,7 +869,7 @@ non-painting tasks and shape painting tasks. A tool has an option widget, just like filters. Currently, the option widgets are shown in a tab in a dock window. We may change that to a strip under the main menu (which then replaces the toolbar) for &chalk; 2.0, but for now, -design your option widget to fit in a tab. As always, it’s best to use &Qt; +design your option widget to fit in a tab. As always, it’s best to use &TQt; Designer for the design of the option widget. A good example of a tool is the star tool: @@ -927,9 +925,9 @@ The following methods (buttonPress, move and buttonRelease) are called by &chalk; when the input device (mouse, stylus, eraser etc.) is pressed down, moved or released. Note that you also get move events if the -mouse button isn’t pressed. The events are not the regular &Qt; events, but +mouse button isn’t pressed. The events are not the regular &TQt; events, but synthetic &chalk; events because we make use of low-level trickery to get -enough events to draw a smooth line. By default, toolkits like &Qt; (and GTK) +enough events to draw a smooth line. By default, toolkits like &TQt; (and GTK) drop events if they are too busy to handle them, and we want them all. diff --git a/doc/koffice/index.docbook b/doc/koffice/index.docbook index e39d28150..0aef81ab1 100644 --- a/doc/koffice/index.docbook +++ b/doc/koffice/index.docbook @@ -413,7 +413,7 @@ letters and use certain templates, there is no need for much more functionality than saving, loading, printing, &etc; - Thanks to the action concept of &Qt; and &tde;, + Thanks to the action concept of &TQt; and &tde;, you can freely customize &koffice; menubars and tool bars. Unfortunately, at the moment, there are no easy-to-use dialogs to do this. &koffice; stores its &GUI; configuration in &XML; files @@ -510,7 +510,7 @@ absolutely free desktop environment for unix-like operating systems. Trolltech. The creators -of the C++-toolkit &Qt;. &tde; and &koffice; make use of &Qt;. +of the C++-toolkit &TQt;. &tde; and &koffice; make use of &TQt;. @@ -531,7 +531,7 @@ be of interest: At http://developer.kde.org you'll -find many documents about programming with &Qt; and &tde;. Here you can find +find many documents about programming with &TQt; and &tde;. Here you can find the online version of the complete &tde; library documentation. @@ -642,13 +642,10 @@ A functioning &UNIX; system (for example, &Linux; or BSD) with a configured &X-Window; (for example, XFree86 or X.Org). -The &Qt; 3.3 libraries from Trolltech. See -www.trolltech.com -for more information. +The &TQt; libraries. -The Trinity Desktop Environment (&tde;) or newer. &koffice; cannot be compiled -with earlier versions of &kde;. Information on obtaining and installing +The Trinity Desktop Environment (&tde;). Information on obtaining and installing &tde; can be found at: &tde-http; @@ -659,7 +656,7 @@ using a networked computer, check with your administrator first. -Please note that, while you need the &tde; 3.3 (or newer) libraries +Please note that, while you need the &tde; libraries on your system, you can still use &koffice; in a different desktop environment (for example, XFCE or GNOME). @@ -684,12 +681,12 @@ A C++ compiler which supports exceptions, preferably a recent version of GCC. for info about getting and installing it.) -Troll Tech's &Qt; 3.3 development packages. If these packages are not installed on +&TQt; development packages. If these packages are not installed on your system and they are not included in the distribution of your operating -system, you should probably have to compile &Qt; from source. +system, you should probably have to compile &TQt; from source. These sources can be obtained from - -http://www.trolltech.com/download/index.html. + +https://mirror.git.trinitydesktop.org/gitea/TDE/tqt3. diff --git a/doc/kugar/index.docbook b/doc/kugar/index.docbook index ebb84d162..b05d2aac8 100644 --- a/doc/kugar/index.docbook +++ b/doc/kugar/index.docbook @@ -79,7 +79,7 @@ Introduction - &kugar; is a report creation tool for &Qt; and &tde;. It includes + &kugar; is a report creation tool for &TQt; and &tde;. It includes a &GUI; report template designer, a report engine, a &konqueror; part for easy report preview and a set of examples. diff --git a/doc/kugar/progguide.docbook b/doc/kugar/progguide.docbook index 97f4e4718..a61faf07c 100644 --- a/doc/kugar/progguide.docbook +++ b/doc/kugar/progguide.docbook @@ -61,15 +61,15 @@ for a detailed description. -Create a &Qt; designer plugin, use it to build the application &GUI; in the designer and +Create a &TQt; designer plugin, use it to build the application &GUI; in the designer and link it to the program dynamically. -See Creating a &Qt; designer plugin +See Creating a &TQt; designer plugin for a detailed description. - The last two ways are acceptable for &Qt; and &tde; developers; + The last two ways are acceptable for &TQt; and &tde; developers; but &kugar; is designed to be a report generator, independent from a programming language and/or IDE. It uses &XML; format for describing report templates and data files. So any program @@ -125,7 +125,7 @@ developers. It supports a &tde; printing system and &UNIX; localization via i18n() calls. -The MReportViewer class is designed for &Qt; +The MReportViewer class is designed for &TQt; developers and provides real crossplatforming. It can be used not only on &UNIX; platforms, but also on &Windows; and &MacOS;. @@ -136,7 +136,7 @@ with libkugar.so shared library, which is provided with the Include files are kugarqt.h and kugar.h -for &Qt; and &tde; programs respectively. +for &TQt; and &tde; programs respectively. For a detailed example of how &kugar; classes can be used, look in the /shell folder in the &kugar; sources. @@ -214,7 +214,7 @@ create a TQIODevice successor and redefine all necessary functionality. -Creating &Qt; designer plugin +Creating &TQt; designer plugin This is the example code of how a designer plugin is created. The code below creates a plugin for @@ -222,7 +222,7 @@ a &tde; KReportViewer widget. -If a &Qt; +If a &TQt; widget is desired, replace KReportViewer with MReportViewer and kugar.h with kugarqt.h in the plugin code. @@ -231,7 +231,7 @@ widget is desired, replace KReportViewer with Plugin usage -The designer plugin will allow the usage of &Qt; Designer to place a KReportViewer +The designer plugin will allow the usage of &TQt; Designer to place a KReportViewer widget onto a window and preview it correctly. @@ -240,7 +240,7 @@ Programs that make use of this plugin must be linked dynamically with it. The corresponding library is called libkugar_plugin.so. Widgets or dialogs that include KReportViewer widget must include <kugar.h> in implementation and have a forward declaration -of class KReportViewer. Includes can be done with &Qt; +of class KReportViewer. Includes can be done with &TQt; Designer's Object Explorer (Source tab). diff --git a/doc/kword/index.docbook b/doc/kword/index.docbook index a9a1fd995..849a37655 100644 --- a/doc/kword/index.docbook +++ b/doc/kword/index.docbook @@ -661,7 +661,7 @@ Any software updates, bug fixes or announcements of new releases of &koffice; wi How do themes affect &kword;? -&kword; (like all of &koffice;) is completely themeable. You can use any QT or &tde; theme to customize the look of &kword;. +&kword; (like all of &koffice;) is completely themeable. You can use any TQt or &tde; theme to customize the look of &kword;. @@ -805,20 +805,14 @@ main ftp site of the &tde; project. -&Qt; Toolkit 3.2 or later. This can be obtained from Trolltech. -While &koffice; will compile and run with any version of &Qt; 3.2 or later, it is recommended that you compile and install -&Qt; 3.3.4 to take advantage of all the bug fixes (including some security fixes) that have occurred. +&TQt; Toolkit. This can be obtained from https://mirror.git.trinitydesktop.org/gitea/TDE/tqt3. -&tde; 3.3.0 libraries (tdelibs) and the &tde; 3.3.0 base package -(tdebase). These can be obtained from the &tde; web page. -While &koffice; will compile and run with any version of &tde; 3.3.0 or later, it is recommended that you compile and install -&tde; 3.4 to take advantage of all the bug fixes that have occurred. -It is also recommended that you install the arts package 1.3.2 from the -&tde; &FTP; site. +&tde; libraries (tdelibs) and the &tde; base package +(tdebase). These can be obtained from the &tde; web page. @@ -832,7 +826,7 @@ your distribution's web site. In order to use external databases for mail merging documents, you must have -the QT toolkit compiled with SQL support. To add SQL support (as a plugin), simply include +the TQt toolkit compiled with SQL support. To add SQL support (as a plugin), simply include in your configure line. driver should be replaced with mysql, odbc, CVS, or psql as is appropriate for your database needs. @@ -874,7 +868,7 @@ the file to edit. Show &kword; version -To see the version numbers for the QT toolkit, &tde;, and &kword; type: +To see the version numbers for the TQt toolkit, &tde;, and &kword; type: $ kword -v diff --git a/doc/kword/mailmerge.docbook b/doc/kword/mailmerge.docbook index 2a1355d3a..04036fbad 100644 --- a/doc/kword/mailmerge.docbook +++ b/doc/kword/mailmerge.docbook @@ -38,7 +38,7 @@ SQL database for your data source. &kword; has the ability to use several of the most popular open source databases as a source of data for personalized documents. In order to access an outside database using SQL, your machine needs to have the appropriate database module compiled -into your copy of QT. +into your copy of TQt. For more information see the installation section of this documentation. The database can be located on the same machine as &kword;, or on any computer which is accessable through your computer network or the Internet. @@ -82,7 +82,7 @@ the menubar. A dialog box will appear. -Select QT-SQL Source and click on +Select TQt-SQL Source and click on OK. A new dialog box will appear. diff --git a/filters/karbon/svg/svgimport.cpp b/filters/karbon/svg/svgimport.cpp index 9d323d3da..a528ea75d 100644 --- a/filters/karbon/svg/svgimport.cpp +++ b/filters/karbon/svg/svgimport.cpp @@ -822,8 +822,8 @@ void SvgImport::parsePA( VObject *obj, SvgGraphicsContext *gc, const TQString &c { int weight = TQFont::Normal; - // map svg weight to qt weight - // svg value qt value + // map svg weight to tqt weight + // svg value tqt value // 100,200,300 1, 17, 33 // 400 50 (normal) // 500,600 58,66 diff --git a/filters/kpresenter/ooimpress/ooimpressimport.cpp b/filters/kpresenter/ooimpress/ooimpressimport.cpp index 8223e284e..d61d73814 100644 --- a/filters/kpresenter/ooimpress/ooimpressimport.cpp +++ b/filters/kpresenter/ooimpress/ooimpressimport.cpp @@ -2189,7 +2189,7 @@ void OoImpressImport::appendField(TQDomDocument& doc, TQDomElement& e, const TQD } else if (isTextNS && tag == "time") { - // Use TQDateTime to work around a possible problem of TQTime::FromString in TQt 3.2.2 + // Use TQDateTime to work around a possible problem of TQTime::FromString in Qt 3.2.2 TQDateTime dt(TQDateTime::fromString(object.attributeNS( ooNS::text, "time-value", TQString()), TQt::ISODate)); bool fixed = (object.hasAttributeNS( ooNS::text, "fixed") && object.attributeNS( ooNS::text, "fixed", TQString())=="true"); diff --git a/filters/kspread/gnumeric/gnumericimport.cpp b/filters/kspread/gnumeric/gnumericimport.cpp index 511cfb0ba..4ba332815 100644 --- a/filters/kspread/gnumeric/gnumericimport.cpp +++ b/filters/kspread/gnumeric/gnumericimport.cpp @@ -1196,7 +1196,7 @@ void GNUMERICFilter::setStyleInfo(TQDomNode * sheet, Sheet * table) else if (shade == "4") { kspread_cell->format()->setBackGroundBrushStyle(TQt::Dense5Pattern); - /* This should be 25%... All qt has is 37% */ + /* This should be 25%... All tqt has is 37% */ /* 4 25% */ } diff --git a/filters/kspread/qpro/libqpro/README b/filters/kspread/qpro/libqpro/README index d8c76ef3a..707acbbc3 100644 --- a/filters/kspread/qpro/libqpro/README +++ b/filters/kspread/qpro/libqpro/README @@ -14,11 +14,11 @@ spreadsheet program as part of the Quattro Pro filter. I have tried to write it as a reusable set of classes so that it may used by other people, particularly those writing spreadsheet filters. -KOffice programs rely heavily on the QT set of classes. A QT interface to +KOffice programs rely heavily on the TQt set of classes. A TQt interface to the library provides a lot of advantages. However I realise that not everyone -wants to include QT in their code and so the package produces either one or -two libraries. If QT is installed on the build machine then both libraries -are built, otherwise only the non-QT library is produced. +wants to include TQt in their code and so the package produces either one or +two libraries. If TQt is installed on the build machine then both libraries +are built, otherwise only the non-TQt library is produced. Installation ------------ diff --git a/filters/kspread/qpro/libqpro/TODO b/filters/kspread/qpro/libqpro/TODO index ae0cbb8cf..de50024d3 100644 --- a/filters/kspread/qpro/libqpro/TODO +++ b/filters/kspread/qpro/libqpro/TODO @@ -1,4 +1,4 @@ -1. Add USE_QT option to build a QT version of the library +1. Add USE_QT option to build a TQt version of the library 2. Add options to FormulaAsText function. e.g. optionRemoveAt to make removal of leading @ on functions optional. 3. Split classes into individual files diff --git a/filters/kword/abiword/ImportHelpers.h b/filters/kword/abiword/ImportHelpers.h index 04419b902..856fcf67e 100644 --- a/filters/kword/abiword/ImportHelpers.h +++ b/filters/kword/abiword/ImportHelpers.h @@ -28,7 +28,7 @@ * Helpers for the AbiWord import filter * * Rough rule for including code in this file: - * use nothing of QT except TQMap, TQValueList and TQString + * use nothing of TQt except TQMap, TQValueList and TQString */ class AbiProps diff --git a/filters/kword/abiword/abiwordexport.cpp b/filters/kword/abiword/abiwordexport.cpp index ffc040167..5bb327f1c 100644 --- a/filters/kword/abiword/abiwordexport.cpp +++ b/filters/kword/abiword/abiwordexport.cpp @@ -217,7 +217,7 @@ bool AbiWordWorker::doOpenDocument(void) // Make the file header // First the XML header in UTF-8 version - // (AbiWord and QT handle UTF-8 well, so we stay with this encoding!) + // (AbiWord and TQt handle UTF-8 well, so we stay with this encoding!) *m_streamOut << "\n"; // NOTE: AbiWord CVS 2002-02-?? has a new DOCTYPE diff --git a/filters/kword/html/import/tdehtmlreader.cpp b/filters/kword/html/import/tdehtmlreader.cpp index 523bd672e..a0e0abd8f 100644 --- a/filters/kword/html/import/tdehtmlreader.cpp +++ b/filters/kword/html/import/tdehtmlreader.cpp @@ -459,7 +459,7 @@ static const TQColor parsecolor(const TQString& colorstring) else { // H'm, we have still not found the color! - // Let us see if QT can do better! + // Let us see if TQt can do better! color.setNamedColor(colorstring); } } diff --git a/filters/kword/kword1.3/import/README b/filters/kword/kword1.3/import/README index 88d09ff89..feb8c54b7 100644 --- a/filters/kword/kword1.3/import/README +++ b/filters/kword/kword1.3/import/README @@ -11,7 +11,7 @@ The filter is a 4 pass filter. 1. Parsing 1a parsing documentinfo,xml (done classicaly with QDom) - 1b parsing maindoc.xml (class KWord13Parser, done with Qt's SAX parser: QXml) + 1b parsing maindoc.xml (class KWord13Parser, done with TQt's SAX parser: TQXml) 2. Postprocessing of parsing (class KWord13PostParsing) * loading of pictures * grouping tables cells (currently not done) diff --git a/filters/kword/msword/texthandler.cpp b/filters/kword/msword/texthandler.cpp index d25408693..0e6dfdc45 100644 --- a/filters/kword/msword/texthandler.cpp +++ b/filters/kword/msword/texthandler.cpp @@ -531,7 +531,7 @@ TQString KWordTextHandler::getFont(unsigned fc) const TQFontInfo info( xFont ); #ifdef FONT_DEBUG - kdDebug(30513) << " QT-FONT: " << info.family() << endl; + kdDebug(30513) << " TQt-FONT: " << info.family() << endl; #endif return info.family(); diff --git a/filters/kword/oowriter/oowriterimport.cpp b/filters/kword/oowriter/oowriterimport.cpp index 19449823c..46d5b1696 100644 --- a/filters/kword/oowriter/oowriterimport.cpp +++ b/filters/kword/oowriter/oowriterimport.cpp @@ -792,7 +792,7 @@ void OoWriterImport::importDateTimeStyle( const TQDomElement& parent ) #endif TQString styleName = parent.attributeNS( ooNS::style, "name", TQString() ); - kdDebug(30518) << "datetime style: " << styleName << " qt format=" << format << endl; + kdDebug(30518) << "datetime style: " << styleName << " tqt format=" << format << endl; m_dateTimeFormats.insert( styleName, format ); } @@ -1989,7 +1989,7 @@ void OoWriterImport::appendField(TQDomDocument& doc, TQDomElement& outputFormats } else if (localName == "time") { - // Use TQDateTime to work around a possible problem of TQTime::FromString in TQt 3.2.2 + // Use TQDateTime to work around a possible problem of TQTime::FromString in Qt 3.2.2 TQDateTime dt(TQDateTime::fromString(object.attributeNS( ooNS::text, "time-value", TQString()), TQt::ISODate)); bool fixed = (object.hasAttributeNS( ooNS::text, "fixed") && object.attributeNS( ooNS::text, "fixed", TQString())=="true"); diff --git a/filters/kword/pdf/README b/filters/kword/pdf/README index 97e537c72..9fdeaaeaf 100644 --- a/filters/kword/pdf/README +++ b/filters/kword/pdf/README @@ -15,7 +15,7 @@ able to open PDF files transparently by using this module. Requirements: You need the following libraries and headers (found usually in the "devel" packages of distributions): -- Qt >= 3.0 -- KDE >= 3.0 -- KOffice >= 1.2 +- TQt +- TDE +- KOffice diff --git a/kchart/kdchart/README b/kchart/kdchart/README index 075e9d8cb..98ec750df 100644 --- a/kchart/kdchart/README +++ b/kchart/kdchart/README @@ -18,7 +18,7 @@ CONTENTS this is from the KD Chart webpage: ''KD Chart is a tool for creating business charts and is - the most powerful Qt component of its kind. + the most powerful TQt component of its kind. Besides having all the standard features, KD Chart(...)'' diff --git a/kexi/3rdparty/kolibs/Makefile.am b/kexi/3rdparty/kolibs/Makefile.am index c5b1cf7b2..8ac6c9d23 100644 --- a/kexi/3rdparty/kolibs/Makefile.am +++ b/kexi/3rdparty/kolibs/Makefile.am @@ -22,7 +22,7 @@ libkexikolibs_la_METASOURCES = AUTO SUBDIRS = . -# set the include path for X, qt and KDE +# set the include path for X, tqt and TDE INCLUDES= -I$(top_srcdir)/kexi $(all_includes) diff --git a/kexi/Makefile.am b/kexi/Makefile.am index 6c230399d..8907cfd1b 100644 --- a/kexi/Makefile.am +++ b/kexi/Makefile.am @@ -37,10 +37,10 @@ install-data-local: # kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS. # kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES. # kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES. -# kde_styledir Where Qt/KDE widget styles should go to (new in KDE 3). -# kde_designerdir Where Qt Designer plugins should go to (new in KDE 3). +# kde_styledir Where TQt/TDE widget styles should go to. +# kde_designerdir Where TQt Designer plugins should go to. -# set the include path for X, qt and KDE +# set the include path for X, tqt and TDE INCLUDES = $(LIB_KEXI_KMDI_INCLUDES) $(all_includes) METASOURCES = AUTO diff --git a/kexi/data/Makefile.am b/kexi/data/Makefile.am index 503301b5f..d6eb6ddea 100644 --- a/kexi/data/Makefile.am +++ b/kexi/data/Makefile.am @@ -17,8 +17,8 @@ include $(top_srcdir)/kexi/Makefile.global # kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS. # kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES. # kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES. -# kde_styledir Where Qt/KDE widget styles should go to (new in KDE 3). -# kde_designerdir Where Qt Designer plugins should go to (new in KDE 3). +# kde_styledir Where TQt/TDE widget styles should go to. +# kde_designerdir Where TQt Designer plugins should go to. rcdir = $(kde_datadir)/kexi rc_DATA = kexiui.rc 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 diff --git a/kexi/formeditor/TODO b/kexi/formeditor/TODO index bb4354148..f64cf7db1 100644 --- a/kexi/formeditor/TODO +++ b/kexi/formeditor/TODO @@ -11,7 +11,7 @@ because of violating their licenses, if we'd like to expose all their technologies so plainly (at least commercial) license mentions that there cannot be - a project that is a replacement of the Qt developed out of the Qt) + a project that is a replacement of the TQt developed out of the TQt) 4. It wouldn't hurt to ask them, as well. * Add many other widgets :-) * Create db-aware widget factory diff --git a/kexi/formeditor/formIO.h b/kexi/formeditor/formIO.h index e9bd068eb..180a5c733 100644 --- a/kexi/formeditor/formIO.h +++ b/kexi/formeditor/formIO.h @@ -196,7 +196,7 @@ class KFORMEDITOR_EXPORT FormIO : public TQObject /*! \return the loaded pixmap This function loads the pixmap named \a name in the DOM document \a domDoc. - Decoding code is taken from QT Designer. + Decoding code is taken from TQt Designer. */ static TQPixmap loadImage(TQDomDocument domDoc, const TQString& name); diff --git a/kexi/formeditor/test/Makefile.am b/kexi/formeditor/test/Makefile.am index a9aec33a1..0fd81ca26 100644 --- a/kexi/formeditor/test/Makefile.am +++ b/kexi/formeditor/test/Makefile.am @@ -6,7 +6,7 @@ include $(top_srcdir)/kexi/Makefile.global # of the other Makefile.am variables bin_PROGRAMS = kformdesigner -# set the include path for X, qt and KDE +# set the include path for X, tqt and TDE INCLUDES = -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/formeditor \ -I$(top_srcdir)/kexi/widget -I$(top_srcdir)/kexi/core \ -I$(top_srcdir)/lib -I$(top_srcdir)/lib/kofficecore $(all_includes) diff --git a/kexi/kexidb/drivermanager.cpp b/kexi/kexidb/drivermanager.cpp index 3528bd0af..489294c34 100644 --- a/kexi/kexidb/drivermanager.cpp +++ b/kexi/kexidb/drivermanager.cpp @@ -91,7 +91,7 @@ bool DriverManagerInternal::lookupDrivers() if (tqApp) { connect(tqApp,TQ_SIGNAL(aboutToQuit()),this,TQ_SLOT(slotAppQuits())); } -//TODO: for QT-only version check for TDEInstance wrapper +//TODO: for TQt-only version check for TDEInstance wrapper // KexiDBWarn << "DriverManagerInternal::lookupDrivers(): cannot work without TDEInstance (TDEGlobal::instance()==0)!" << endl; // setError("Driver Manager cannot work without TDEInstance (TDEGlobal::instance()==0)!"); diff --git a/kexi/kexidb/drivers/odbc/odbcconnection.cpp b/kexi/kexidb/drivers/odbc/odbcconnection.cpp index 3ac6f0821..21796cf9c 100644 --- a/kexi/kexidb/drivers/odbc/odbcconnection.cpp +++ b/kexi/kexidb/drivers/odbc/odbcconnection.cpp @@ -22,7 +22,7 @@ #include #include -//QT Includes +//TQt Includes #include #include diff --git a/kexi/kexidb/drivers/odbc/odbcdriver.cpp b/kexi/kexidb/drivers/odbc/odbcdriver.cpp index 83d463616..81b6bb7e3 100644 --- a/kexi/kexidb/drivers/odbc/odbcdriver.cpp +++ b/kexi/kexidb/drivers/odbc/odbcdriver.cpp @@ -17,7 +17,7 @@ * Boston, MA 02110-1301, USA. */ -//QT Includes +//TQt Includes #include #include #include diff --git a/kexi/main/printing/Makefile.am b/kexi/main/printing/Makefile.am index a9d49a545..b22d14869 100644 --- a/kexi/main/printing/Makefile.am +++ b/kexi/main/printing/Makefile.am @@ -21,7 +21,7 @@ libkeximainprinting_la_METASOURCES = AUTO SUBDIRS = . -# set the include path for X, qt and KDE +# set the include path for X, tqt and TDE INCLUDES= -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/main/printing \ -I$(top_srcdir)/kexi/core -I$(top_srcdir)/kexi/widget \ diff --git a/kexi/main/startup/Makefile.am b/kexi/main/startup/Makefile.am index a7f2f30e9..ad7e2e9da 100644 --- a/kexi/main/startup/Makefile.am +++ b/kexi/main/startup/Makefile.am @@ -39,9 +39,9 @@ SUBDIRS = . # kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS. # kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES. # kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES. -# kde_styledir Where Qt/KDE widget styles should go to (new in KDE 3). -# kde_designerdir Where Qt Designer plugins should go to (new in KDE 3). +# kde_styledir Where TQt/TDE widget styles should go to. +# kde_designerdir Where TQt Designer plugins should go to. -# set the include path for X, qt and KDE +# set the include path for X, tqt and TDE INCLUDES= -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/main/startup -I$(top_srcdir)/kexi/core -I$(top_srcdir)/kexi/widget -I$(top_builddir)/kexi/widget $(all_includes) diff --git a/kexi/migration/migratemanager.cpp b/kexi/migration/migratemanager.cpp index 212a68426..924c007d2 100644 --- a/kexi/migration/migratemanager.cpp +++ b/kexi/migration/migratemanager.cpp @@ -94,7 +94,7 @@ bool MigrateManagerInternal::lookupDrivers() if (tqApp) { connect(tqApp,TQ_SIGNAL(aboutToQuit()),this,TQ_SLOT(slotAppQuits())); } -//TODO: for QT-only version check for TDEInstance wrapper +//TODO: for TQt-only version check for TDEInstance wrapper // KexiDBWarn << "DriverManagerInternal::lookupDrivers(): cannot work without TDEInstance (TDEGlobal::instance()==0)!" << endl; // setError("Driver Manager cannot work without TDEInstance (TDEGlobal::instance()==0)!"); diff --git a/kexi/plugins/forms/widgets/Makefile.am b/kexi/plugins/forms/widgets/Makefile.am index 5ca5cbd86..39c76918b 100644 --- a/kexi/plugins/forms/widgets/Makefile.am +++ b/kexi/plugins/forms/widgets/Makefile.am @@ -23,6 +23,6 @@ libkexiformutilswidgets_la_METASOURCES = AUTO SUBDIRS = . -# set the include path for X, qt and KDE +# set the include path for X, tqt and TDE INCLUDES= -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/plugins/forms -I$(top_srcdir)/kexi/core $(all_includes) diff --git a/kexi/plugins/scripting/scripts/copycenter/readme.html b/kexi/plugins/scripting/scripts/copycenter/readme.html index 09deb0284..c237df8d5 100644 --- a/kexi/plugins/scripting/scripts/copycenter/readme.html +++ b/kexi/plugins/scripting/scripts/copycenter/readme.html @@ -8,7 +8,7 @@ plugin-architecture allows transparent copies between different backends.

  • Read+write Kexi Databases. This includes all database backends supported by Kexi (like SQLite, MySQL or PostgreSQL).
  • -
  • Read+write QtSQL Databases. MySQL, PostgreSQL and UnixODBC are supported. There might even be more like Oracle in the commercial Qt version or 3rd party backends.
  • +
  • Read+write TQtSQL Databases. MySQL, PostgreSQL and UnixODBC are supported.
  • Runs embedded in Kexi (from the tools=>scripts menu) as well as independent of Kexi (use "krossrunner ~/.trinity/share/apps/kexi/scripts/copycenter/CopyCenter.py" or python direct).
  • Depends only on PyQt. PyKDE is not used at all and Kross (included in KOffice 1.5) is optional.
diff --git a/kexi/widget/Makefile.am b/kexi/widget/Makefile.am index 9d4856fdb..9b01c6e80 100644 --- a/kexi/widget/Makefile.am +++ b/kexi/widget/Makefile.am @@ -36,10 +36,10 @@ SUBDIRS = utils tableview . relations # kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS. # kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES. # kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES. -# kde_styledir Where Qt/KDE widget styles should go to (new in KDE 3). -# kde_designerdir Where Qt Designer plugins should go to (new in KDE 3). +# kde_styledir Where TQt/TDE widget styles should go to. +# kde_designerdir Where TQt Designer plugins should go to. -# set the include path for X, qt and KDE - all_includes must remain last! +# set the include path for X, tqt and TDE - all_includes must remain last! INCLUDES = -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/widget/tableview \ $(LIB_KEXI_KMDI_INCLUDES) \ -I$(top_srcdir)/kexi/core \ diff --git a/kexi/widget/relations/Makefile.am b/kexi/widget/relations/Makefile.am index f09e939a9..9430286a5 100644 --- a/kexi/widget/relations/Makefile.am +++ b/kexi/widget/relations/Makefile.am @@ -29,10 +29,10 @@ SUBDIRS = . # kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS. # kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES. # kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES. -# kde_styledir Where Qt/KDE widget styles should go to (new in KDE 3). -# kde_designerdir Where Qt Designer plugins should go to (new in KDE 3). +# kde_styledir Where TQt/TDE widget styles should go to. +# kde_designerdir Where TQt Designer plugins should go to. -# set the include path for X, qt and KDE +# set the include path for X, tqt and TDE INCLUDES= -I$(top_srcdir)/kexi $(LIB_KEXI_KMDI_INCLUDES) \ -I$(top_srcdir)/kexi/core $(all_includes) diff --git a/kexi/widget/tableview/Makefile.am b/kexi/widget/tableview/Makefile.am index f1fc509f1..dc77ae6f5 100644 --- a/kexi/widget/tableview/Makefile.am +++ b/kexi/widget/tableview/Makefile.am @@ -38,10 +38,10 @@ SUBDIRS = . # kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS. # kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES. # kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES. -# kde_styledir Where Qt/KDE widget styles should go to (new in KDE 3). -# kde_designerdir Where Qt Designer plugins should go to (new in KDE 3). +# kde_styledir Where TQt/TDE widget styles should go to. +# kde_designerdir Where TQt Designer plugins should go to. -# set the include path for X, qt and KDE +# set the include path for X, tqt and TDE INCLUDES= -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/core -I$(top_srcdir)/kexi/kexidb \ -I$(top_srcdir)/lib -I$(top_srcdir)/lib/kofficecore -I$(top_srcdir)/lib/koproperty/ $(all_includes) diff --git a/kexi/widget/utils/Makefile.am b/kexi/widget/utils/Makefile.am index e06d9cd9f..61d8ac50d 100644 --- a/kexi/widget/utils/Makefile.am +++ b/kexi/widget/utils/Makefile.am @@ -11,7 +11,7 @@ libkexiguiutils_la_LIBADD = $(LIB_TDEUI) SUBDIRS = . -# set the include path for X, qt and KDE - all_includes must remain last! +# set the include path for X, tqt and TDE - all_includes must remain last! INCLUDES = -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/widget/utils $(all_includes) METASOURCES = AUTO diff --git a/kivio/kiviopart/kiviosdk/kivio_py_stencil.h b/kivio/kiviopart/kiviosdk/kivio_py_stencil.h index 449059222..1ddd34c82 100644 --- a/kivio/kiviopart/kiviosdk/kivio_py_stencil.h +++ b/kivio/kiviopart/kiviosdk/kivio_py_stencil.h @@ -32,7 +32,7 @@ #include #include -/* slots gets defined in TQt 3.2 and conflicts with python 2.3 headers */ +/* slots gets defined in TQt and conflicts with python headers */ #undef slots #include #define slots diff --git a/kplato/kptcalendarpanel.h b/kplato/kptcalendarpanel.h index ca6dbdd48..8fc661a02 100644 --- a/kplato/kptcalendarpanel.h +++ b/kplato/kptcalendarpanel.h @@ -57,7 +57,7 @@ public: CalendarPanel(TQWidget *parent=0, TQDate=TQDate::currentDate(), const char *name=0, WFlags f=0); /** - * Standard qt widget constructor. The initial date will be the + * Standard tqt widget constructor. The initial date will be the * current date. */ CalendarPanel( TQWidget *parent, const char *name ); diff --git a/kpresenter/KPrPixmapObject.cpp b/kpresenter/KPrPixmapObject.cpp index 155fe47c7..bd39e2ea6 100644 --- a/kpresenter/KPrPixmapObject.cpp +++ b/kpresenter/KPrPixmapObject.cpp @@ -630,7 +630,7 @@ void KPrPixmapObject::draw( TQPainter *_painter, KoTextZoomHandler*_zoomHandler, { TQRect rect( 0, 0, (int)( _zoomHandler->zoomItX( ow ) ), (int)( _zoomHandler->zoomItY( oh ) ) ); - // ### HACK QT seems not to be able to correctly compare TQVariant + // ### HACK TQt seems not to be able to correctly compare TQVariant bool variants1; if (m_ie_par1.isNull()) variants1=m_cachedPar1.isNull(); diff --git a/kspread/Doxyfile b/kspread/Doxyfile index dc3d07325..6d2837546 100644 --- a/kspread/Doxyfile +++ b/kspread/Doxyfile @@ -115,7 +115,7 @@ SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc -# comments will behave just like the Qt-style comments (thus requiring an +# comments will behave just like the TQt-style comments (thus requiring an # explicit @brief command for a brief description. JAVADOC_AUTOBRIEF = YES diff --git a/kspread/dialogs/kspread_dlg_formula.h b/kspread/dialogs/kspread_dlg_formula.h index 505dd9c09..d3c3ebaa4 100644 --- a/kspread/dialogs/kspread_dlg_formula.h +++ b/kspread/dialogs/kspread_dlg_formula.h @@ -153,7 +153,7 @@ private: TQLineEdit *fiveElement; /** * Tells which of the lineedits has the logical focus currently. - * It may happen that a lineedit does not have qt focus but + * It may happen that a lineedit does not have tqt focus but * logical focus but not the other way round. */ TQLineEdit* m_focus; diff --git a/kspread/dialogs/kspread_dlg_goalseek.h b/kspread/dialogs/kspread_dlg_goalseek.h index 1427a424c..32ac2d9e6 100644 --- a/kspread/dialogs/kspread_dlg_goalseek.h +++ b/kspread/dialogs/kspread_dlg_goalseek.h @@ -99,7 +99,7 @@ class GoalSeekDialog : public KDialog /** * Tells which of the lineedits has the logical focus currently. - * It may happen that a lineedit does not have qt focus but + * It may happen that a lineedit does not have tqt focus but * logical focus but not the other way round. */ TQLineEdit * m_focus; diff --git a/kspread/kspread_cell.cpp b/kspread/kspread_cell.cpp index 1c99dea39..1664c9bb2 100644 --- a/kspread/kspread_cell.cpp +++ b/kspread/kspread_cell.cpp @@ -2730,7 +2730,7 @@ void Cell::paintBackground( TQPainter& painter, const KoRect &cellRect, painter.setBackgroundColor( defaultColorGroup.base() ); } else { - //bad hack but there is a qt bug + //bad hack but there is a tqt bug //so I can print backgroundcolor TQBrush bb( bg ); if ( !bg.isValid() ) diff --git a/kspread/kspread_object.cpp b/kspread/kspread_object.cpp index ad699e4ee..ca3732057 100644 --- a/kspread/kspread_object.cpp +++ b/kspread/kspread_object.cpp @@ -1292,7 +1292,7 @@ void EmbeddedPictureObject::draw( TQPainter *_painter/*, KoZoomHandler*_zoomHand { TQRect rect( 0, 0, (int)( _zoomHandler->zoomItX( ow ) ), (int)( _zoomHandler->zoomItY( oh ) ) ); - // ### HACK QT seems not to be able to correctly compare TQVariant + // ### HACK TQt seems not to be able to correctly compare TQVariant bool variants1; if (m_ie_par1.isNull()) variants1=m_cachedPar1.isNull(); diff --git a/kugar/README b/kugar/README index 6c6372a93..4ad64dfef 100644 --- a/kugar/README +++ b/kugar/README @@ -22,7 +22,7 @@ ABOUT KUGAR: Current features: * KDE GUI report designer. -* Qt report viewer widget for previewing reports from within a Qt application +* TQt report viewer widget for previewing reports from within a TQt application (WYSIWYG). * KDE report viewer widget that utilizes KDE print dialog * KDE report viewer utility. @@ -38,7 +38,7 @@ Current features: * Grand totals: count, sum, average, variance and standard deviation. * Report print progress and cancellation. * Report rendering progress and cancellation. -* Complete implementation of (Qt) printer setup options. +* Complete implementation of (TQt) printer setup options. * Additional formatting (negative numbers, currency, commas for numbers and dates). * Direct database support. @@ -53,8 +53,8 @@ REQUIREMENTS: The following items must be installed prior to building Kugar: -1. Qt version 3.1+ - http://www.trolltech.com -2. KDE 3.1.0+ - http://www.kde.org +1. TQt +2. TDE BUILDING KUGAR: diff --git a/kugar/lib/mreportviewer.cpp b/kugar/lib/mreportviewer.cpp index bb8b1135d..a606aad69 100644 --- a/kugar/lib/mreportviewer.cpp +++ b/kugar/lib/mreportviewer.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - mreportviewer.cpp - Kugar QT report viewer widget + mreportviewer.cpp - Kugar TQt report viewer widget ------------------- begin : Fri Aug 13 1999 copyright : (C) 1999 by Mutiny Bay Software diff --git a/kugar/lib/mreportviewer.h b/kugar/lib/mreportviewer.h index d4061fade..accb69f0e 100644 --- a/kugar/lib/mreportviewer.h +++ b/kugar/lib/mreportviewer.h @@ -1,5 +1,5 @@ /*************************************************************************** - mreportviewer.h - Kugar QT report viewer widget + mreportviewer.h - Kugar TQt report viewer widget ------------------- begin : Fri Aug 13 1999 copyright : (C) 1999 by Mutiny Bay Software @@ -31,7 +31,7 @@ class KPrinter; /** Application reference, required for event processing */ extern TQApplication *mAppRef; -/**Kugar QT report viewer widget +/**Kugar TQt report viewer widget *@author Mutiny Bay Software */ diff --git a/kword/dtd/kword.dtd b/kword/dtd/kword.dtd index b0ccef2df..7ad9172e4 100644 --- a/kword/dtd/kword.dtd +++ b/kword/dtd/kword.dtd @@ -54,7 +54,7 @@ Please write publicly available KWord documents only in one of these two encodin Of course, if you do not use UTF-8, replace any occurrence of UTF-8 in the text below by the encoding that you have chosen. And please be sure to correctly define the XML declaration at the end of the file!).