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> <screen>
//----------------------------------------------------------------------- //-----------------------------------------------------------------------
// QT Headers // TQt Headers
#include &lt;qtlabel.h&gt; #include &lt;qtlabel.h&gt;
//----------------------------------------------------------------------- //-----------------------------------------------------------------------
// KDE Headers // TDE Headers
#include &lt;kcombobox.h&gt; #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> <title>Including header files in source files</title>
<screen> <screen>
//----------------------------------------------------------------------- //-----------------------------------------------------------------------
// QT Headers // TQt Headers
#include &lt;qtlabel.h&gt; #include &lt;qtlabel.h&gt;
//----------------------------------------------------------------------- //-----------------------------------------------------------------------
// KDE Headers // TDE Headers
#include &lt;kcombobox.h&gt; #include &lt;kcombobox.h&gt;
//----------------------------------------------------------------------- //-----------------------------------------------------------------------

@ -1,7 +1,7 @@
<chapter id="dialogs"> <chapter id="dialogs">
<title>Creating dialog boxes in &kappname;</title> <title>Creating dialog boxes in &kappname;</title>
<para/> <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/> <para/>
<sect1 id="dialogs-language"> <sect1 id="dialogs-language">
<title>Language</title> <title>Language</title>
@ -18,7 +18,7 @@
<sect1 id="dialogs-designing"> <sect1 id="dialogs-designing">
<title>Designing the dialog</title> <title>Designing the dialog</title>
<para/> <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/>
<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>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/> <para/>
@ -35,7 +35,7 @@
<para/> <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>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/>
<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/> <para/>
</sect2> </sect2>
<sect2 id="dialogs-saving-ui"> <sect2 id="dialogs-saving-ui">
@ -72,9 +72,9 @@
<para/> <para/>
<para>The first two lines are the standard include stoppers, to avoid multiple inclusion of the class data.</para> <para>The first two lines are the standard include stoppers, to avoid multiple inclusion of the class data.</para>
<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/>
<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/>
<para>The class declaration must also include a </para> <para>The class declaration must also include a </para>
<para/> <para/>
@ -85,7 +85,7 @@
<programlisting> signals:</programlisting> <programlisting> signals:</programlisting>
<para/> <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/>
<para>Terminate the file with</para> <para>Terminate the file with</para>
<para/> <para/>
@ -97,9 +97,9 @@
<sect2 id="dialogs=code-file"> <sect2 id="dialogs=code-file">
<title>Code (.cpp) file</title> <title>Code (.cpp) file</title>
<para/> <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/>
<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/>
<para>Then the easy bit; write your code.</para> <para>Then the easy bit; write your code.</para>
<para/> <para/>
@ -107,7 +107,7 @@
<para/> <para/>
<programlisting> #include "&lt;KN&gt;dlg.moc"</programlisting> <programlisting> #include "&lt;KN&gt;dlg.moc"</programlisting>
<para/> <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/> <para/>
</sect2> </sect2>
</sect1> </sect1>

