cmake files: change keywords to lower case

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/27/head
Michele Calgaro 2 months ago
parent ed48a3f80b
commit 41c1fd1fc0
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -125,11 +125,11 @@ and same order:
<screen>
//-----------------------------------------------------------------------
// QT Headers
// TQt Headers
#include &lt;qtlabel.h&gt;
//-----------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include &lt;kcombobox.h&gt;
//-----------------------------------------------------------------------
@ -287,11 +287,11 @@ Include files shall be included in the same format as for header file e.g
<title>Including header files in source files</title>
<screen>
//-----------------------------------------------------------------------
// QT Headers
// TQt Headers
#include &lt;qtlabel.h&gt;
//-----------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include &lt;kcombobox.h&gt;
//-----------------------------------------------------------------------

@ -1,7 +1,7 @@
<chapter id="dialogs">
<title>Creating dialog boxes in &kappname;</title>
<para/>
<para>This section is a developer's guide explaining the peculiarities of dialog creation in &kappname;. A basic understanding of Qt GUI programming is assumed, as is a knowledge of &kappname; coding standards as laid out in the Project Handbook.</para>
<para>This section is a developer's guide explaining the peculiarities of dialog creation in &kappname;. A basic understanding of TQt GUI programming is assumed, as is a knowledge of &kappname; coding standards as laid out in the Project Handbook.</para>
<para/>
<sect1 id="dialogs-language">
<title>Language</title>
@ -18,7 +18,7 @@
<sect1 id="dialogs-designing">
<title>Designing the dialog</title>
<para/>
<para>The dialog screen should be built using Qt Designer. This section assumes that you are using version 3.x of Qt. Version 4 is, at present, an unknown quantity.</para>
<para>The dialog screen should be built using TQt Designer. This section assumes that you are using version 3.x of TQt. Version 4 is, at present, an unknown quantity.</para>
<para/>
<para>Open Designer without specifying a project, and select Dialog from the New File/Project tab. Start by changing the form name; this should be set to '&lt;KN&gt;DlgDecl'.</para>
<para/>
@ -35,7 +35,7 @@
<para/>
<para>Designer contains an option to generate shortcut (accelerator) keys for various widgets (buttons, menu items) by including an ampersand ('&amp;') before the shortcut letter. This should be used for the more common items, since many users prefer to use keyboard input rather than using the mouse. However, this does have the unfortunate side effect of automatically generating an 'accel' property for the widget, referencing a letter which may not be appropriate when the caption is translated to another language. Use the properties menu, therefore, to remove this value, or see below.</para>
<para/>
<para>Fixed text fields and labels in the form do not require any special consideration. Qt Designer and the project's build environment will take care of wrapping the strings into an i18n construct for presentation to translators.</para>
<para>Fixed text fields and labels in the form do not require any special consideration. TQt Designer and the project's build environment will take care of wrapping the strings into an i18n construct for presentation to translators.</para>
<para/>
</sect2>
<sect2 id="dialogs-saving-ui">
@ -72,9 +72,9 @@
<para/>
<para>The first two lines are the standard include stoppers, to avoid multiple inclusion of the class data.</para>
<para/>
<para>The include file will have been generated by the Qt UIC (User Interface Compiler) from the .ui file for the dialog, under control of the make process.</para>
<para>The include file will have been generated by the TQt UIC (User Interface Compiler) from the .ui file for the dialog, under control of the make process.</para>
<para/>
<para>The TQ_OBJECT macro (written without any punctuation) will cause the Qt MOC (Meta Object Compiler) to generate additional object code and files which are necessary to support the signal/slot functionality (among other things).</para>
<para>The TQ_OBJECT macro (written without any punctuation) will cause the TQt MOC (Meta Object Compiler) to generate additional object code and files which are necessary to support the signal/slot functionality (among other things).</para>
<para/>
<para>The class declaration must also include a </para>
<para/>
@ -85,7 +85,7 @@
<programlisting> signals:</programlisting>
<para/>
<para>sections if you plan to use the signal/slot mechanism. See the Qt documentation about signals and slots. An example would be slotHelp() which will be connected to the clicked() signal of the help button of your dialog in the constructor of your dialog.</para>
<para>sections if you plan to use the signal/slot mechanism. See the TQt documentation about signals and slots. An example would be slotHelp() which will be connected to the clicked() signal of the help button of your dialog in the constructor of your dialog.</para>
<para/>
<para>Terminate the file with</para>
<para/>
@ -97,9 +97,9 @@
<sect2 id="dialogs=code-file">
<title>Code (.cpp) file</title>
<para/>
<para>First, don't forget to have #include directives for Qt headers for any widgets you are going to reference.</para>
<para>First, don't forget to have #include directives for TQt headers for any widgets you are going to reference.</para>
<para/>
<para>In the constructor function, connect all signals to their appropriate slots using the Qt connect() call.</para>
<para>In the constructor function, connect all signals to their appropriate slots using the TQt connect() call.</para>
<para/>
<para>Then the easy bit; write your code.</para>
<para/>
@ -107,7 +107,7 @@
<para/>
<programlisting> #include "&lt;KN&gt;dlg.moc"</programlisting>
<para/>
<para>This is one of the files generated by the Qt MOC (Meta Object Compiler) during the make process; if you finish up with 'vtable' errors, it's probably because you forgot to include this.</para>
<para>This is one of the files generated by the TQt MOC (Meta Object Compiler) during the make process; if you finish up with 'vtable' errors, it's probably because you forgot to include this.</para>
<para/>
</sect2>
</sect1>

@ -29,7 +29,7 @@ This appendix contains an example of a
#define KSETTINGSDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include &lt;qcheckbox.h&gt;
#include &lt;qradiobutton.h&gt;
#include &lt;qbuttongroup.h&gt;
@ -37,7 +37,7 @@ This appendix contains an example of a
#include &lt;qfont.h&gt;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include &lt;kdialogbase.h&gt;
#include &lt;tdefontdialog.h&gt;
#include &lt;kcolorbutton.h&gt;
@ -130,7 +130,7 @@ public:
* Standard constructor.
*
* @param parent The TQWidget this is used in.
* @param name The QT name.
* @param name The TQt name.
* @param modal True if we want the dialog to be application modal.
*
* @return An object of type KSettingsDlg.
@ -187,7 +187,7 @@ signals:
***************************************************************************/
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include &lt;qlayout.h&gt;
#include &lt;qvbox.h&gt;
#include &lt;qlabel.h&gt;
@ -196,7 +196,7 @@ signals:
#include &lt;qvalidator.h&gt;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include &lt;tdelocale.h&gt;
#include &lt;kstddirs.h&gt;
#include &lt;kiconloader.h&gt;

@ -113,7 +113,7 @@ to start with the 0.5 development branch, I started working on the new
engine code that should introduce a clear interface between the business
logic and the user interface. Another design goal was to write the engine
in such a way, that it is not based on any KDE code which the old one was.
The second goal to free it from Qt based code was not that easy and was
The second goal to free it from TQt based code was not that easy and was
skipped by the project team at that time.
</para>

@ -43,8 +43,8 @@
<sect2><title>Preparation</title>
<para>
To access the database, &kappname; uses the SQL module supplied by &Qt;
Software as part of their &Qt; programming system. This module supports a
To access the database, &kappname; uses the SQL module supplied by &TQt;
Software as part of their &TQt; programming system. This module supports a
number of different database systems through a collection of drivers. Among
the more popular open-source systems for which drivers are available are
MySQL<trademark class="registered"/>, SQLite, and PostgreSQL. The module also
@ -64,10 +64,8 @@
<para>
In addition to the database software itself, you must also install the
corresponding &Qt; driver module. Most distributions will include driver
modules for the more popular databases. Otherwise, check with the <ulink
url="http://qt.nokia.com">&Qt; software web site</ulink> and search for
'SQL drivers'
corresponding &TQt; driver module. Most distributions will include driver
modules for the more popular databases.
</para>
<note>
@ -78,14 +76,6 @@
software package to install. Also, some of the following information,
particularly that related to administration, may not apply to SQLite.
</para>
<para>
Due to limitations in prior releases, only version 3 of SQLite is
supported. Unfortunately, the release of the &Qt; toolkit used by &kappname;
does not provide a driver for this version. However, an unofficial,
extensively tested, driver is available; if you wish to use SQLite, ask on
&devlist; for further information.
</para>
</note>
</sect2>
@ -168,11 +158,9 @@
<title>Database Type</title>
<para>
This box lists all &Qt; SQL drivers installed on your system. Select the
This box lists all &TQt; SQL drivers installed on your system. Select the
driver for your database type. If the one you want is not in the list, you
need to install the appropriate driver. See your distribution documentation,
or visit the <ulink url="http://qt.nokia.com/" type="">&Qt; software web
site</ulink> and search for 'SQL drivers'.
need to install the appropriate driver.
</para>
</sect3>

@ -598,8 +598,8 @@
The page parser looks for a symbol, a date, and a price. Regular expressions
tell it how to extract those items from the page. Please review the
documentation for the <ulink
url="http://qt.nokia.com/doc/3.3/qregexp.html#1">QRegExp class</ulink> at
http://qt.nokia.com/doc/3.3/qregexp.html#1 for the exact makeup of the
url="https://www.trinitydesktop.org/docs/qt3/ntqregexp.html#1">QRegExp class</ulink> at
https://www.trinitydesktop.org/docs/qt3/ntqregexp.html#1 for the exact makeup of the
regular expressions. There should be exactly one capture expression,
surrounded by parentheses, in each regexp. The date format further tells the
date parser the order of year, month, and day. This date format should always

@ -119,8 +119,8 @@
<para>
If you check the <guilabel>Treat Text as regular expression</guilabel> box,
the text will be treated as a regular expresssion. For details on how to
craft a regular expression, visit the &Qt; documentation about the
<ulink url="http://qt.nokia.com/doc/3.3/qregexp.html#1">QRegExp
craft a regular expression, visit the &TQt; documentation about the
<ulink url="https://www.trinitydesktop.org/docs/qt3/ntqregexp.html#1">QRegExp
class</ulink>.
</para>
</sect2>