@ -29,7 +29,7 @@ This appendix contains an example of a
#define KSETTINGSDLG_H #define KSETTINGSDLG_H
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// QT Includes // TQt Includes
#include &lt;qcheckbox.h&gt; #include &lt;qcheckbox.h&gt;
#include &lt;qradiobutton.h&gt; #include &lt;qradiobutton.h&gt;
#include &lt;qbuttongroup.h&gt; #include &lt;qbuttongroup.h&gt;
@ -37,7 +37,7 @@ This appendix contains an example of a
#include &lt;qfont.h&gt; #include &lt;qfont.h&gt;
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // TDE Includes
#include &lt;kdialogbase.h&gt; #include &lt;kdialogbase.h&gt;
#include &lt;tdefontdialog.h&gt; #include &lt;tdefontdialog.h&gt;
#include &lt;kcolorbutton.h&gt; #include &lt;kcolorbutton.h&gt;
@ -130,7 +130,7 @@ public:
* Standard constructor. * Standard constructor.
* *
* @param parent The TQWidget this is used in. * @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. * @param modal True if we want the dialog to be application modal.
* *
* @return An object of type KSettingsDlg. * @return An object of type KSettingsDlg.
@ -187,7 +187,7 @@ signals:
***************************************************************************/ ***************************************************************************/
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// QT Includes // TQt Includes
#include &lt;qlayout.h&gt; #include &lt;qlayout.h&gt;
#include &lt;qvbox.h&gt; #include &lt;qvbox.h&gt;
#include &lt;qlabel.h&gt; #include &lt;qlabel.h&gt;
@ -196,7 +196,7 @@ signals:
#include &lt;qvalidator.h&gt; #include &lt;qvalidator.h&gt;
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // TDE Includes
#include &lt;tdelocale.h&gt; #include &lt;tdelocale.h&gt;
#include &lt;kstddirs.h&gt; #include &lt;kstddirs.h&gt;
#include &lt;kiconloader.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 engine code that should introduce a clear interface between the business
logic and the user interface. Another design goal was to write the engine 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. 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. skipped by the project team at that time.
</para> </para>

@ -43,8 +43,8 @@
<sect2><title>Preparation</title> <sect2><title>Preparation</title>
<para> <para>
To access the database, &kappname; uses the SQL module supplied by &Qt; To access the database, &kappname; uses the SQL module supplied by &TQt;
Software as part of their &Qt; programming system. This module supports a Software as part of their &TQt; programming system. This module supports a
number of different database systems through a collection of drivers. Among number of different database systems through a collection of drivers. Among
the more popular open-source systems for which drivers are available are the more popular open-source systems for which drivers are available are
MySQL<trademark class="registered"/>, SQLite, and PostgreSQL. The module also MySQL<trademark class="registered"/>, SQLite, and PostgreSQL. The module also
@ -64,10 +64,8 @@
<para> <para>
In addition to the database software itself, you must also install the In addition to the database software itself, you must also install the
corresponding &Qt; driver module. Most distributions will include driver corresponding &TQt; driver module. Most distributions will include driver
modules for the more popular databases. Otherwise, check with the <ulink modules for the more popular databases.
url="http://qt.nokia.com">&Qt; software web site</ulink> and search for
'SQL drivers'
</para> </para>
<note> <note>
@ -78,14 +76,6 @@
software package to install. Also, some of the following information, software package to install. Also, some of the following information,
particularly that related to administration, may not apply to SQLite. particularly that related to administration, may not apply to SQLite.
</para> </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> </note>
</sect2> </sect2>
@ -168,11 +158,9 @@
<title>Database Type</title> <title>Database Type</title>
<para> <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 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, need to install the appropriate driver.
or visit the <ulink url="http://qt.nokia.com/" type="">&Qt; software web
site</ulink> and search for 'SQL drivers'.
</para> </para>
</sect3> </sect3>

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

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

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

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

@ -25,7 +25,7 @@ email : mte@users.sourceforge.net
#endif #endif
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// QT Includes // TQt Includes
#include <tqfile.h> #include <tqfile.h>
#include <tqmap.h> #include <tqmap.h>
#include <tqobject.h> #include <tqobject.h>
@ -34,7 +34,7 @@ email : mte@users.sourceforge.net
#include <tqdatetime.h> #include <tqdatetime.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // TDE Includes
#ifndef _GNCFILEANON #ifndef _GNCFILEANON
#include <tdelocale.h> #include <tdelocale.h>
#include <tdeconfig.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> #include <stdlib.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// QT Includes // TQt Includes
#include <tqdatastream.h> #include <tqdatastream.h>
class TQIODevice; class TQIODevice;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@ -11,7 +11,7 @@
#define MYMONEYSTORAGESQL_H #define MYMONEYSTORAGESQL_H
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// QT Includes // TQt Includes
#include <tqsqldatabase.h> #include <tqsqldatabase.h>
#include <tqsqlquery.h> #include <tqsqlquery.h>
@ -20,7 +20,7 @@
class TQIODevice; class TQIODevice;
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // TDE Includes
#include <kurl.h> #include <kurl.h>
#include <ksharedptr.h> #include <ksharedptr.h>
@ -107,7 +107,7 @@ class MyMoneyDbDrivers {
public: public:
MyMoneyDbDrivers (); 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);}; const TQMap<TQString, TQString> driverMap() const {return (m_driverMap);};
databaseTypeE driverToType (const TQString& driver) const; databaseTypeE driverToType (const TQString& driver) const;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@ -21,10 +21,10 @@
#endif #endif
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// QT Includes // TQt Includes
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // TDE Includes
// This is just needed for i18n(). Once I figure out how to handle i18n // 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 // 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, // is a minor problem because we use these terms when rendering to HTML,

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@ -11,7 +11,7 @@ sub usage
print STDERR "$_[0]\n" if @_; print STDERR "$_[0]\n" if @_;
print STDERR <<EOT; print STDERR <<EOT;
Usage: $0 [options] [<widget spec> ...] 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 or STDIN if no filename is given
Options: Options:

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@ -18,7 +18,7 @@ CONTENTS
this is from the KD Chart webpage: this is from the KD Chart webpage:
''KD Chart is a tool for creating business charts and is ''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(...)'' Besides having all the standard features, KD Chart(...)''

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

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

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

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

@ -2671,12 +2671,10 @@ msgstr "Schwerwiegender Fehler beim Bestimmen der Daten: "
#: dialogs/tdeselectdatabasedlg.cpp:60 #: dialogs/tdeselectdatabasedlg.cpp:60
msgid "" msgid ""
"There are no TQt SQL drivers installed in your system.\n" "There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www." "Please consult documentation for your distro and search for SQL drivers."
"trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
"Es sind keine TQt-SQL-Treiber in ihrem System verfügbar.\n" "Es sind keine TQt-SQL-Treiber in ihrem System verfügbar.\n"
"Bitte die Dokumentation der Distribution oder die TQt-Internetseite (www." "Bitte die Dokumentation der Distribution und nach SQL-Treibern suchen."
"trinitydesktop.org) konsultieren und nach SQL-Treibern suchen."
#: dialogs/tdeselectdatabasedlg.cpp:114 #: dialogs/tdeselectdatabasedlg.cpp:114
msgid "TQt SQL driver %1 is no longer installed on your system" 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: " msgstr "Fatal error in determining data: "
#: dialogs/tdeselectdatabasedlg.cpp:60 #: dialogs/tdeselectdatabasedlg.cpp:60
#, fuzzy
msgid "" msgid ""
"There are no TQt SQL drivers installed in your system.\n" "There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www." "Please consult documentation for your distro and search for SQL drivers."
"trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
"There are no Qt SQL drivers installed in your system.\n" "There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro and search for SQL drivers."
"trolltech.com) and search for SQL drivers."
#: dialogs/tdeselectdatabasedlg.cpp:114 #: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy #, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system" 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 #: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy #, fuzzy
msgid "TQt SQL driver %1 is not suported" 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 #: dialogs/tdeselectdatabasedlg.cpp:177
msgid "" msgid ""
@ -16421,7 +16418,7 @@ msgstr ""
#~ "Expressions may be helpful!!). The use of a URL means that the 'source' " #~ "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 " #~ "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 " #~ "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 " #~ "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 " #~ "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 " #~ "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' " #~ "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 " #~ "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 " #~ "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 " #~ "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 " #~ "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 " #~ "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:" msgstr "Error fatal durante la determinación de los datos:"
#: dialogs/tdeselectdatabasedlg.cpp:60 #: dialogs/tdeselectdatabasedlg.cpp:60
#, fuzzy
msgid "" msgid ""
"There are no TQt SQL drivers installed in your system.\n" "There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www." "Please consult documentation for your distro and search for SQL drivers."
"trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
"No hay manejadores de Qt SQL instalados en su sistema.\n" "No hay manejadores de TQt SQL instalados en su sistema.\n"
"Por favor, consulte la información de su distribución, o visite el sitio de " "Por favor, consulte la información de su distribución y busque por manejadores de SQL."
"Qt (www.trolltech.com) y busque por manejadores de SQL."
#: dialogs/tdeselectdatabasedlg.cpp:114 #: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy #, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system" 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 #: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy #, fuzzy
msgid "TQt SQL driver %1 is not suported" 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 #: dialogs/tdeselectdatabasedlg.cpp:177
msgid "" msgid ""

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

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