@ -27,8 +27,8 @@ file to open
\fB\-\-help\fR
Show help about options
.TP
\fB\-\-help\-qt\fR
Show Qt specific options
\fB\-\-help\-tqt\fR
Show TQt specific options
.TP
\fB\-\-help\-kde\fR
Show KDE specific options
@ -99,7 +99,7 @@ position is to be measured from the left or bottom screen edge,
instead of as in the normal case, with positive values, from the left
and top edges.
.RE
.SS "Qt options"
.SS "TQt options"
.TP 12
.BI \-\-display \ displayname
Use the X-server display \fIdisplayname\fP.
@ -118,7 +118,7 @@ using the QApplication::ManyColor color
specification.
.TP
.B \-\-nograb
Tells Qt to never grab the mouse or the keyboard.
Tells TQt to never grab the mouse or the keyboard.
.TP
.B \-\-dograb
Running under a debugger can cause an implicit

@ -24,14 +24,14 @@
#define IMYMONEYREADER_H
// ----------------------------------------------------------------------------
// QT Headers
// TQt Headers
#include <tqobject.h>
#include <tqstring.h>
#include <tqstringlist.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <tdetempfile.h>
#include <kprocess.h>

@ -25,7 +25,7 @@ email : mte@users.sourceforge.net
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqfile.h>
#include <tqmap.h>
#include <tqobject.h>
@ -34,7 +34,7 @@ email : mte@users.sourceforge.net
#include <tqdatetime.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#ifndef _GNCFILEANON
#include <tdelocale.h>
#include <tdeconfig.h>

@ -147,7 +147,7 @@ allow us to test the structure, if not the data content, of the file.
#include <stdlib.h>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdatastream.h>
class TQIODevice;

@ -20,13 +20,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqregexp.h>
#include <tqvaluevector.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdeconfig.h>

@ -19,14 +19,14 @@
#define MYMONEYQIFPROFILE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqobject.h>
#include <tqstring.h>
class TQDate;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -28,7 +28,7 @@
#include <iostream>
// ----------------------------------------------------------------------------
// QT Headers
// TQt Headers
#include <tqfile.h>
#include <tqstringlist.h>
@ -38,7 +38,7 @@
#include <tqbuffer.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <tdelocale.h>
#include <tdemessagebox.h>

@ -24,14 +24,14 @@
#define MYMONEYQIFREADER_H
// ----------------------------------------------------------------------------
// QT Headers
// TQt Headers
#include <tqobject.h>
#include <tqstring.h>
#include <tqstringlist.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <tdetempfile.h>
#include <kprocess.h>

@ -25,13 +25,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Headers
// TQt Headers
#include <tqfile.h>
#include <tqtextstream.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <tdelocale.h>
#include <tdemessagebox.h>

@ -24,13 +24,13 @@
#define MYMONEYQIFWRITER_H
// ----------------------------------------------------------------------------
// QT Headers
// TQt Headers
#include <tqobject.h>
#include <tqdatetime.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
// ----------------------------------------------------------------------------
// Project Headers

@ -28,7 +28,7 @@
#include <typeinfo>
// ----------------------------------------------------------------------------
// QT Headers
// TQt Headers
#include <tqfile.h>
#include <tqstringlist.h>
@ -36,7 +36,7 @@
#include <tqtextedit.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <tdelocale.h>
#include <tdemessagebox.h>

@ -25,14 +25,14 @@
#define MYMONEYSTATEMENTREADER_H
// ----------------------------------------------------------------------------
// QT Headers
// TQt Headers
#include <tqobject.h>
#include <tqstring.h>
#include <tqstringlist.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <tdetempfile.h>
#include <kprocess.h>

@ -20,14 +20,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqfile.h>
#include <tqfileinfo.h>
#include <tqapplication.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdemessagebox.h>

@ -19,14 +19,14 @@
#define MYMONEYTEMPLATE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdom.h>
class TQFile;
class TQListViewItem;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kurl.h>

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Headers
// TQt Headers
#include <tqfile.h>
#include <tqregexp.h>
@ -28,7 +28,7 @@
#include <tqprocess.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <tdeio/netaccess.h>
#include <tdeio/scheduler.h>