@ -2708,25 +2708,22 @@ msgid "Fatal error in determining data: "
msgstr "Erreur fatale dans la détermination des données : " msgstr "Erreur fatale dans la détermination des données : "
#: dialogs/tdeselectdatabasedlg.cpp:60 #: dialogs/tdeselectdatabasedlg.cpp:60
#, fuzzy
msgid "" msgid ""
"There are no TQt SQL drivers installed in your system.\n" "There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www." "Please consult documentation for your distro and search for SQL drivers."
"trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
"Aucun driver SQL pour Qt n'est installé sur votre système.\n" "Aucun driver SQL pour TQt n'est installé sur votre système.\n"
"Merci de consulter la documentation de votre distribution ou visitez le site " "Merci de consulter la documentation de votre distribution et cherchez les drivers SQL."
"Web Qt (www.trolltech.com) et cherchez les drivers SQL."
#: dialogs/tdeselectdatabasedlg.cpp:114 #: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy #, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system" 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 #: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy #, fuzzy
msgid "TQt SQL driver %1 is not suported" 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 #: dialogs/tdeselectdatabasedlg.cpp:177
msgid "" msgid ""
@ -15374,11 +15371,10 @@ msgstr ""
#~ msgstr "SQLite a besoin d'un nom de fichier; essayez encore ?" #~ msgstr "SQLite a besoin d'un nom de fichier; essayez encore ?"
#~ msgid "" #~ 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 " #~ "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 " #~ "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." #~ "your distro documentation and search for 'SQL drivers'.</p><h3>Database Name</h3><p>The "
#~ "com) 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 " #~ "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 " #~ "you like. SQLite has one database per file; selecting this driver opens "
#~ "the file dialog. For database types other than SQLite and MySql, the " #~ "the file dialog. For database types other than SQLite and MySql, the "
@ -15400,11 +15396,10 @@ msgstr ""
#~ "usage.</p>" #~ "usage.</p>"
#~ msgstr "" #~ msgstr ""
#~ "<h3>Type de Base de données</h3><p>Cette boîte de dialogue liste tous les " #~ "<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 " #~ "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 " #~ "dans la liste, vous devez installer le driver approprié. Regardez la "
#~ "documentation de votre distribution ou visitez le site web Qt (http://www." #~ "documentation de votre distribution et cherchez les 'drivers SQL'.</p><h3>Nom de la base de "
#~ "trolltech.com) 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 " #~ "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 " #~ "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 " #~ "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: " msgstr "Aconteceu un erro fatal ao determinar a data: "
#: dialogs/tdeselectdatabasedlg.cpp:60 #: dialogs/tdeselectdatabasedlg.cpp:60
#, fuzzy
msgid "" msgid ""
"There are no TQt SQL drivers installed in your system.\n" "There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www." "Please consult documentation for your distro and search for SQL drivers."
"trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
"Non hai controladores SQL de Qt instalados no seu sistema.\n" "Non hai controladores SQL de TQt instalados no seu sistema.\n"
"Consulte a documentación da súa distribución, ou visite o sitio web de Qt " "Consulte a documentación da súa distribución e procure controladores SQL."
"(www.trolltech.com) e procure controladores SQL."
#: dialogs/tdeselectdatabasedlg.cpp:114 #: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy #, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system" 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 #: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy #, fuzzy
msgid "TQt SQL driver %1 is not suported" 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 #: dialogs/tdeselectdatabasedlg.cpp:177
msgid "" msgid ""

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

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

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

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

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

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