@ -19,7 +19,7 @@
#define WEBPRICEQUOTE_H
// ----------------------------------------------------------------------------
// QT Headers
// TQt Headers
#include <tqobject.h>
#include <tqdatetime.h>
@ -27,7 +27,7 @@
#include <tqmap.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <kprocess.h>
namespace TDEIO {

@ -20,12 +20,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>

@ -19,10 +19,10 @@
#define INVESTACTIVITIES_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -22,7 +22,7 @@
#include <typeinfo>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqapplication.h>
@ -31,7 +31,7 @@
#include <tqbuttongroup.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <ktextedit.h>
#include <tdelocale.h>

@ -19,10 +19,10 @@
#define INVESTMENTTRANSACTIONEDITOR_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------

@ -25,12 +25,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdeconfig.h>

@ -24,13 +24,13 @@
#define KACCOUNTSELECTDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqstring.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -22,7 +22,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpixmap.h>
#include <tqlabel.h>
@ -30,7 +30,7 @@
#include <tqcheckbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdelocale.h>

@ -20,13 +20,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlayout.h>
#include <tqframe.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kpushbutton.h>
#include <tdelocale.h>

@ -19,10 +19,10 @@
#define KBALANCECHARTDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kdialog.h>

@ -20,13 +20,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqstring.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdemessagebox.h>

@ -18,14 +18,14 @@
#ifndef KBALANCEWARNING_H
#define KBALANCEWARNING_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqobject.h>
class TQString;
class TQWidget;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kdialog.h>
#include <tdelocale.h>

@ -19,12 +19,12 @@
#define KCATEGORYREASSIGNDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqvaluelist.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -28,7 +28,7 @@
#include <tqpixmap.h>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqfile.h>
#include <tqtextstream.h>
#include <tqlabel.h>
@ -38,7 +38,7 @@
#include <tqgroupbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdefiledialog.h>
#include <tdeglobal.h>
#include <tdelocale.h>

@ -21,11 +21,11 @@
#define KCSVPROGRESSDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -25,7 +25,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqradiobutton.h>
@ -34,7 +34,7 @@
#include <tqgroupbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <kpushbutton.h>

@ -24,12 +24,12 @@
#define KCURRENCYCALCULATOR_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -27,7 +27,7 @@
#include <locale.h>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqheader.h>
#include <tqtimer.h>
@ -38,7 +38,7 @@
#include <tqgroupbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <kpushbutton.h>

@ -24,12 +24,12 @@
#define KCURRENCYEDITDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
class TDEPopupMenu;

@ -25,11 +25,11 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqtimer.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdeglobal.h>

@ -25,11 +25,11 @@
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdialog.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelistview.h>
#include <tdelocale.h>
#include <klineedit.h>

@ -25,14 +25,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqradiobutton.h>
#include <tqbuttongroup.h>
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdemessagebox.h>

@ -24,12 +24,12 @@
#define KEDITLOANWIZARD_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqtimer.h>
#include <tqwidgetlist.h>
@ -30,7 +30,7 @@
#include <tqvaluevector.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdemessagebox.h>

@ -19,10 +19,10 @@
#define KEDITSCHEDULEDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,12 +20,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpixmap.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <kstandarddirs.h>

@ -18,7 +18,7 @@
#define KENDINGBALANCEDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqgroupbox.h>
@ -28,7 +28,7 @@
#include <tqdatetime.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>

@ -20,14 +20,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqtimer.h>
#include <tqwidgetlist.h>
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdemessagebox.h>

@ -19,10 +19,10 @@
#define KENTERSCHEDULEDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -26,7 +26,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqpushbutton.h>
@ -37,7 +37,7 @@
#include <tqlayout.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdemessagebox.h>

@ -24,7 +24,7 @@
#define KEQUITYPRICEUPDATEDIALOG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqpair.h>
@ -32,7 +32,7 @@
class TQListViewItem;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kprocess.h>

@ -22,14 +22,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Headers
// TQt Headers
#include <tqlineedit.h>
#include <tqlabel.h>
#include <tqpixmap.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <tdeglobal.h>
#include <tdelocale.h>

@ -21,13 +21,13 @@
#define KEXPORTDLG_H
// ----------------------------------------------------------------------------
// QT Headers
// TQt Headers
#include <tqstring.h>
#include <tqcheckbox.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <kcombobox.h>

@ -19,7 +19,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqradiobutton.h>
@ -29,7 +29,7 @@
#include <tqlayout.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeapplication.h>
#include <tdeglobal.h>

@ -18,14 +18,14 @@
#define KFINDTRANSACTIONDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlistview.h>
#include <tqdatetime.h>
#include <tqmap.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqcheckbox.h>
#include <tqlineedit.h>
#include <tqlayout.h>
@ -28,7 +28,7 @@
#include <tqcombobox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeapplication.h>
#include <kurlrequester.h>
#include <ktextbrowser.h>

@ -19,14 +19,14 @@
#define KGNCIMPORTOPTIONSDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqbuttongroup.h>
#include <tqcheckbox.h>
#include <tqtextcodec.h>
#include <tqptrlist.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqlistbox.h>
#include <tqlineedit.h>
@ -29,7 +29,7 @@
#include <tqapplication.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeapplication.h>
#include <kurlrequester.h>
#include <ktextbrowser.h>

@ -19,12 +19,12 @@
#define KGNCPRICESOURCEDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqcheckbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,14 +19,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqwhatsthis.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <keditlistbox.h>

@ -18,10 +18,10 @@
#define KGPGKEYSELECTIONDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kdialogbase.h>
class KEditListBox;

@ -23,7 +23,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Headers
// TQt Headers
#include <tqlineedit.h>
#include <tqtextstream.h>
@ -34,7 +34,7 @@
#include <tqapplication.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <tdeglobalsettings.h>
#include <kpushbutton.h>

@ -20,14 +20,14 @@
#define KIMPORTDLG_H
// ----------------------------------------------------------------------------
// QT Headers
// TQt Headers
#include <tqstring.h>
#include <tqlineedit.h>
#include <tqcheckbox.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <kurl.h>
#include <kcombobox.h>

@ -19,10 +19,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kstdguiitem.h>
#include <kpushbutton.h>

@ -18,10 +18,10 @@
#define KLOADTEMPLATEDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kpushbutton.h>
#include <tdeapplication.h>

@ -19,12 +19,12 @@
#define KMERGETRANSACTIONSDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
class TQResizeEvent;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kdebug.h>

@ -20,12 +20,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kpushbutton.h>
#include <tdelistview.h>

@ -19,10 +19,10 @@
#define KMYMONEYFILEINFODLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -25,12 +25,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqcheckbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kpushbutton.h>
#include <tdelistview.h>

@ -24,12 +24,12 @@
#define KMYMONEYPRICEDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
class TQListViewItem;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -25,7 +25,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqglobal.h>
#include <tqpainter.h>
@ -36,7 +36,7 @@
#include <tqeventloop.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdelocale.h>

@ -24,7 +24,7 @@
#define KMYMONEYSPLITTABLE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqtable.h>
@ -32,7 +32,7 @@
#include <tqguardedptr.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
class TDEPopupMenu;
class KPushButton;

@ -21,7 +21,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpixmap.h>
#include <tqpushbutton.h>
@ -38,7 +38,7 @@
#include <tqtabwidget.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <tdelocale.h>
#include <tdeglobal.h>

@ -18,10 +18,10 @@
#define KNEWACCOUNTDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#ifdef HAVE_KDCHART
#include <KDChartWidget.h>

@ -19,13 +19,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqpixmap.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdelocale.h>

@ -18,12 +18,12 @@
#define KNEWBANKDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdialog.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>

@ -20,12 +20,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqcheckbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kpushbutton.h>
#include <tdelistview.h>

@ -19,12 +19,12 @@
#define KNEWBUDGETDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
class TQListViewItem;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tqdatetime.h>
#include <tqcombobox.h>
#include <tqlineedit.h>

@ -25,10 +25,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kpushbutton.h>

@ -19,14 +19,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpixmap.h>
#include <tqlineedit.h>
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <tdeversion.h>
#include <tdeglobal.h>

@ -18,11 +18,11 @@
#define KNEWFILEDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdialog.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
// ----------------------------------------------------------------------------

@ -20,13 +20,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqcheckbox.h>
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kpushbutton.h>
#include <kcombobox.h>

@ -19,10 +19,10 @@
#define KNEWINVESTMENTWIZARD_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -27,14 +27,14 @@
#include <math.h>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqradiobutton.h>
#include <tqcheckbox.h>
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <kpushbutton.h>

@ -24,12 +24,12 @@
#define KNEWLOANWIZARD_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,14 +20,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqpushbutton.h>
#include <tqradiobutton.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdemessagebox.h>

@ -19,12 +19,12 @@
#define KONLINEQUOTECONFIGURATIONDIALOG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -22,10 +22,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kdialog.h>
#include <tdelocale.h>

@ -21,13 +21,13 @@
#define KPAYEEREASSIGNDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqvaluelist.h>
#include <tqcheckbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -26,7 +26,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqvariant.h>
#include <tqbuttongroup.h>
@ -46,7 +46,7 @@
#include <tqapplication.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeapplication.h>
#include <kpushbutton.h>

@ -20,12 +20,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqcheckbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kpushbutton.h>
#include <tdelistview.h>

@ -19,12 +19,12 @@
#define KSECURITYLISTEDITOR_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
class TQListViewItem;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -8,10 +8,10 @@
*****************************************************************************/
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kstdguiitem.h>

@ -25,7 +25,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpushbutton.h>
#include <tqlabel.h>
@ -37,7 +37,7 @@
#include <tqcursor.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdeconfig.h>

@ -24,10 +24,10 @@
#define KSPLITTRANSACTIONDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdepopupmenu.h>
#include <kiconloader.h>

@ -16,7 +16,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqvbox.h>
#include <tqlayout.h>
@ -27,7 +27,7 @@
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeversion.h>

@ -25,10 +25,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kguiitem.h>

@ -25,12 +25,12 @@
#define KUPDATESTOCKPRICEDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdatetime.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kdialogbase.h>
#include <tdelocale.h>

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpushbutton.h>
#include <tqlistbox.h>
@ -29,7 +29,7 @@
#include <tqtabwidget.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeversion.h>
#include <tdelocale.h>

@ -19,14 +19,14 @@
#define MYMONEYQIFPROFILEEDITOR_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqvalidator.h>
class TQListViewItem;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,10 +19,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -18,10 +18,10 @@
#define KSETTINGSCOLORS_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,10 +19,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -18,10 +18,10 @@
#define KSETTINGSFONTS_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,10 +19,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -18,10 +18,10 @@
#define KSETTINGSFORECAST_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------

@ -19,12 +19,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <klineedit.h>
#include <tdelistview.h>

@ -18,10 +18,10 @@
#define KSETTINGSGENERAL_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,14 +19,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqgroupbox.h>
#include <tqcheckbox.h>
#include <tqregexp.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kled.h>
#include <klineedit.h>

@ -18,10 +18,10 @@
#define KSETTINGSGPG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------

@ -19,13 +19,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstringlist.h>
#include <tqheader.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelistview.h>
#include <kpushbutton.h>

@ -18,12 +18,12 @@
#define KSETTINGSHOME_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
class TQListViewItem;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,13 +20,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqregexp.h>
#include <tqcheckbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeconfig.h>
#include <tdeglobal.h>

@ -19,10 +19,10 @@
#define KSETTINGSONLINEQUOTES_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,14 +20,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlayout.h>
#include <tqstring.h>
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <kdialog.h>

@ -19,12 +19,12 @@
#define KSETTINGSPLUGINS_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,10 +19,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <ktextedit.h>

@ -18,10 +18,10 @@
#define KSETTINGSREGISTER_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,10 +19,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -18,10 +18,10 @@
#define KSETTINGSSCHEDULES_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------

@ -20,12 +20,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqradiobutton.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <ktextedit.h>

@ -19,10 +19,10 @@
#define TDECONFIRMMANUALENTERDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -25,7 +25,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqtooltip.h>
#include <tqwidget.h>
@ -33,7 +33,7 @@
#include <tqpoint.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -23,12 +23,12 @@
#define TDERECENTFILEITEM_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqiconview.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kurl.h>
// ----------------------------------------------------------------------------

@ -24,7 +24,7 @@
#include <pwd.h>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlayout.h>
#include <tqpushbutton.h>
@ -36,7 +36,7 @@
#include <tqcolor.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeapplication.h>
#include <kurlrequester.h>
@ -58,8 +58,7 @@ TDESelectDatabaseDlg::TDESelectDatabaseDlg(TQWidget *parent, const char *name)
TQStringList list = TQSqlDatabase::drivers();
if (list.count() == 0) {
KMessageBox::error (0, i18n("There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www.trolltech.com)"
" and search for SQL drivers."),
"Please consult documentation for your distro and search for SQL drivers."),
"");
setError();
} else {

@ -19,13 +19,13 @@
#define TDESELECTDATABASEDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlistbox.h>
#include <tqlineedit.h>
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kurl.h>
// ----------------------------------------------------------------------------

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kpushbutton.h>
#include <kstdguiitem.h>

@ -19,12 +19,12 @@
#define TDESELECTTRANSACTIONSDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
class TQResizeEvent;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kdebug.h>

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqapplication.h>
@ -30,7 +30,7 @@
#include <tqtooltip.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <ktextedit.h>

@ -19,13 +19,13 @@
#define TRANSACTIONEDITOR_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqobject.h>
#include <tqwidgetlist.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>

@ -19,10 +19,10 @@
#define TRANSACTIONMATCHER_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -28,7 +28,7 @@
#include <iostream>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdir.h>
#include <tqprinter.h>
@ -42,7 +42,7 @@
#include <tqeventloop.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeversion.h>
#include <kdebug.h>

@ -17,14 +17,14 @@
#define KMYMONEY2_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqapplication.h>
class TQTimer;
class TQLabel;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeapplication.h>
#include <tdemainwindow.h>

@ -19,12 +19,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqregexp.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobalsettings.h>

@ -18,10 +18,10 @@
#define KMYMONEYGLOBALSETTINGS_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -25,10 +25,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <tdelocale.h>
#include <tdeglobal.h>

@ -24,13 +24,13 @@
#define KMYMONEYUTILS_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqcolor.h>
#include <tqfont.h>
// ----------------------------------------------------------------------------
// KDE Headers
// TDE Headers
#include <kguiitem.h>

@ -19,7 +19,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqapplication.h>
#include <tqpixmap.h>
@ -27,7 +27,7 @@
#include <tqpainter.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdelocale.h>

@ -18,13 +18,13 @@
#define KSTARTUPLOGO_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqguardedptr.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <ksplashscreen.h>

@ -21,7 +21,7 @@
#include <stdio.h>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidgetlist.h>
#include <tqdatetime.h>
@ -29,7 +29,7 @@
#include <tqeventloop.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdecmdlineargs.h>
#include <tdeaboutdata.h>

@ -21,14 +21,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqregexp.h>
#include <kstandarddirs.h>
#include <kiconloader.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>

@ -18,7 +18,7 @@
#define MYMONEYACCOUNT_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqdatetime.h>

@ -20,13 +20,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqdom.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,7 +19,7 @@
#define MYMONEYBUDGET_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqmap.h>
#include <tqvaluelist.h>

@ -18,7 +18,7 @@
#define MYMONEYCATEGORY_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqstringlist.h>

@ -24,7 +24,7 @@
#define MYMONEYEXCEPTION_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <kmymoney/export.h>

@ -21,14 +21,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqdatetime.h>
#include <tqvaluelist.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kdebug.h>
#include <tdelocale.h>

@ -18,7 +18,7 @@
#define MYMONEYFILE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqobject.h>
#include <tqstring.h>

@ -28,10 +28,10 @@
#include <stdio.h>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -25,10 +25,10 @@
#include <cmath>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,13 +20,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqdatetime.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kdebug.h>
// ----------------------------------------------------------------------------

@ -19,7 +19,7 @@
#define MYMONEYFORECAST_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqmap.h>
#include <tqvaluelist.h>

@ -21,10 +21,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <kstandarddirs.h>

@ -18,7 +18,7 @@
#define MYMONEYINSTITUTION_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqmap.h>

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -24,7 +24,7 @@
*/
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqmap.h>

@ -30,7 +30,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqregexp.h>
@ -349,7 +349,7 @@ const TQString MyMoneyMoney::toString(void) const
TQDataStream &operator<<(TQDataStream &s, const MyMoneyMoney &_money)
{
// We WILL lose data here if the user has more than 2 billion pounds :-(
// QT defined it here as long:
// TQt defined it here as long:
// qglobal.h:typedef long TQ_INT64;
MyMoneyMoney money = _money.convert(100);

@ -19,7 +19,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -18,7 +18,7 @@
#define MYMONEYOBJECT_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqdom.h>

@ -19,7 +19,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -18,7 +18,7 @@
#define MYMONEYOBJECTCONTAINER_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqobject.h>
#include <tqstring.h>

@ -24,7 +24,7 @@
#define MYMONEYOBSERVER_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -21,7 +21,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstringlist.h>

@ -20,7 +20,7 @@
#define MYMONEYPAYEE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
class TQStringList;

@ -29,10 +29,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -24,7 +24,7 @@
#define MYMONEYPRICE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqdatetime.h>
@ -33,7 +33,7 @@
#include <tqdom.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,13 +20,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqdom.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,7 +19,7 @@
#define MYMONEYREPORT_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqmap.h>
#include <tqvaluelist.h>
#include <tqstring.h>

@ -21,10 +21,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>

@ -20,7 +20,7 @@
#define MYMONEYSCHEDULED_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstringlist.h>
#include <tqmap.h>

@ -25,10 +25,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>

@ -24,13 +24,13 @@
#define MYMONEYSECURITY_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdatetime.h>
#include <tqmap.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -24,7 +24,7 @@
#define MYMONEYSPLIT_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqdatetime.h>

@ -26,7 +26,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdom.h>
#include <tqstringlist.h>

@ -25,7 +25,7 @@
#define MYMONEYSTATEMENT_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqvaluelist.h>

@ -24,7 +24,7 @@
#define MYMONEYSUBJECT_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqptrlist.h>

@ -22,7 +22,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,7 +20,7 @@
#define MYMONEYTRANSACTION_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqdatetime.h>

@ -25,10 +25,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -24,7 +24,7 @@
#define MYMONEYTRANSACTIONFILTER_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqdatetime.h>
@ -34,7 +34,7 @@
#include <tqregexp.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -24,7 +24,7 @@
#define IMYMONEYSERIALIZE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqvaluelist.h>

@ -24,7 +24,7 @@
#define IMYMONEYSTORAGE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqbitarray.h>

@ -29,7 +29,7 @@
*/
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
class TQString;
class TQIODevice;

@ -19,7 +19,7 @@
#define MYMONEYDATABASEMGR_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -24,7 +24,7 @@
#define MYMONEYSEQACCESSMGR_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -26,14 +26,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqfile.h>
#include <tqdom.h>
#include <tqmap.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -25,7 +25,7 @@
#define MYMONEYSTORAGEANON_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// #include <tqdom.h>
// #include <tqdatastream.h>

@ -24,7 +24,7 @@
#define MYMONEYSTORAGEBIN_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -25,7 +25,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqdatetime.h>

@ -24,7 +24,7 @@
#define MYMONEYSTORAGEDUMP_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdatastream.h>

@ -30,7 +30,7 @@
#include <numeric>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqdatetime.h>
@ -40,7 +40,7 @@
#include <tqsqldriver.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>

@ -11,7 +11,7 @@
#define MYMONEYSTORAGESQL_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqsqldatabase.h>
#include <tqsqlquery.h>
@ -20,7 +20,7 @@
class TQIODevice;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kurl.h>
#include <ksharedptr.h>
@ -107,7 +107,7 @@ class MyMoneyDbDrivers {
public:
MyMoneyDbDrivers ();
/**
* @return a list ofsupported TQt database driver types, their qt names and useful names
* @return a list of supported TQt database driver types, their tqt names and useful names
**/
const TQMap<TQString, TQString> driverMap() const {return (m_driverMap);};
databaseTypeE driverToType (const TQString& driver) const;

@ -22,7 +22,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqfile.h>
#include <tqdom.h>
@ -30,7 +30,7 @@
#include <tqxml.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <kdebug.h>

@ -21,7 +21,7 @@
#define MYMONEYSTORAGEXML_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdom.h>
#include <tqdatastream.h>

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,13 +19,13 @@
#define IMPORTINTERFACE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqobject.h>
#include <tqstring.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdefile.h>
#include <kurl.h>

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,10 +19,10 @@
#define KMMIMPORTINTERFACE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdefile.h>
#include <kurl.h>

@ -20,12 +20,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,10 +19,10 @@
#define KMMSTATEMENTINTERFACE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,10 +19,10 @@
#define KMMVIEWINTERFACE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
class KMyMoney2App;
class KMyMoneyView;

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kinstance.h>
#include <tdeaboutdata.h>

@ -19,12 +19,12 @@
#define KMYMONEYPLUGIN_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqobject.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kxmlguiclient.h>
class TDEAboutData;

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqdir.h>
@ -28,7 +28,7 @@
#include <tqtextstream.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kurl.h>
#include <tdeio/job.h>

@ -19,10 +19,10 @@
#define KOFXDIRECTCONNECTDLG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
class KTempFile;
class KOfxDirectConnectDlgPrivate;

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqtextbrowser.h>
#include <tqlineedit.h>
@ -31,7 +31,7 @@
#include <tqtabwidget.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <kdebug.h>

@ -24,14 +24,14 @@
#include <libofx/libofx.h>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqvaluelist.h>
#include <tqlistview.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -24,7 +24,7 @@
// System Includes
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqpushbutton.h>
@ -33,7 +33,7 @@
#include <tqdatetimeedit.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <kled.h>

@ -22,12 +22,12 @@
// Library Includes
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -25,13 +25,13 @@
#include <libofx/libofx.h>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdatetime.h>
#include <tqregexp.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <kdebug.h>

@ -34,12 +34,12 @@
#define LIBOFX_IS_VERSION(a,b,c) (LIBOFX_VERSION >= TDE_MAKE_VERSION(a,b,c))
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
class TQDate;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
class KComboBox;
// ----------------------------------------------------------------------------

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqfile.h>
#include <tqtextstream.h>
@ -29,7 +29,7 @@
#include <tqdatetimeedit.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kgenericfactory.h>
#include <kdebug.h>

@ -19,10 +19,10 @@
#define OFXIMPORTERPLUGIN_H
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstringlist.h>

@ -23,7 +23,7 @@
#include <unistd.h>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdatetime.h>
#include <tqeventloop.h>
@ -36,7 +36,7 @@
#include <tqtextstream.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeio/job.h>

@ -19,14 +19,14 @@
#define OFXPARTNER_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqobject.h>
#include <tqhttp.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kurl.h>
namespace TDEIO

@ -20,14 +20,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstringlist.h>
#include <tqcheckbox.h>
#include <tqlayout.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <ktrader.h>
#include <tdeparts/componentfactory.h>

@ -19,13 +19,13 @@
#define PLUGINLOADER_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqscrollview.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kplugininfo.h>
// ----------------------------------------------------------------------------

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,12 +19,12 @@
#define STATEMENTINTERFACE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqobject.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,7 +19,7 @@
#define VIEWINTERFACE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqobject.h>
#include <tqstring.h>
@ -27,7 +27,7 @@
class TQFrame;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
class TDEPopupMenu;

@ -22,10 +22,10 @@
#ifdef HAVE_KDCHART
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -22,10 +22,10 @@
#ifdef HAVE_KDCHART
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// Some STL headers in GCC4.3 contain operator new. Memory checker mangles these
#ifdef _CHECK_MEMORY
#undef new

@ -22,13 +22,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqvaluelist.h>
#include <tqfile.h>
#include <tqtextstream.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// This is just needed for i18n(). Once I figure out how to handle i18n
// without using this macro directly, I'll be freed of KDE dependency.

@ -21,12 +21,12 @@
#define LISTTABLE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstringlist.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -22,13 +22,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqvaluelist.h>
#include <tqfile.h>
#include <tqtextstream.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// This is just needed for i18n(). Once I figure out how to handle i18n
// without using this macro directly, I'll be freed of KDE dependency.

@ -21,12 +21,12 @@
#define OBJECTINFOTABLE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstringlist.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -21,7 +21,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlayout.h>
#include <tqdatetime.h>
#include <tqregexp.h>
@ -34,7 +34,7 @@
#include <tqdom.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// This is just needed for i18n() and weekStartDay().
// Once I figure out how to handle i18n
// without using this macro directly, I'll be freed of KDE dependency. This

@ -20,13 +20,13 @@
#define PIVOTGRID_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqmap.h>
#include <tqvaluelist.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -22,7 +22,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlayout.h>
#include <tqdatetime.h>
#include <tqregexp.h>
@ -35,7 +35,7 @@
#include <tqdom.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// This is just needed for i18n() and weekStartDay().
// Once I figure out how to handle i18n
// without using this macro directly, I'll be freed of KDE dependency. This

@ -21,12 +21,12 @@
#define PIVOTTABLE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqmap.h>
#include <tqvaluelist.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -28,13 +28,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqvaluelist.h>
#include <tqfile.h>
#include <tqtextstream.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// This is just needed for i18n(). Once I figure out how to handle i18n
// without using this macro directly, I'll be freed of KDE dependency.

@ -27,12 +27,12 @@
#define QUERYTABLE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstringlist.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -21,10 +21,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// This is just needed for i18n(). Once I figure out how to handle i18n
// without using this macro directly, I'll be freed of KDE dependency. This
// is a minor problem because we use these terms when rendering to HTML,

@ -20,12 +20,12 @@
#define REPORTACCOUNT_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstringlist.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,10 +20,10 @@
#define REPORTDEBUG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,10 +19,10 @@
#define REPORTTABLE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,7 +19,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqtabwidget.h>
@ -27,7 +27,7 @@
#include <tqlayout.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kdebug.h>
#include <tdelocale.h>

@ -18,10 +18,10 @@
#define KACCOUNTSSVIEW_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kiconview.h>

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpushbutton.h>
#include <tqcombobox.h>
@ -35,7 +35,7 @@
#include <tqtooltip.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdelocale.h>

@ -19,12 +19,12 @@
#define KBUDGETVIEW_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelistview.h>
#include <tdepopupmenu.h>

@ -25,13 +25,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqlayout.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <kdebug.h>

@ -25,10 +25,10 @@
#define KCATEGORIESVIEW_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,7 +19,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqtabwidget.h>
#include <tqspinbox.h>
@ -29,7 +29,7 @@
#include <tqlayout.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kdebug.h>
#include <tdelocale.h>

@ -18,10 +18,10 @@
#define KFORECASTVIEW_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------

@ -22,14 +22,14 @@
#include <typeinfo>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqframe.h>
#include <tqlayout.h>
#include <tqtimer.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <kcombobox.h>

@ -24,14 +24,14 @@
#define KACCOUNTVIEW_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqwidgetlist.h>
#include <tqstring.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -25,7 +25,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlayout.h>
#include <tqdatetime.h>
@ -39,7 +39,7 @@
#include <tqbuffer.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdelocale.h>

@ -23,13 +23,13 @@
#define KHOMEVIEW_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
class TQVBoxLayout;
class TQFrame;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdehtml_part.h>
// ----------------------------------------------------------------------------

@ -19,14 +19,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqheader.h>
#include <tqlabel.h>
#include <tqtabwidget.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kdebug.h>
#include <tdelocale.h>

@ -18,10 +18,10 @@
#define KINSTITUTIONSVIEW_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -25,12 +25,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpainter.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelistview.h>

@ -24,10 +24,10 @@
#define KINVESTMENTLISTITEM_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelistview.h>

@ -22,10 +22,10 @@
#include <typeinfo>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>

@ -24,10 +24,10 @@
#define KINVESTMENTVIEW_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -25,10 +25,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -24,10 +24,10 @@
#define KMYMONEYTRANSACTION_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -23,7 +23,7 @@
#include <unistd.h>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqfile.h>
@ -38,7 +38,7 @@
#include <tqobjectlist.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeversion.h>
@ -2187,13 +2187,13 @@ KMyMoneyViewBase* KMyMoneyView::addPage(const TQString& title, const TQString& i
/* ------------------------------------------------------------------------ */
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlayout.h>
#include <tqvbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -18,7 +18,7 @@
#define KMYMONEYVIEW_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
class TQVBox;
@ -26,7 +26,7 @@ class TQFile;
class TQVBoxLayout;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdepopupmenu.h>
#include <kjanuswidget.h>

@ -26,7 +26,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpushbutton.h>
#include <tqcombobox.h>
@ -46,7 +46,7 @@
#include <tqmap.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdelocale.h>

@ -27,13 +27,13 @@
#define KPAYEESVIEW_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
class TQSplitter;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelistview.h>
#include <tdepopupmenu.h>

@ -26,7 +26,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlayout.h>
#include <tqdatetime.h>
@ -45,7 +45,7 @@
#include <tqcheckbox.h>
#include <tqvbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdeglobalsettings.h>

@ -29,7 +29,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqvaluevector.h>
#include <tqwidget.h>
@ -38,7 +38,7 @@ class TQVBoxLayout;
class TQListViewItem;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdehtml_part.h>
#include <tdelistview.h>
@ -194,7 +194,7 @@ public:
* Standard constructor.
*
* @param parent The TQWidget this is used in.
* @param name The QT name.
* @param name The TQt name.
*
* @return An object of type KReportsView
*

@ -25,13 +25,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpainter.h>
#include <tqstyle.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeconfig.h>
#include <tdelocale.h>

@ -24,12 +24,12 @@
#define KSCHEDULEDLISTITEM_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpixmap.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelistview.h>

@ -25,7 +25,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqheader.h>
#include <tqtoolbutton.h>
@ -35,7 +35,7 @@
#include <tqtimer.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdelocale.h>

@ -23,13 +23,13 @@
#define KSCHEDULEDVIEW_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqlistview.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
class TDEListViewSearchLineWidget;

@ -20,14 +20,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdir.h>
#include <tqheader.h>
#include <tqtimer.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdelocale.h>

@ -19,10 +19,10 @@
#define KACCOUNTTEMPLATESELECTOR_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqtabwidget.h>
#include <tqlabel.h>
@ -32,7 +32,7 @@
#include <tqapplication.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdelocale.h>

@ -19,13 +19,13 @@
#define KBUDGETVALUES_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdatetime.h>
class TQLabel;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// No need for TQDateEdit, TQSpinBox, etc., since these always return values
#include <tqcheckbox.h>
@ -33,7 +33,7 @@
#include <tqspinbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes
@ -44,11 +44,11 @@
/**************************************************************************
* *
* The MandatoryFieldGroup code is courtesy of *
* Mark Summerfield in TQt Quarterly *
* Mark Summerfield in Qt Quarterly *
* http://doc.trolltech.com/qq/qq11-mandatoryfields.html *
* *
* Enhanced by Thomas Baumgart to support the lineedit field of a *
* a TQComboBox. *
* a TQComboBox. *
* *
**************************************************************************/

@ -19,14 +19,14 @@
#define KGUIUTILS_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqobject.h>
#include <tqvaluelist.h>
class TQWidget;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kpushbutton.h>
#include <kcombobox.h>

@ -25,7 +25,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdrawutil.h>
#include <tqpainter.h>
@ -33,7 +33,7 @@
#include <tqapplication.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -24,10 +24,10 @@
#define KMYMONEYACCOUNTBUTTON_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kpushbutton.h>
#include <kcombobox.h>

@ -25,13 +25,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqapplication.h>
#include <tqregexp.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelistview.h>

@ -24,13 +24,13 @@
#define KMYMONEYACCOUNTCOMPLETION_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
class TQListViewItem;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -25,7 +25,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlayout.h>
#include <tqheader.h>
@ -36,7 +36,7 @@
#include <tqrect.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <kpushbutton.h>

@ -19,10 +19,10 @@
#define KMYMONEYACCOUNTSELECTOR_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
class KPushButton;

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpoint.h>
#include <tqevent.h>
@ -33,7 +33,7 @@
#include <tqstyle.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdemessagebox.h>
#include <tdelocale.h>

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpoint.h>
#include <tqevent.h>
@ -33,7 +33,7 @@
#include <tqstyle.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdemessagebox.h>
#include <tdelocale.h>

@ -19,13 +19,13 @@
#define KMYMONEYACCOUNTTREEBASE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqtimer.h>
class TQDragObject;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelistview.h>

@ -19,13 +19,13 @@
#define KMYMONEYACCOUNTTREEBUDGET_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqtimer.h>
class TQDragObject;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelistview.h>

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
// ----------------------------------------------------------------------------

@ -19,13 +19,13 @@
#define KMYMONEYACCOUNTTREEFORECAST_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqtimer.h>
class TQDragObject;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelistview.h>

@ -25,7 +25,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqlineedit.h>
@ -33,7 +33,7 @@
#include <tqtoolbutton.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdelocale.h>

@ -24,12 +24,12 @@
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqstringlist.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -25,14 +25,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqsignalmapper.h>
#include <tqregexp.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdelocale.h>

@ -24,7 +24,7 @@
#define KMYMONEYCALCULATOR_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqframe.h>
@ -35,7 +35,7 @@
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kpushbutton.h>

@ -48,7 +48,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpainter.h>
#include <tqdrawutil.h>
#include <tqframe.h>
@ -62,7 +62,7 @@
#include <tqpushbutton.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeversion.h>
#include <tdeglobal.h>
#include <tdeapplication.h>

@ -48,12 +48,12 @@
#define KMYMONEYCALENDAR_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqframe.h>
#include <tqdatetime.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeversion.h>

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqrect.h>
#include <tqpainter.h>
@ -29,7 +29,7 @@
#include <tqtimer.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <kpushbutton.h>

@ -19,13 +19,13 @@
#define KMYMONEYCATEGORY_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
class TQWidget;
class TQFrame;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kcombobox.h>
class KPushButton;

@ -20,13 +20,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqfont.h>
#include <tqpainter.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,13 +19,13 @@
#define KMYMONEYCHECKLISTITEM_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqobject.h>
#include <tqlistview.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqrect.h>
#include <tqstyle.h>
@ -28,7 +28,7 @@
#include <tqapplication.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdelistview.h>

@ -19,13 +19,13 @@
#define KMYMONEYCOMBO_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqtimer.h>
#include <tqmutex.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kcombobox.h>

@ -25,12 +25,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqapplication.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelistview.h>

@ -24,7 +24,7 @@
#define KMYMONEYCOMPLETION_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqvbox.h>
@ -32,7 +32,7 @@
class TQListViewItem;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
class TDEListView;

@ -25,13 +25,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpixmap.h>
#include <tqbitmap.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kstandarddirs.h>

@ -24,12 +24,12 @@
#define KMYMONEYCURRENCYSELECTOR_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kcombobox.h>

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpainter.h>
#include <tqdrawutil.h>
@ -36,7 +36,7 @@
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeversion.h>
#include <tdeglobal.h>
#include <tdelocale.h>

@ -18,7 +18,7 @@
#define KMYMONEYDATEINPUT_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqlineedit.h>
@ -27,7 +27,7 @@
#include <tqvbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kdatepicker.h>
class KPushButton;

@ -47,7 +47,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqglobal.h>
#include <tqdatetime.h>
#include <tqstring.h>
@ -56,7 +56,7 @@
#include <tqdialog.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeversion.h>
#include <kdatetbl.h> // Use the classes available for maximum re-use
#include <tdeglobal.h>

@ -45,12 +45,12 @@
#define KMYMONEYDATETBL_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqgridview.h>
#include <tqdatetime.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeversion.h>

@ -21,7 +21,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqapplication.h>
#include <tqdesktopwidget.h>
@ -29,7 +29,7 @@
#include <tqvbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdelocale.h>

@ -20,7 +20,7 @@
#include <tdeversion.h>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqhbox.h>
#include <tqvalidator.h>
@ -29,7 +29,7 @@ class TQVBox;
class TQWidget;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <klineedit.h>
class KPushButton;

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpalette.h>
#include <tqpen.h>
@ -28,7 +28,7 @@
#include <tqpainter.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,12 +19,12 @@
#define KMYMONEYFORECASTLISTVIEWITEM_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqobject.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelistview.h>

@ -20,13 +20,13 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqcheckbox.h>
#include <tqgroupbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeconfig.h>
#include <tdeglobal.h>

@ -19,10 +19,10 @@
#define KMYMONEYGPGCONFIG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -22,14 +22,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqrect.h>
#include <tqpainter.h>
#include <tqpalette.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdelocale.h>

@ -23,10 +23,10 @@
#define KMYMONEYLINEEDIT_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <klineedit.h>

@ -25,12 +25,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpalette.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,12 +19,12 @@
#define KMYMONEYLISTVIEWITEM_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqobject.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelistview.h>

@ -20,12 +20,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqregexp.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeconfig.h>
#include <tdeglobal.h>

@ -19,10 +19,10 @@
#define KMYMONEYONLINEQUOTECONFIG_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -25,7 +25,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqheader.h>
#include <tqcursor.h>
@ -34,7 +34,7 @@
#include <tqgroupbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdeglobal.h>

@ -19,13 +19,13 @@
#define KMYMONEYPRICEVIEW_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
// class TQListViewItem;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdepopupmenu.h>
#include <tdelistview.h>

@ -25,12 +25,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpushbutton.h>
#include <tqkeysequence.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdepopupmenu.h>
#include <tdemessagebox.h>

@ -24,10 +24,10 @@
#define KMYMONEYSCHEDULEDCALENDAR_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -45,7 +45,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqpen.h>
#include <tqpainter.h>
@ -55,7 +55,7 @@
#include <tqapplication.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <tdeglobalsettings.h>
#include <tdelocale.h>

@ -24,10 +24,10 @@
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlayout.h>
#include <tqheader.h>
@ -29,7 +29,7 @@
#include <tqregexp.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,14 +19,14 @@
#define KMYMONEYSELECTOR_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqwidget.h>
#include <tqlistview.h>
class TQHBoxLayout;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
class TDEListView;

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpixmap.h>
#include <tqvariant.h>
@ -28,7 +28,7 @@
#include <tqpainter.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeglobal.h>
#include <kstandarddirs.h>

@ -19,7 +19,7 @@
#define KTITLELABEL_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlabel.h>
#include <tqimage.h>
@ -27,7 +27,7 @@
class TQPixmap;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,7 +19,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlayout.h>
#include <tqlabel.h>
@ -29,7 +29,7 @@
#include <tqtooltip.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <kpushbutton.h>

@ -18,7 +18,7 @@
#define KMYMONEYWIZARD_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqdialog.h>
#include <tqvaluelist.h>
@ -29,7 +29,7 @@ class TQLabel;
class TQFrame;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
class KPushButton;

@ -18,12 +18,12 @@
#define KMYMONEYWIZARD_P_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqobject.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -11,7 +11,7 @@ sub usage
print STDERR "$_[0]\n" if @_;
print STDERR <<EOT;
Usage: $0 [options] [<widget spec> ...]
Generates a Qt designer-plugin for the widget set defined in widget spec
Generates a TQt designer-plugin for the widget set defined in widget spec
or STDIN if no filename is given
Options:

@ -22,7 +22,7 @@
#include <typeinfo>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqtimer.h>
@ -32,7 +32,7 @@
#include <tqimage.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdeglobal.h>

@ -26,7 +26,7 @@
#include <algorithm>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqtable.h>
#include <tqvaluelist.h>
@ -37,7 +37,7 @@
#include <tqevent.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,14 +19,14 @@
#define REGISTERITEM_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqdatetime.h>
#include <tqpainter.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes
@ -46,8 +46,8 @@ typedef enum {
typedef enum {
ActionNone = -1,
ActionCheck = 0,
/* these should be values which qt 3.3 never uses for TQTab:
* qt starts upwards from 0
/* these should be values which tqt never uses for TQTab:
* tqt starts upwards from 0
*/
ActionDeposit = 12201,
ActionTransfer = 12202,

@ -19,7 +19,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqapplication.h>
#include <tqlabel.h>
@ -27,7 +27,7 @@
#include <tqtimer.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdetoolbar.h>
#include <tdetoolbarbutton.h>

@ -19,12 +19,12 @@
#define REGISTERSEARCHLINE_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqhbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <klineedit.h>

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>

@ -19,10 +19,10 @@
#define SCHEDULEDTRANSACTION_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,10 +19,10 @@
#define SELECTEDTRANSACTION_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <kdebug.h>

@ -19,10 +19,10 @@
#define STDTRANSACTIONDOWNLOADED_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,12 +20,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqregion.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <kdebug.h>

@ -19,11 +19,11 @@
#define STDTRANSACTIONMATCHED_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqbrush.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,14 +20,14 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqpainter.h>
#include <tqwidgetlist.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdeglobal.h>

@ -19,12 +19,12 @@
#define TRANSACTION_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpalette.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -19,7 +19,7 @@
#define TRANSACTIONEDITORCONTAINER_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqmap.h>
#include <tqstring.h>
@ -27,7 +27,7 @@
class TQWidget;
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqstring.h>
#include <tqpainter.h>
@ -31,7 +31,7 @@
#include <tqpalette.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdeglobal.h>
@ -83,13 +83,13 @@ void TabBar::setCurrentTab(int id)
TQTab* TabBar::tab(int id) const
{
/* if a TQAccel calls setCurrentTab, id will be as set by qt.
/* if a TQAccel calls setCurrentTab, id will be as set by tqt.
* however if we call it programmatically, id will
* be our own id. We do tell TQTab about our id but
* in qt3.3 I (woro) am not able to make sure that
* TQAccel also gets it. See registeritem.h: We defined
* new values for our own ids which should lie way
* outside of the range that qt uses
* outside of the range that tqt uses
*/
TQTab *result=TQTabBar::tab(id);
TQMap<int, int>::const_iterator it;

@ -19,7 +19,7 @@
#define TRANSACTIONFORM_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqtable.h>
#include <tqvaluelist.h>
@ -29,7 +29,7 @@
#include <tqtabbar.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -11,10 +11,10 @@
#define TRANSACTIONSORTOPTION_UI_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kiconloader.h>
#include <tdelocale.h>

@ -22,7 +22,7 @@
#include <locale.h>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqcheckbox.h>
#include <tqfocusdata.h>
@ -31,7 +31,7 @@
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdelistbox.h>

@ -19,7 +19,7 @@
#define KNEWACCOUNTWIZARD_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
class TQString;

@ -19,12 +19,12 @@
#define KNEWACCOUNTWIZARD_P_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqcheckbox.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <kcombobox.h>
#include <klineedit.h>

@ -22,7 +22,7 @@
#include <locale.h>
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqpixmap.h>
#include <tqbitmap.h>
@ -32,7 +32,7 @@
#include <tqlabel.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdelistview.h>

@ -19,7 +19,7 @@
#define KNEWUSERWIZARD_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
class TQString;

@ -19,7 +19,7 @@
#define KNEWUSERWIZARD_P_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,12 +20,12 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqheader.h>
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelistview.h>
#include <kmymoney/kmymoneyaccounttree.h>

@ -19,7 +19,7 @@
#define ACCOUNTS_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <tdelistview.h>

@ -19,7 +19,7 @@
#define CURRENCY_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqlistview.h>

@ -20,10 +20,10 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdelocale.h>
#include <klineedit.h>

@ -19,7 +19,7 @@
#define USERINFO_H
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
// ----------------------------------------------------------------------------
// Project Includes

@ -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(...)''

@ -20,7 +20,7 @@
#endif
// ----------------------------------------------------------------------------
// QT Includes
// TQt Includes
#include <tqfile.h>
#include <tqdir.h>
@ -30,7 +30,7 @@
// ----------------------------------------------------------------------------
// KDE Includes
// TDE Includes
#include <tdeapplication.h>
#include <tdelocale.h>

@ -2522,8 +2522,7 @@ msgstr "S'ha produït un error fatal en determinar les dades: "
#: dialogs/tdeselectdatabasedlg.cpp:60
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
#: dialogs/tdeselectdatabasedlg.cpp:114

@ -2566,8 +2566,7 @@ msgstr "Kritická chyba při rozeznávání dat: "
#: dialogs/tdeselectdatabasedlg.cpp:60
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
#: dialogs/tdeselectdatabasedlg.cpp:114

@ -2489,8 +2489,7 @@ msgstr ""
#: dialogs/tdeselectdatabasedlg.cpp:60
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
#: dialogs/tdeselectdatabasedlg.cpp:114

@ -2671,12 +2671,10 @@ msgstr "Schwerwiegender Fehler beim Bestimmen der Daten: "
#: dialogs/tdeselectdatabasedlg.cpp:60
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
"Es sind keine TQt-SQL-Treiber in ihrem System verfügbar.\n"
"Bitte die Dokumentation der Distribution oder die TQt-Internetseite (www."
"trinitydesktop.org) konsultieren und nach SQL-Treibern suchen."
"Bitte die Dokumentation der Distribution und nach SQL-Treibern suchen."
#: dialogs/tdeselectdatabasedlg.cpp:114
msgid "TQt SQL driver %1 is no longer installed on your system"

@ -2630,25 +2630,22 @@ msgid "Fatal error in determining data: "
msgstr "Fatal error in determining data: "
#: dialogs/tdeselectdatabasedlg.cpp:60
#, fuzzy
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
"There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www."
"trolltech.com) and search for SQL drivers."
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro and search for SQL drivers."
#: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system"
msgstr "Qt SQL driver %1 is no longer installed on your system"
msgstr "TQt SQL driver %1 is no longer installed on your system"
#: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy
msgid "TQt SQL driver %1 is not suported"
msgstr "Qt SQL driver %1 is not supported"
msgstr "TQt SQL driver %1 is not supported"
#: dialogs/tdeselectdatabasedlg.cpp:177
msgid ""
@ -16421,7 +16418,7 @@ msgstr ""
#~ "Expressions may be helpful!!). The use of a URL means that the 'source' "
#~ "could be a shell script or other Linux executable, if you have the skills "
#~ "to produce these. Use the Settings menu, Configure KMyMoney and select "
#~ "Online Quotes, to supply new sources. (N.B. Due to a quirk of Qt, you may "
#~ "Online Quotes, to supply new sources. (N.B. Due to a quirk of TQt, you may "
#~ "need to maximize the window to see the full instructions.)</p><p>Do not "
#~ "worry too much about any mistakes you may make here. They can always be "
#~ "corrected later, via the Tools/Securities menu item.</p><p>Please be "
@ -16442,7 +16439,7 @@ msgstr ""
#~ "Expressions may be helpful!!). The use of a URL means that the 'source' "
#~ "could be a shell script or other Linux executable, if you have the skills "
#~ "to produce these. Use the Settings menu, Configure KMyMoney and select "
#~ "Online Quotes, to supply new sources. (N.B. Due to a quirk of Qt, you may "
#~ "Online Quotes, to supply new sources. (N.B. Due to a quirk of TQt, you may "
#~ "need to maximize the window to see the full instructions.)</p><p>Do not "
#~ "worry too much about any mistakes you may make here. They can always be "
#~ "corrected later, via the Tools/Securities menu item.</p><p>Please be "

@ -2646,25 +2646,22 @@ msgid "Fatal error in determining data: "
msgstr "Error fatal durante la determinación de los datos:"
#: dialogs/tdeselectdatabasedlg.cpp:60
#, fuzzy
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
"No hay manejadores de Qt SQL instalados en su sistema.\n"
"Por favor, consulte la información de su distribución, o visite el sitio de "
"Qt (www.trolltech.com) y busque por manejadores de SQL."
"No hay manejadores de TQt SQL instalados en su sistema.\n"
"Por favor, consulte la información de su distribución y busque por manejadores de SQL."
#: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system"
msgstr "El manejador de Qt SQL %1 no esta más instalado en su sistema"
msgstr "El manejador de TQt SQL %1 no esta más instalado en su sistema"
#: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy
msgid "TQt SQL driver %1 is not suported"
msgstr "El manejador de Qt SQL %1 no está soportado"
msgstr "El manejador de TQt SQL %1 no está soportado"
#: dialogs/tdeselectdatabasedlg.cpp:177
msgid ""

@ -2654,22 +2654,20 @@ msgstr "Error fatal durante la determinación de los datos:"
#, fuzzy
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
"No están instalados los controladores de Qt SQL en su sistema.\n"
"Por favor consulte la documentación para su distribución, o visite el sitio "
"web de Qt (www.trolltech.com) y busque los controladores de SQL."
"No están instalados los controladores de TQt SQL en su sistema.\n"
"Por favor consulte la documentación para su distribución y busque los controladores de SQL."
#: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system"
msgstr "El manejador de Qt SQL %1 ya no está instalado en su sistema"
msgstr "El manejador de TQt SQL %1 ya no está instalado en su sistema"
#: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy
msgid "TQt SQL driver %1 is not suported"
msgstr "El manejador de Qt SQL %1 no está soportado"
msgstr "El manejador de TQt SQL %1 no está soportado"
#: dialogs/tdeselectdatabasedlg.cpp:177
msgid ""

@ -2620,25 +2620,22 @@ msgid "Fatal error in determining data: "
msgstr "Vakava virhe tietojen määrityksessä: "
#: dialogs/tdeselectdatabasedlg.cpp:60
#, fuzzy
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
"Järjestelmään ei ole asennettu lainkaan QT SQL -ajureita.\n"
"Selvitä asentaminen käytetyn jakelun dokumentaatiosta tai käy QT-"
"webbisivuilla (http://www.trolltech.com) ja etsi hakusanoilla 'SQL drivers'."
"Järjestelmään ei ole asennettu lainkaan TQt SQL -ajureita.\n"
"Selvitä asentaminen käytetyn jakelun dokumentaatiosta ja etsi hakusanoilla 'SQL drivers'."
#: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system"
msgstr "QT SQL-ajuri %1 ei ole enää asennettuna järjestelmään"
msgstr "TQt SQL-ajuri %1 ei ole enää asennettuna järjestelmään"
#: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy
msgid "TQt SQL driver %1 is not suported"
msgstr "Qt SQL-ajuri %1 ei ole tuettu"
msgstr "TQt SQL-ajuri %1 ei ole tuettu"
#: dialogs/tdeselectdatabasedlg.cpp:177
msgid ""

@ -2708,25 +2708,22 @@ msgid "Fatal error in determining data: "
msgstr "Erreur fatale dans la détermination des données : "
#: dialogs/tdeselectdatabasedlg.cpp:60
#, fuzzy
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
"Aucun driver SQL pour Qt n'est installé sur votre système.\n"
"Merci de consulter la documentation de votre distribution ou visitez le site "
"Web Qt (www.trolltech.com) et cherchez les drivers SQL."
"Aucun driver SQL pour TQt n'est installé sur votre système.\n"
"Merci de consulter la documentation de votre distribution et cherchez les drivers SQL."
#: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system"
msgstr "Le pilote SQL pour Qt n'est pas installé sur votre système"
msgstr "Le pilote SQL pour TQt n'est pas installé sur votre système"
#: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy
msgid "TQt SQL driver %1 is not suported"
msgstr "Le pilote SQL pour Qt %1 n'est pas supporté"
msgstr "Le pilote SQL pour TQt %1 n'est pas supporté"
#: dialogs/tdeselectdatabasedlg.cpp:177
msgid ""
@ -15374,11 +15371,10 @@ msgstr ""
#~ msgstr "SQLite a besoin d'un nom de fichier; essayez encore ?"
#~ msgid ""
#~ "<h3>Database Type</h3><p>This box lists all Qt SQL drivers installed on "
#~ "<h3>Database Type</h3><p>This box lists all TQt SQL drivers installed on "
#~ "your system. Select the driver for your database type. If the one you "
#~ "want is not in the list, you need to install the appropriate driver. See "
#~ "your distro documentation, or visit the Qt web Site (http://www.trolltech."
#~ "com) and search for 'SQL drivers'.</p><h3>Database Name</h3><p>The "
#~ "your distro documentation and search for 'SQL drivers'.</p><h3>Database Name</h3><p>The "
#~ "default database name is KMyMoney, but you may choose some other name if "
#~ "you like. SQLite has one database per file; selecting this driver opens "
#~ "the file dialog. For database types other than SQLite and MySql, the "
@ -15400,11 +15396,10 @@ msgstr ""
#~ "usage.</p>"
#~ msgstr ""
#~ "<h3>Type de Base de données</h3><p>Cette boîte de dialogue liste tous les "
#~ "drivers SQL pour Qt installés sur votre système. Choisissez le driver "
#~ "drivers SQL pour TQt installés sur votre système. Choisissez le driver "
#~ "pour votre type de base de données. Si celui que vous voulez n'est pas "
#~ "dans la liste, vous devez installer le driver approprié. Regardez la "
#~ "documentation de votre distribution ou visitez le site web Qt (http://www."
#~ "trolltech.com) et cherchez les 'drivers SQL'.</p><h3>Nom de la base de "
#~ "documentation de votre distribution et cherchez les 'drivers SQL'.</p><h3>Nom de la base de "
#~ "données</h3><p>Le nom de la base de données par défaut est KMyMoney, mais "
#~ "vous pouvez choisir un autre nom si vous voulez. SQLite a une base de "
#~ "données par fichier; choisir ce driver ouvre la boîte de dialogue de "

@ -2634,25 +2634,22 @@ msgid "Fatal error in determining data: "
msgstr "Aconteceu un erro fatal ao determinar a data: "
#: dialogs/tdeselectdatabasedlg.cpp:60
#, fuzzy
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
"Non hai controladores SQL de Qt instalados no seu sistema.\n"
"Consulte a documentación da súa distribución, ou visite o sitio web de Qt "
"(www.trolltech.com) e procure controladores SQL."
"Non hai controladores SQL de TQt instalados no seu sistema.\n"
"Consulte a documentación da súa distribución e procure controladores SQL."
#: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system"
msgstr "O controlador para %1 de Qt SQL non está instalado no sistema"
msgstr "O controlador para %1 de TQt SQL non está instalado no sistema"
#: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy
msgid "TQt SQL driver %1 is not suported"
msgstr "O controlador %1 de Qt SQL non está soportado"
msgstr "O controlador %1 de TQt SQL non está soportado"
#: dialogs/tdeselectdatabasedlg.cpp:177
msgid ""

@ -2668,12 +2668,10 @@ msgstr "Errore nell'identificazione dei dati: "
#: dialogs/tdeselectdatabasedlg.cpp:60
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
"Non ci sono driver TQt SQL installati sul tuo sistema.\n"
"Consulta la documentazione della tua distribuzione, o visita il sito web Qt "
"(www.trolltech.com) e cerca i driver SQL."
"Consulta la documentazione della tua distribuzione e cerca i driver SQL."
#: dialogs/tdeselectdatabasedlg.cpp:114
msgid "TQt SQL driver %1 is no longer installed on your system"

@ -2407,8 +2407,7 @@ msgstr ""
#: dialogs/tdeselectdatabasedlg.cpp:60
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
#: dialogs/tdeselectdatabasedlg.cpp:114

@ -2457,8 +2457,7 @@ msgstr "Rimta klaida nustatant duomenis: "
#: dialogs/tdeselectdatabasedlg.cpp:60
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
#: dialogs/tdeselectdatabasedlg.cpp:114

@ -2667,25 +2667,22 @@ msgid "Fatal error in determining data: "
msgstr "Fatale fout tijdens het bepalen van gegevens: "
#: dialogs/tdeselectdatabasedlg.cpp:60
#, fuzzy
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
"Er zijn geen Qt SQL drivers geinstalleerd op uw systeem.\n"
"Raadpleeg de documentatie van uw distributie (bv. Ubuntu, OpenSuse), of "
"bezoek de website (www.trolltech.com) en zoek naar de juiste SQL drivers."
"Er zijn geen TQt SQL drivers geinstalleerd op uw systeem.\n"
"Raadpleeg de documentatie van uw distributie (bv. Ubuntu, OpenSuse) en zoek naar de juiste SQL drivers."
#: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system"
msgstr "Qt SQL driver %1 is niet meer op uw systeem geïnstalleerd"
msgstr "TQt SQL driver %1 is niet meer op uw systeem geïnstalleerd"
#: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy
msgid "TQt SQL driver %1 is not suported"
msgstr "Qt SQL driver %1 wordt niet ondersteund"
msgstr "TQt SQL driver %1 wordt niet ondersteund"
#: dialogs/tdeselectdatabasedlg.cpp:177
msgid ""

@ -2655,8 +2655,7 @@ msgstr "Poważny błąd przy określaniu danych: "
#: dialogs/tdeselectdatabasedlg.cpp:60
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
#: dialogs/tdeselectdatabasedlg.cpp:114

@ -2649,25 +2649,22 @@ msgid "Fatal error in determining data: "
msgstr "Erro fatal determinando dados: "
#: dialogs/tdeselectdatabasedlg.cpp:60
#, fuzzy
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
"Não há piloto Qt para SQL no seu sistema.\n"
"É favor verificar a documentação da sua distribuição, ou visitar o site "
"internet do Qt (www.trolltech.com) e procurar os pilotos SQL."
"Não há piloto TQt para SQL no seu sistema.\n"
"É favor verificar a documentação da sua distribuição e procurar os pilotos SQL."
#: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system"
msgstr "O piloto Qt SQL %1 não está agora instalado no seu sistema"
msgstr "O piloto TQt SQL %1 não está agora instalado no seu sistema"
#: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy
msgid "TQt SQL driver %1 is not suported"
msgstr "O piloto Qt SQL %1 não é suportado"
msgstr "O piloto TQt SQL %1 não é suportado"
#: dialogs/tdeselectdatabasedlg.cpp:177
msgid ""

@ -2659,25 +2659,22 @@ msgid "Fatal error in determining data: "
msgstr "Erro fatal determinando dados: "
#: dialogs/tdeselectdatabasedlg.cpp:60
#, fuzzy
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
"Não há driver Qt para SQL no seu sistema.\n"
"Por favor consulte a documentação da sua distribuição, ou visite a página "
"internet do Qt (www.trolltech.com) e procure os drivers SQL."
"Não há driver TQt para SQL no seu sistema.\n"
"Por favor consulte a documentação da sua distribuição e procure os drivers SQL."
#: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system"
msgstr "O driver Qt SQL %1 não está instalado no seu sistema"
msgstr "O driver TQt SQL %1 não está instalado no seu sistema"
#: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy
msgid "TQt SQL driver %1 is not suported"
msgstr "O driver Qt SQL %1 não é suportado"
msgstr "O driver TQt SQL %1 não é suportado"
#: dialogs/tdeselectdatabasedlg.cpp:177
msgid ""
@ -15282,11 +15279,10 @@ msgstr ""
#~ msgstr "O SQLite necessita de um nome de arquivo; tentar novamente?"
#~ msgid ""
#~ "<h3>Database Type</h3><p>This box lists all Qt SQL drivers installed on "
#~ "<h3>Database Type</h3><p>This box lists all TQt SQL drivers installed on "
#~ "your system. Select the driver for your database type. If the one you "
#~ "want is not in the list, you need to install the appropriate driver. See "
#~ "your distro documentation, or visit the Qt web Site (http://www.trolltech."
#~ "com) and search for 'SQL drivers'.</p><h3>Database Name</h3><p>The "
#~ "your distro documentation and search for 'SQL drivers'.</p><h3>Database Name</h3><p>The "
#~ "default database name is KMyMoney, but you may choose some other name if "
#~ "you like. SQLite has one database per file; selecting this driver opens "
#~ "the file dialog. For database types other than SQLite and MySql, the "
@ -15307,12 +15303,11 @@ msgstr ""
#~ "chapter of the KMyMoney handbook for further information on database "
#~ "usage.</p>"
#~ msgstr ""
#~ "<h3> Tipo de Banco de Dados</h3> <p>Esta caixa lista todos os drivers Qt "
#~ "<h3> Tipo de Banco de Dados</h3> <p>Esta caixa lista todos os drivers TQt "
#~ "SQL instalados no seu sistema. Selecione o driver para o seu tipo de "
#~ "banco de dados. Se o tipo que você deseja não estiver na lista, você terá "
#~ "que instalar o driver apropriado. Verifique a documentação da sua "
#~ "distribuição, ou visite a página internet do Qt (http://www.trolltech."
#~ "com) e procure por 'drivers SQL'.</p> <h3>Nome do Banco de Dados</h3> "
#~ "distribuição e procure por 'drivers SQL'.</p> <h3>Nome do Banco de Dados</h3> "
#~ "<p>O nome padrão do banco de dados é KMyMoney, mas você pode escolher "
#~ "outro nome se quiser. O SQLite possui um único banco de dados por "
#~ "arquivo, assim selecionando-o será aberta a janela de abertura de "

@ -2674,25 +2674,22 @@ msgid "Fatal error in determining data: "
msgstr "Eroare fatală la determinarea datelor: "
#: dialogs/tdeselectdatabasedlg.cpp:60
#, fuzzy
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
"Nu există drivere Qt SQL instalate pe sistemul dumneavoastră.\n"
" Vă rog să consultaţi documentaţia pentru distribuţia dumneavoastră sau să "
"vizitaţi site-ul web (www.trolltech.com) pentru a căuta driverele SQL."
"Nu există drivere TQt SQL instalate pe sistemul dumneavoastră.\n"
"Vă rog să consultaţi documentaţia pentru distribuţia dumneavoastră a căuta driverele SQL."
#: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system"
msgstr "Driverul SQL Qt %1 nu mai este instalat pe sistemul dumneavoastră"
msgstr "Driverul SQL TQt %1 nu mai este instalat pe sistemul dumneavoastră"
#: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy
msgid "TQt SQL driver %1 is not suported"
msgstr "Driverul SQL Qt %1 nu este compatibil"
msgstr "Driverul SQL TQt %1 nu este compatibil"
#: dialogs/tdeselectdatabasedlg.cpp:177
msgid ""

@ -2590,22 +2590,20 @@ msgstr "Критическая ошибка обработки данных: "
#, fuzzy
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
"В системе не установлены драйверы SQL для Qt.\n"
"Поищите информацию об их установке в документации к вашему дистрибутиву или "
"на сайте Qt (www.trolltech.com)"
"В системе не установлены драйверы SQL для TQt.\n"
"Поищите информацию об их установке в документации к вашему дистрибутиву"
#: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system"
msgstr "Драйвер Qt SQL %1 больше не установлен в системе"
msgstr "Драйвер TQt SQL %1 больше не установлен в системе"
#: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy
msgid "TQt SQL driver %1 is not suported"
msgstr "Драйвер Qt SQL %1 не поддерживается"
msgstr "Драйвер TQt SQL %1 не поддерживается"
#: dialogs/tdeselectdatabasedlg.cpp:177
msgid ""
@ -14994,11 +14992,10 @@ msgstr ""
#~ msgstr "Для SQLite требуется указать имя файла. Повторить?"
#~ msgid ""
#~ "<h3>Database Type</h3><p>This box lists all Qt SQL drivers installed on "
#~ "<h3>Database Type</h3><p>This box lists all TQt SQL drivers installed on "
#~ "your system. Select the driver for your database type. If the one you "
#~ "want is not in the list, you need to install the appropriate driver. See "
#~ "your distro documentation, or visit the Qt web Site (http://www.trolltech."
#~ "com) and search for 'SQL drivers'.</p><h3>Database Name</h3><p>The "
#~ "your distro documentation and search for 'SQL drivers'.</p><h3>Database Name</h3><p>The "
#~ "default database name is KMyMoney, but you may choose some other name if "
#~ "you like. SQLite has one database per file; selecting this driver opens "
#~ "the file dialog. For database types other than SQLite and MySql, the "
@ -15019,11 +15016,10 @@ msgstr ""
#~ "chapter of the KMyMoney handbook for further information on database "
#~ "usage.</p>"
#~ msgstr ""
#~ "<h3>Тип базы данных</h3><p>Вы должны выбрать из списка драйвер Qt работы "
#~ "<h3>Тип базы данных</h3><p>Вы должны выбрать из списка драйвер TQt работы "
#~ "с базой данных, доступной в вашей системе. Если необходимого драйвера нет "
#~ "в списке, установите соответствующий драйвер. Установка описана в "
#~ "документации по вашему дистрибутиву и на веб-сайте Qt (http://www."
#~ "trolltech.com, раздел «SQL drivers»).</p> <h3>Имя базы данных</h3><p>По "
#~ "документации по вашему дистрибутиву, раздел «SQL drivers»).</p> <h3>Имя базы данных</h3><p>По "
#~ "умолчанию используется база данных KMyMoney, но вы можете указать другое "
#~ "имя. SQLite хранит каждую базу данных в отдельном файле, поэтому при "
#~ "выборе этого типа базы данных появится диалог выбора файла. База данных "

@ -2623,8 +2623,7 @@ msgstr "Kritická chyba v určujúcich dátach:"
#: dialogs/tdeselectdatabasedlg.cpp:60
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
#: dialogs/tdeselectdatabasedlg.cpp:114

@ -2459,8 +2459,7 @@ msgstr "Fatalt fel vid bestämmande av data: "
#: dialogs/tdeselectdatabasedlg.cpp:60
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
#: dialogs/tdeselectdatabasedlg.cpp:114

@ -2457,8 +2457,7 @@ msgstr "Veriler belirlenirken bir sonlandırıcı hata oluştu:"
#: dialogs/tdeselectdatabasedlg.cpp:60
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
#: dialogs/tdeselectdatabasedlg.cpp:114

@ -2535,11 +2535,10 @@ msgstr "在确定数据时发生致命错误。"
#, fuzzy
msgid ""
"There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www."
"trolltech.com) and search for SQL drivers."
"Please consult documentation for your distro and search for SQL drivers."
msgstr ""
"在您的系统中未安装Qt的SQL驱动程序。\n"
"请参考您的系统发行版文档或者访问Qt官方网站http://www.trolltech.com寻找"
"请参考您的系统发行版文档寻找"
"SQL驱动程序。"
#: dialogs/tdeselectdatabasedlg.cpp:114
@ -14748,11 +14747,10 @@ msgstr ""
#~ msgstr "SQLite需要一个文件名重试"
#~ msgid ""
#~ "<h3>Database Type</h3><p>This box lists all Qt SQL drivers installed on "
#~ "<h3>Database Type</h3><p>This box lists all TQt SQL drivers installed on "
#~ "your system. Select the driver for your database type. If the one you "
#~ "want is not in the list, you need to install the appropriate driver. See "
#~ "your distro documentation, or visit the Qt web Site (http://www.trolltech."
#~ "com) and search for 'SQL drivers'.</p><h3>Database Name</h3><p>The "
#~ "your distro documentation and search for 'SQL drivers'.</p><h3>Database Name</h3><p>The "
#~ "default database name is KMyMoney, but you may choose some other name if "
#~ "you like. SQLite has one database per file; selecting this driver opens "
#~ "the file dialog. For database types other than SQLite and MySql, the "
@ -14775,8 +14773,7 @@ msgstr ""
#~ msgstr ""
#~ "<h3>数据库类型</h3><p>这个列表框中列出了您系统中安装的所有Qt SQL驱动程"
#~ "序。 选择与您的数据库类型对应的驱动。如果列表中没有您想要的驱动,那么就需"
#~ "要您安装正确的驱动程序。请参考您的系统发行版文档或者访问Qt官方网站"
#~ "http://www.trolltech.com查找SQL驱动程序。</p><h3>数据库名称</h3><p>缺"
#~ "要您安装正确的驱动程序。请参考您的系统发行版文档 查找SQL驱动程序。</p><h3>数据库名称</h3><p>缺"
#~ "省的数据库名是KMyMoney, 但您也可以任意选择其他您喜欢的名字。 SQLite的每个"
#~ "数据库对应一个文件,选择使用该驱动将打开文件对话框。虽然本程序 可以自动创"
#~ "建需要的数据表结构,但对于 MySQL以外的数据库类型必须预先在数据库系统中创"

Loading…
Cancel
Save