@ -2659,25 +2659,22 @@ msgid "Fatal error in determining data: "
msgstr "Erro fatal determinando dados: " msgstr "Erro fatal determinando dados: "
#: dialogs/tdeselectdatabasedlg.cpp:60 #: dialogs/tdeselectdatabasedlg.cpp:60
#, fuzzy
msgid "" msgid ""
"There are no TQt SQL drivers installed in your system.\n" "There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www." "Please consult documentation for your distro and search for SQL drivers."
"trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
"Não há driver Qt para SQL no seu sistema.\n" "Não há driver TQt para SQL no seu sistema.\n"
"Por favor consulte a documentação da sua distribuição, ou visite a página " "Por favor consulte a documentação da sua distribuição e procure os drivers SQL."
"internet do Qt (www.trolltech.com) e procure os drivers SQL."
#: dialogs/tdeselectdatabasedlg.cpp:114 #: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy #, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system" 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 #: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy #, fuzzy
msgid "TQt SQL driver %1 is not suported" 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 #: dialogs/tdeselectdatabasedlg.cpp:177
msgid "" msgid ""
@ -15282,11 +15279,10 @@ msgstr ""
#~ msgstr "O SQLite necessita de um nome de arquivo; tentar novamente?" #~ msgstr "O SQLite necessita de um nome de arquivo; tentar novamente?"
#~ msgid "" #~ 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 " #~ "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 " #~ "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." #~ "your distro documentation and search for 'SQL drivers'.</p><h3>Database Name</h3><p>The "
#~ "com) 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 " #~ "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 " #~ "you like. SQLite has one database per file; selecting this driver opens "
#~ "the file dialog. For database types other than SQLite and MySql, the " #~ "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 " #~ "chapter of the KMyMoney handbook for further information on database "
#~ "usage.</p>" #~ "usage.</p>"
#~ msgstr "" #~ 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 " #~ "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á " #~ "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 " #~ "que instalar o driver apropriado. Verifique a documentação da sua "
#~ "distribuição, ou visite a página internet do Qt (http://www.trolltech." #~ "distribuição e procure por 'drivers SQL'.</p> <h3>Nome do Banco de Dados</h3> "
#~ "com) 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 " #~ "<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 " #~ "outro nome se quiser. O SQLite possui um único banco de dados por "
#~ "arquivo, assim selecionando-o será aberta a janela de abertura de " #~ "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: " msgstr "Eroare fatală la determinarea datelor: "
#: dialogs/tdeselectdatabasedlg.cpp:60 #: dialogs/tdeselectdatabasedlg.cpp:60
#, fuzzy
msgid "" msgid ""
"There are no TQt SQL drivers installed in your system.\n" "There are no TQt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the TQt web site (www." "Please consult documentation for your distro and search for SQL drivers."
"trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
"Nu există drivere Qt SQL instalate pe sistemul dumneavoastră.\n" "Nu există drivere TQt SQL instalate pe sistemul dumneavoastră.\n"
" Vă rog să consultaţi documentaţia pentru distribuţia dumneavoastră sau să " "Vă rog să consultaţi documentaţia pentru distribuţia dumneavoastră a căuta driverele SQL."
"vizitaţi site-ul web (www.trolltech.com) pentru a căuta driverele SQL."
#: dialogs/tdeselectdatabasedlg.cpp:114 #: dialogs/tdeselectdatabasedlg.cpp:114
#, fuzzy #, fuzzy
msgid "TQt SQL driver %1 is no longer installed on your system" 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 #: dialogs/tdeselectdatabasedlg.cpp:118
#, fuzzy #, fuzzy
msgid "TQt SQL driver %1 is not suported" 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 #: dialogs/tdeselectdatabasedlg.cpp:177
msgid "" msgid ""

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

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

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

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

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

Loading…
Cancel
Save