summaryrefslogtreecommitdiffstats
path: root/tde-i18n-en_GB
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-10-13 18:02:18 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-10-13 18:02:18 +0900
commit241e0082f7b9ccadaeed0ef43a1c9ebb9b4fe840 (patch)
tree327c08329d5c5910cc155d3982f2a481eeaf5307 /tde-i18n-en_GB
parent1ae0d186c941b1e1cdaae488038195ba86d89dbb (diff)
downloadtde-i18n-241e0082f7b9ccadaeed0ef43a1c9ebb9b4fe840.tar.gz
tde-i18n-241e0082f7b9ccadaeed0ef43a1c9ebb9b4fe840.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tde-i18n-en_GB')
-rw-r--r--tde-i18n-en_GB/docs/tdebase/kate/regular-expressions.docbook2
-rw-r--r--tde-i18n-en_GB/docs/tdebase/ksplashml/index.docbook62
-rw-r--r--tde-i18n-en_GB/docs/tdeedu/kstars/dcop.docbook8
-rw-r--r--tde-i18n-en_GB/docs/tdepim/kalarm/index.docbook130
-rw-r--r--tde-i18n-en_GB/messages/tdesdk/umbrello.po5
-rw-r--r--tde-i18n-en_GB/messages/tdevelop/tdevelop.po18
-rw-r--r--tde-i18n-en_GB/messages/tdewebdev/kommander.po2
7 files changed, 110 insertions, 117 deletions
diff --git a/tde-i18n-en_GB/docs/tdebase/kate/regular-expressions.docbook b/tde-i18n-en_GB/docs/tdebase/kate/regular-expressions.docbook
index 5adc38a3f0c..ba09e9c6d44 100644
--- a/tde-i18n-en_GB/docs/tdebase/kate/regular-expressions.docbook
+++ b/tde-i18n-en_GB/docs/tdebase/kate/regular-expressions.docbook
@@ -465,7 +465,7 @@ expressions of perl, nor with those of for example
<term><userinput>(?!PATTERN)</userinput> (Negative lookahead)</term>
<listitem><para>The negative lookahead prevents a possible match to be acknowledged if the following part of the searched string does match its <emphasis>PATTERN</emphasis>.</para>
-<para>The expression <userinput>const \w+\b(?!\s*&amp;)</userinput> will match at <quote>const char</quote> in the string <quote>const char* foo</quote> while it can not match <quote>const QString</quote> in <quote>const QString&amp; bar</quote> because the <quote>&amp;</quote> matches the negative lookahead assertion pattern.</para>
+<para>The expression <userinput>const \w+\b(?!\s*&amp;)</userinput> will match at <quote>const char</quote> in the string <quote>const char* foo</quote> while it can not match <quote>const TQString</quote> in <quote>const TQString&amp; bar</quote> because the <quote>&amp;</quote> matches the negative lookahead assertion pattern.</para>
</listitem>
</varlistentry>
diff --git a/tde-i18n-en_GB/docs/tdebase/ksplashml/index.docbook b/tde-i18n-en_GB/docs/tdebase/ksplashml/index.docbook
index 95349cff6ef..9614905eb37 100644
--- a/tde-i18n-en_GB/docs/tdebase/ksplashml/index.docbook
+++ b/tde-i18n-en_GB/docs/tdebase/ksplashml/index.docbook
@@ -465,7 +465,7 @@ Welcome Text = Loading KDE
<para>Before your application starts its computation intensive work, or before it starts loading plugins, &etc;, invoke &ksplash; as follows:</para>
<programlisting>DCOPClient *c = kapp-&gt;dcopClient();
-QString error;
+TQString error;
QCString KSplashName;
int pid = 0;
QStringList args;
@@ -494,8 +494,8 @@ if (kapp-&gt;startServiceByDesktopName("ksplash", args, &amp;error, &amp;KSplash
<para>Whenever you want to display a message with or without an icon, use</para>
-<programlisting>arg &lt;&lt; QString("iconName") &lt;&lt; QString("programName") &lt;&lt; QString("Some description");
- if (!(c-&gt;send(KSplashName, "KSplashIface", "programStarted(QString,QString,QString)", data))
+<programlisting>arg &lt;&lt; TQString("iconName") &lt;&lt; TQString("programName") &lt;&lt; TQString("Some description");
+ if (!(c-&gt;send(KSplashName, "KSplashIface", "programStarted(TQString,TQString,TQString)", data))
{
// Some error processing here.
}
@@ -560,7 +560,7 @@ X-KSplash-ObjectName=Theme2k
<listitem><para>Plugin classes should provide a <literal>static</literal> function called <function>names</function> that returns a list of names by which it can be invoked.</para></listitem>
<listitem><para>If the plugin can be configured in the control centre module, it should provide a <literal>ThemeEngineConfig</literal>-based class for the configuration.</para></listitem>
<listitem><para>Plugin classes must override at least one of the virtual functions <function>slotSetText</function>, <function>slotSetPixmap</function>, <function>slotUpdateProgress</function> and <function>slotUpdateSteps</function> to make it usable.</para></listitem>
-<listitem><para>The constructor should take the form <literal>ThemeEngine( QWidget *parent, const char *name, const QStringList &amp;args )</literal> so that it can be used with <classname>KGenericFactory</classname>.</para></listitem>
+<listitem><para>The constructor should take the form <literal>ThemeEngine( TQWidget *parent, const char *name, const QStringList &amp;args )</literal> so that it can be used with <classname>KGenericFactory</classname>.</para></listitem>
</orderedlist>
<para>The last requirement may seem complicated, but, as we will see later, by adding a single line to your source files, you can usually ignore it.</para>
</sect1>
@@ -593,11 +593,11 @@ class Theme2k: public ThemeEngine
{
TQ_OBJECT
public:
- Theme2k( QWidget *, const char *, const QStringList&amp; );
+ Theme2k( TQWidget *, const char *, const QStringList&amp; );
- inline const QString name()
+ inline const TQString name()
{
- return( QString("KSplash2k") );
+ return( TQString("KSplash2k") );
}
inline const KDialogBase *config( TDEConfig *kc )
{
@@ -614,7 +614,7 @@ public:
};
public slots:
- inline void slotSetText( const QString&amp; s )
+ inline void slotSetText( const TQString&amp; s )
{
if( mText &amp;&amp; mText-&gt;text() != s ) mText-&gt;setText( s );
};
@@ -625,15 +625,15 @@ private:
QLabel *mText;
RotWidget *mRotator;
- QColor mTBgColor, mTFgColor, mRotColor1, mRotColor2, mStatusColor;
+ TQColor mTBgColor, mTFgColor, mRotColor1, mRotColor2, mStatusColor;
int mRotSpeed;
- QString mWndTitle, mLogoFile;
+ TQString mWndTitle, mLogoFile;
};
#endif
</programlisting>
</example>
-<para>Let us analyse the listing above. The <classname>Theme2k</classname> class satisfies the naming conventions, and is inherited from <classname>ThemeEngine</classname>. It provides a <methodname>Theme2k::names()</methodname>, and has a constructor that takes the required parameters: <function>Theme2k( QWidget *, const char *, const QStringList&amp; );</function> and also provides a simple <methodname>Theme2k::slotSetText()</methodname> method. For the moment, do not worry about the <classname>RotWidget</classname> class. It is a small widget that provides some eye candy for the user. Our plugin is very simple and does not display any icons or show a progressbar. If you would like to display icons, override the <function>slotSetPixmap</function> function. Similar functions exist for setting the progressbar range (<function>slotUpdateSteps</function>) and incrementing(<function>slotUpdateProgress</function>) the current step. </para>
+<para>Let us analyse the listing above. The <classname>Theme2k</classname> class satisfies the naming conventions, and is inherited from <classname>ThemeEngine</classname>. It provides a <methodname>Theme2k::names()</methodname>, and has a constructor that takes the required parameters: <function>Theme2k( TQWidget *, const char *, const QStringList&amp; );</function> and also provides a simple <methodname>Theme2k::slotSetText()</methodname> method. For the moment, do not worry about the <classname>RotWidget</classname> class. It is a small widget that provides some eye candy for the user. Our plugin is very simple and does not display any icons or show a progressbar. If you would like to display icons, override the <function>slotSetPixmap</function> function. Similar functions exist for setting the progressbar range (<function>slotUpdateSteps</function>) and incrementing(<function>slotUpdateProgress</function>) the current step. </para>
</sect1>
<sect1 id="Implementation">
<title>Implementation of the plugin</title>
@@ -646,7 +646,7 @@ private:
<para>The macro <constant>K_EXPORT_COMPONENT_FACTORY</constant> is declared in <filename>kgenericfactory.h</filename>. Onwards to the constructor! Since this is a very simple plugin, the constructor is pretty straightforward.</para>
<example>
<title>Plugin constructor</title>
-<programlisting>Theme2k::Theme2k( QWidget *parent, const char *name, const QStringList &amp;args )
+<programlisting>Theme2k::Theme2k( TQWidget *parent, const char *name, const QStringList &amp;args )
:ThemeEngine( parent, name, args )
{
readSettings();
@@ -666,23 +666,23 @@ private:
if( !cfg )
return;
- cfg-&gt;setGroup( QString("KSplash Theme: %1").arg(mTheme-&gt;theme()) );
+ cfg-&gt;setGroup( TQString("KSplash Theme: %1").arg(mTheme-&gt;theme()) );
- QColor DefaultTBgColor( Qt::darkBlue );
- QColor DefaultTFgColor( Qt::white );
+ TQColor DefaultTBgColor( Qt::darkBlue );
+ TQColor DefaultTFgColor( Qt::white );
mTBgColor = cfg-&gt;readColorEntry( "Title Background Color", &amp;DefaultTBgColor );
mTFgColor = cfg-&gt;readColorEntry( "Title Foreground Color", &amp;DefaultTFgColor );
mStatusColor = cfg-&gt;readColorEntry("Status Text Color", &amp;mTBgColor );
- QColor DefaultRot1( Qt::darkBlue );
- QColor DefaultRot2( Qt::cyan );
+ TQColor DefaultRot1( Qt::darkBlue );
+ TQColor DefaultRot2( Qt::cyan );
mRotColor1 = cfg-&gt;readColorEntry( "Rotator Color 1", &amp;DefaultRot1 );
mRotColor2 = cfg-&gt;readColorEntry( "Rotator Color 2", &amp;DefaultRot2 );
mRotSpeed = cfg-&gt;readNumEntry( "Rotator Speed", 30 );
mWndTitle = cfg-&gt;readEntry( "Window Title", i18n("Please wait...") );
- mLogoFile = cfg-&gt;readEntry( "Logo File", QString::null );
+ mLogoFile = cfg-&gt;readEntry( "Logo File", TQString::null );
}
</programlisting>
</example>
@@ -794,7 +794,7 @@ K_EXPORT_COMPONENT_FACTORY( ksplash2k, KGenericFactory&lt;Theme2k&gt; );
Cfg2k::Cfg2k( TDEConfig * )
{}
-Theme2k::Theme2k( QWidget *parent, const char *name, const QStringList &amp;args )
+Theme2k::Theme2k( TQWidget *parent, const char *name, const QStringList &amp;args )
:ThemeEngine( parent, name, args )
{
readSettings();
@@ -817,7 +817,7 @@ void Theme2k::initUi()
QLabel *logo = new QLabel( vbox );
logo-&gt;setPalette( Qt::white );
- QString px( locate( "appdata", mTheme-&gt;themeDir() + (mLogoFile.isNull()?QString("/Logo.png"):mLogoFile) ) );
+ TQString px( locate( "appdata", mTheme-&gt;themeDir() + (mLogoFile.isNull()?TQString("/Logo.png"):mLogoFile) ) );
if (px.isNull())
px = locate("appdata","Themes/Default/splash_top.png");
if( !px.isNull() )
@@ -858,23 +858,23 @@ void Theme2k::readSettings()
if( !cfg )
return;
- cfg-&gt;setGroup( QString("KSplash Theme: %1").arg(mTheme-&gt;theme()) );
+ cfg-&gt;setGroup( TQString("KSplash Theme: %1").arg(mTheme-&gt;theme()) );
- QColor DefaultTBgColor( Qt::darkBlue );
- QColor DefaultTFgColor( Qt::white );
+ TQColor DefaultTBgColor( Qt::darkBlue );
+ TQColor DefaultTFgColor( Qt::white );
mTBgColor = cfg-&gt;readColorEntry( "Title Background Color", &amp;DefaultTBgColor );
mTFgColor = cfg-&gt;readColorEntry( "Title Foreground Color", &amp;DefaultTFgColor );
mStatusColor = cfg-&gt;readColorEntry("Status Text Color", &amp;mTBgColor );
- QColor DefaultRot1( Qt::darkBlue );
- QColor DefaultRot2( Qt::cyan );
+ TQColor DefaultRot1( Qt::darkBlue );
+ TQColor DefaultRot2( Qt::cyan );
mRotColor1 = cfg-&gt;readColorEntry( "Rotator Color 1", &amp;DefaultRot1 );
mRotColor2 = cfg-&gt;readColorEntry( "Rotator Color 2", &amp;DefaultRot2 );
mRotSpeed = cfg-&gt;readNumEntry( "Rotator Speed", 30 );
mWndTitle = cfg-&gt;readEntry( "Window Title", i18n("Please wait...") );
- mLogoFile = cfg-&gt;readEntry( "Logo File", QString::null );
+ mLogoFile = cfg-&gt;readEntry( "Logo File", TQString::null );
}
</programlisting>
</sect1>
@@ -893,11 +893,11 @@ void Theme2k::readSettings()
/**
* @short Display a rotating-gradient widget.
*/
-class RotWidget: public QWidget
+class RotWidget: public TQWidget
{
TQ_OBJECT
public:
- RotWidget( QWidget *, const QColor&amp;, const QColor&amp;, int );
+ RotWidget( TQWidget *, const TQColor&amp;, const TQColor&amp;, int );
~RotWidget();
private slots:
@@ -908,7 +908,7 @@ protected:
void paintEvent( QPaintEvent * );
void resizeEvent( QResizeEvent * );
- QColor m_color1, m_color2;
+ TQColor m_color1, m_color2;
int m_step, m_speed;
QTimer *m_stepTimer;
@@ -931,8 +931,8 @@ protected:
#include "rotwidget.h"
#include "rotwidget.moc"
-RotWidget::RotWidget( QWidget *parent, const QColor&amp; c1, const QColor&amp; c2, int sp )
- :QWidget(parent), m_color1(c1), m_color2(c2), m_step(0), m_speed(sp)
+RotWidget::RotWidget( TQWidget *parent, const TQColor&amp; c1, const TQColor&amp; c2, int sp )
+ :TQWidget(parent), m_color1(c1), m_color2(c2), m_step(0), m_speed(sp)
{
if( (m_speed &lt;= 0) || (m_speed &gt; 20) )
m_speed = 1;
diff --git a/tde-i18n-en_GB/docs/tdeedu/kstars/dcop.docbook b/tde-i18n-en_GB/docs/tdeedu/kstars/dcop.docbook
index e70a31da1da..897b6f997d0 100644
--- a/tde-i18n-en_GB/docs/tdeedu/kstars/dcop.docbook
+++ b/tde-i18n-en_GB/docs/tdeedu/kstars/dcop.docbook
@@ -6,7 +6,7 @@
<sect1 id="dcop-interface">
<title>DCOP Functions</title>
<para>The &kstars; <abbrev>DCOP</abbrev> Interface includes the following functions: <itemizedlist>
-<listitem><para><function> lookTowards( const QString direction )</function>: Point the display focus in a direction specified by the argument. This can be the name of any object in the sky, or one of the following directional words or abbreviations: zenith (or z), north (n), northeast (ne), east (e), southeast (se), south (s), southwest(sw), west(w), northwest (nw). </para></listitem>
+<listitem><para><function> lookTowards( const TQString direction )</function>: Point the display focus in a direction specified by the argument. This can be the name of any object in the sky, or one of the following directional words or abbreviations: zenith (or z), north (n), northeast (ne), east (e), southeast (se), south (s), southwest(sw), west(w), northwest (nw). </para></listitem>
<listitem><para><function> setRaDec( double ra, double dec )</function>: Point the display focus at the specified equatorial coordinates. </para></listitem>
@@ -22,13 +22,13 @@
<listitem><para><function> waitFor( double t )</function>: Pause for t seconds before continuing with subsequent script commands. </para></listitem>
-<listitem><para><function> waitForKey( const QString k )</function>: Halt the script execution until the user presses the specified key. At this point, you cannot specify combination keystrokes (such as <keycombo action="simul">&Ctrl;<keycap>C</keycap></keycombo>); just use simple keys. You can type <quote>space</quote> to indicate the spacebar. </para></listitem>
+<listitem><para><function> waitForKey( const TQString k )</function>: Halt the script execution until the user presses the specified key. At this point, you cannot specify combination keystrokes (such as <keycombo action="simul">&Ctrl;<keycap>C</keycap></keycombo>); just use simple keys. You can type <quote>space</quote> to indicate the spacebar. </para></listitem>
<listitem><para><function> setTracking( bool track )</function>: Toggle whether tracking mode is engaged. </para></listitem>
-<listitem><para><function> changeViewOption( const QString option, const QString value )</function>: Adjust a view option. There are dozens and dozens of options available; basically everything you can change in the <guilabel>Configure &kstars; Window</guilabel> can be changed here as well. The first argument is the name of the option (the names are taken from the <filename>kstarsrc</filename> configuration file), and the second argument is the desired value. The argument parser is designed to be robust, so if you accidentally send it bad data it should fail gracefully. </para></listitem>
+<listitem><para><function> changeViewOption( const TQString option, const TQString value )</function>: Adjust a view option. There are dozens and dozens of options available; basically everything you can change in the <guilabel>Configure &kstars; Window</guilabel> can be changed here as well. The first argument is the name of the option (the names are taken from the <filename>kstarsrc</filename> configuration file), and the second argument is the desired value. The argument parser is designed to be robust, so if you accidentally send it bad data it should fail gracefully. </para></listitem>
-<listitem><para><function> setGeoLocation( const QString city, const QString province, const QString country )</function>: Change the observing location to the specified city. If no city matching the argument strings is found, then nothing happens. </para></listitem>
+<listitem><para><function> setGeoLocation( const TQString city, const TQString province, const TQString country )</function>: Change the observing location to the specified city. If no city matching the argument strings is found, then nothing happens. </para></listitem>
<listitem><para><function> stop()</function> [clock]: Halt the simulation clock. </para></listitem>
diff --git a/tde-i18n-en_GB/docs/tdepim/kalarm/index.docbook b/tde-i18n-en_GB/docs/tdepim/kalarm/index.docbook
index c0cdc64161f..2cd1eb8519d 100644
--- a/tde-i18n-en_GB/docs/tdepim/kalarm/index.docbook
+++ b/tde-i18n-en_GB/docs/tdepim/kalarm/index.docbook
@@ -2708,8 +2708,8 @@ at some future date.</para></note>
</refnamediv>
<refsynopsisdiv>
<synopsis>
-void cancelEvent(const QString&amp; <replaceable>calendarFile</replaceable>,
- const QString&amp; <replaceable>eventID</replaceable>)
+void cancelEvent(const TQString&amp; <replaceable>calendarFile</replaceable>,
+ const TQString&amp; <replaceable>eventID</replaceable>)
</synopsis>
<refsect2>
@@ -2759,8 +2759,8 @@ ignored.</para></note>
</refnamediv>
<refsynopsisdiv>
<synopsis>
-void triggerEvent(const QString&amp; <replaceable>calendarFile</replaceable>,
- const QString&amp; <replaceable>eventID</replaceable>)
+void triggerEvent(const TQString&amp; <replaceable>calendarFile</replaceable>,
+ const TQString&amp; <replaceable>eventID</replaceable>)
</synopsis>
<refsect2>
@@ -2817,8 +2817,8 @@ ignored.</para></note>
</refnamediv>
<refsynopsisdiv>
<synopsis>
-void handleEvent(const QString&amp; <replaceable>calendarFile</replaceable>,
- const QString&amp; <replaceable>eventID</replaceable>)
+void handleEvent(const TQString&amp; <replaceable>calendarFile</replaceable>,
+ const TQString&amp; <replaceable>eventID</replaceable>)
</synopsis>
<refsect2>
@@ -2884,26 +2884,26 @@ ignored.</para></note>
</refnamediv>
<refsynopsisdiv>
<synopsis>
-bool scheduleMessage(const QString&amp; <replaceable>message</replaceable>,
- const QString&amp; <replaceable>dateTime</replaceable>,
+bool scheduleMessage(const TQString&amp; <replaceable>message</replaceable>,
+ const TQString&amp; <replaceable>dateTime</replaceable>,
int <replaceable>lateCancel</replaceable>,
int <replaceable>flags</replaceable>,
- const QString&amp; <replaceable>bgColour</replaceable>,
- const QString&amp; <replaceable>fgColour</replaceable>,
- const QString&amp; <replaceable>font</replaceable>,
+ const TQString&amp; <replaceable>bgColour</replaceable>,
+ const TQString&amp; <replaceable>fgColour</replaceable>,
+ const TQString&amp; <replaceable>font</replaceable>,
const KURL&amp; <replaceable>audioURL</replaceable>,
int <replaceable>reminder</replaceable>,
- const QString&amp; <replaceable>recurrence</replaceable>,
+ const TQString&amp; <replaceable>recurrence</replaceable>,
int <replaceable>subRepeatInterval</replaceable>,
int <replaceable>subRepeatCount</replaceable>)
</synopsis>
<synopsis>
-bool scheduleMessage(const QString&amp; <replaceable>message</replaceable>,
- const QString&amp; <replaceable>dateTime</replaceable>,
+bool scheduleMessage(const TQString&amp; <replaceable>message</replaceable>,
+ const TQString&amp; <replaceable>dateTime</replaceable>,
int <replaceable>lateCancel</replaceable>, int <replaceable>flags</replaceable>,
- const QString&amp; <replaceable>bgColour</replaceable>,
- const QString&amp; <replaceable>fgColour</replaceable>,
- const QString&amp; <replaceable>font</replaceable>,
+ const TQString&amp; <replaceable>bgColour</replaceable>,
+ const TQString&amp; <replaceable>fgColour</replaceable>,
+ const TQString&amp; <replaceable>font</replaceable>,
const KURL&amp; <replaceable>audioURL</replaceable>,
int <replaceable>reminder</replaceable>,
int <replaceable>recurType</replaceable>,
@@ -2911,18 +2911,18 @@ bool scheduleMessage(const QString&amp; <replaceable>message</replaceable>,
int <replaceable>recurCount</replaceable>)
</synopsis>
<synopsis>
-bool scheduleMessage(const QString&amp; <replaceable>message</replaceable>,
- const QString&amp; <replaceable>dateTime</replaceable>,
+bool scheduleMessage(const TQString&amp; <replaceable>message</replaceable>,
+ const TQString&amp; <replaceable>dateTime</replaceable>,
int <replaceable>lateCancel</replaceable>,
int <replaceable>flags</replaceable>,
- const QString&amp; <replaceable>bgColour</replaceable>,
- const QString&amp; <replaceable>fgColour</replaceable>,
- const QString&amp; <replaceable>font</replaceable>,
+ const TQString&amp; <replaceable>bgColour</replaceable>,
+ const TQString&amp; <replaceable>fgColour</replaceable>,
+ const TQString&amp; <replaceable>font</replaceable>,
const KURL&amp; <replaceable>audioURL</replaceable>,
int <replaceable>reminder</replaceable>,
int <replaceable>recurType</replaceable>,
int <replaceable>recurInterval</replaceable>,
- const QString&amp; <replaceable>endDateTime</replaceable>)
+ const TQString&amp; <replaceable>endDateTime</replaceable>)
</synopsis>
<refsect2>
@@ -2977,10 +2977,10 @@ applicable to message alarms.</para>
<listitem>
<para>Specifies the background colour for displaying the message. The
string may be in the format <quote>#RRGGBB</quote> (as returned by
-<methodname>QColor::name()</methodname>) where RR, GG and BB are
+<methodname>TQColor::name()</methodname>) where RR, GG and BB are
two-digit hexadecimal values for red, green and blue. Alternatively
the string may be in any of the other formats accepted by
-<methodname>QColor::setNamedColour()</methodname>, such as a name from
+<methodname>TQColor::setNamedColour()</methodname>, such as a name from
the X colour database (&eg; <quote>red</quote> or
<quote>steelblue</quote>). Set the string to null to specify the
current default background colour.</para>
@@ -3132,22 +3132,22 @@ text or image file.</refpurpose>
<refsynopsisdiv>
<synopsis>
bool scheduleFile(const KURL&amp; <replaceable>URL</replaceable>,
- const QString&amp; <replaceable>dateTime</replaceable>,
+ const TQString&amp; <replaceable>dateTime</replaceable>,
int <replaceable>lateCancel</replaceable>,
int <replaceable>flags</replaceable>,
- const QString&amp; <replaceable>bgColour</replaceable>,
+ const TQString&amp; <replaceable>bgColour</replaceable>,
const KURL&amp; <replaceable>audioURL</replaceable>,
int <replaceable>reminder</replaceable>,
- const QString&amp; <replaceable>recurrence</replaceable>,
+ const TQString&amp; <replaceable>recurrence</replaceable>,
int <replaceable>subRepeatInterval</replaceable>,
int <replaceable>subRepeatCount</replaceable>)
</synopsis>
<synopsis>
bool scheduleFile(const KURL&amp; <replaceable>URL</replaceable>,
- const QString&amp; <replaceable>dateTime</replaceable>,
+ const TQString&amp; <replaceable>dateTime</replaceable>,
int <replaceable>lateCancel</replaceable>,
int <replaceable>flags</replaceable>,
- const QString&amp; <replaceable>bgColour</replaceable>,
+ const TQString&amp; <replaceable>bgColour</replaceable>,
const KURL&amp; <replaceable>audioURL</replaceable>,
int <replaceable>reminder</replaceable>,
int <replaceable>recurType</replaceable>,
@@ -3156,15 +3156,15 @@ bool scheduleFile(const KURL&amp; <replaceable>URL</replaceable>,
</synopsis>
<synopsis>
bool scheduleFile(const KURL&amp; <replaceable>URL</replaceable>,
- const QString&amp; <replaceable>dateTime</replaceable>,
+ const TQString&amp; <replaceable>dateTime</replaceable>,
int <replaceable>lateCancel</replaceable>,
int <replaceable>flags</replaceable>,
- const QString&amp; <replaceable>bgColour</replaceable>,
+ const TQString&amp; <replaceable>bgColour</replaceable>,
const KURL&amp; <replaceable>audioURL</replaceable>,
int <replaceable>reminder</replaceable>,
int <replaceable>recurType</replaceable>,
int <replaceable>recurInterval</replaceable>,
- const QString&amp; <replaceable>endDateTime</replaceable>)
+ const TQString&amp; <replaceable>endDateTime</replaceable>)
</synopsis>
<refsect2>
@@ -3220,10 +3220,10 @@ applicable to file alarms.</para>
<listitem>
<para>Specifies the background colour for displaying the file. The
string may be in the format <quote>#RRGGBB</quote> (as returned by
-<methodname>QColor::name()</methodname>) where RR, GG and BB are
+<methodname>TQColor::name()</methodname>) where RR, GG and BB are
two-digit hexadecimal values for red, green and blue. Alternatively
the string may be in any of the other formats accepted by
-<methodname>QColor::setNamedColour()</methodname>, such as a name from
+<methodname>TQColor::setNamedColour()</methodname>, such as a name from
the X colour database (&eg; <quote>red</quote> or
<quote>steelblue</quote>). Set the string to null to specify the
current default background colour.</para>
@@ -3346,17 +3346,17 @@ command.</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
-bool scheduleCommand(const QString&amp; <replaceable>commandLine</replaceable>,
- const QString&amp; <replaceable>dateTime</replaceable>,
+bool scheduleCommand(const TQString&amp; <replaceable>commandLine</replaceable>,
+ const TQString&amp; <replaceable>dateTime</replaceable>,
int <replaceable>lateCancel</replaceable>,
int <replaceable>flags</replaceable>,
- const QString&amp; <replaceable>recurrence</replaceable>,
+ const TQString&amp; <replaceable>recurrence</replaceable>,
int <replaceable>subRepeatInterval</replaceable>,
int <replaceable>subRepeatCount</replaceable>)
</synopsis>
<synopsis>
-bool scheduleCommand(const QString&amp; <replaceable>commandLine</replaceable>,
- const QString&amp; <replaceable>dateTime</replaceable>,
+bool scheduleCommand(const TQString&amp; <replaceable>commandLine</replaceable>,
+ const TQString&amp; <replaceable>dateTime</replaceable>,
int <replaceable>lateCancel</replaceable>,
int <replaceable>flags</replaceable>,
int <replaceable>recurType</replaceable>,
@@ -3364,13 +3364,13 @@ bool scheduleCommand(const QString&amp; <replaceable>commandLine</replaceable>,
int <replaceable>recurCount</replaceable>)
</synopsis>
<synopsis>
-bool scheduleCommand(const QString&amp; <replaceable>commandLine</replaceable>,
- const QString&amp; <replaceable>dateTime</replaceable>,
+bool scheduleCommand(const TQString&amp; <replaceable>commandLine</replaceable>,
+ const TQString&amp; <replaceable>dateTime</replaceable>,
int <replaceable>lateCancel</replaceable>,
int <replaceable>flags</replaceable>,
int <replaceable>recurType</replaceable>,
int <replaceable>recurInterval</replaceable>,
- const QString&amp; <replaceable>endDateTime</replaceable>)
+ const TQString&amp; <replaceable>endDateTime</replaceable>)
</synopsis>
<refsect2>
@@ -3520,25 +3520,25 @@ parameters, its usage is identical to
</refnamediv>
<refsynopsisdiv>
<synopsis>
-bool scheduleEmail(const QString&amp; <replaceable>fromID</replaceable>,
- const QString&amp; <replaceable>addresses</replaceable>,
- const QString&amp; <replaceable>subject</replaceable>,
- const QString&amp; <replaceable>message</replaceable>,
- const QString&amp; <replaceable>attachments</replaceable>,
- const QString&amp; <replaceable>dateTime</replaceable>,
+bool scheduleEmail(const TQString&amp; <replaceable>fromID</replaceable>,
+ const TQString&amp; <replaceable>addresses</replaceable>,
+ const TQString&amp; <replaceable>subject</replaceable>,
+ const TQString&amp; <replaceable>message</replaceable>,
+ const TQString&amp; <replaceable>attachments</replaceable>,
+ const TQString&amp; <replaceable>dateTime</replaceable>,
int <replaceable>lateCancel</replaceable>,
int <replaceable>flags</replaceable>,
- const QString&amp; <replaceable>recurrence</replaceable>,
+ const TQString&amp; <replaceable>recurrence</replaceable>,
int <replaceable>subRepeatInterval</replaceable>,
int <replaceable>subRepeatCount</replaceable>)
</synopsis>
<synopsis>
-bool scheduleEmail(const QString&amp; <replaceable>fromID</replaceable>,
- const QString&amp; <replaceable>addresses</replaceable>,
- const QString&amp; <replaceable>subject</replaceable>,
- const QString&amp; <replaceable>message</replaceable>,
- const QString&amp; <replaceable>attachments</replaceable>,
- const QString&amp; <replaceable>dateTime</replaceable>,
+bool scheduleEmail(const TQString&amp; <replaceable>fromID</replaceable>,
+ const TQString&amp; <replaceable>addresses</replaceable>,
+ const TQString&amp; <replaceable>subject</replaceable>,
+ const TQString&amp; <replaceable>message</replaceable>,
+ const TQString&amp; <replaceable>attachments</replaceable>,
+ const TQString&amp; <replaceable>dateTime</replaceable>,
int <replaceable>lateCancel</replaceable>,
int <replaceable>flags</replaceable>,
int <replaceable>recurType</replaceable>,
@@ -3546,17 +3546,17 @@ bool scheduleEmail(const QString&amp; <replaceable>fromID</replaceable>,
int <replaceable>recurCount</replaceable>)
</synopsis>
<synopsis>
-bool scheduleEmail(const QString&amp; <replaceable>fromID</replaceable>,
- const QString&amp; <replaceable>addresses</replaceable>,
- const QString&amp; <replaceable>subject</replaceable>,
- const QString&amp; <replaceable>message</replaceable>,
- const QString&amp; <replaceable>attachments</replaceable>,
- const QString&amp; <replaceable>dateTime</replaceable>,
+bool scheduleEmail(const TQString&amp; <replaceable>fromID</replaceable>,
+ const TQString&amp; <replaceable>addresses</replaceable>,
+ const TQString&amp; <replaceable>subject</replaceable>,
+ const TQString&amp; <replaceable>message</replaceable>,
+ const TQString&amp; <replaceable>attachments</replaceable>,
+ const TQString&amp; <replaceable>dateTime</replaceable>,
int <replaceable>lateCancel</replaceable>,
nt <replaceable>flags</replaceable>,
int <replaceable>recurType</replaceable>,
int <replaceable>recurInterval</replaceable>,
- const QString&amp; <replaceable>endTime</replaceable>)
+ const TQString&amp; <replaceable>endTime</replaceable>)
</synopsis>
<refsect2>
@@ -3736,7 +3736,7 @@ dialogue</link> to edit an alarm.</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
-bool edit(const QString&amp; <replaceable>eventID</replaceable>)
+bool edit(const TQString&amp; <replaceable>eventID</replaceable>)
</synopsis>
<refsect2>
@@ -3780,7 +3780,7 @@ dialogue</link> to edit a new alarm.</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
-bool editNew(const QString&amp; <replaceable>templateName</replaceable>)
+bool editNew(const TQString&amp; <replaceable>templateName</replaceable>)
</synopsis>
<refsect2>
diff --git a/tde-i18n-en_GB/messages/tdesdk/umbrello.po b/tde-i18n-en_GB/messages/tdesdk/umbrello.po
index 822713cb32b..db13b6530f5 100644
--- a/tde-i18n-en_GB/messages/tdesdk/umbrello.po
+++ b/tde-i18n-en_GB/messages/tdesdk/umbrello.po
@@ -3205,10 +3205,9 @@ msgid "..."
msgstr "..."
#: codegenerators/cppcodegenerationformbase.ui:273
-#, fuzzy, no-c-format
-#| msgid "QString"
+#, no-c-format
msgid "TQString"
-msgstr "QString"
+msgstr "TQString"
#: codegenerators/cppcodegenerationformbase.ui:274
#: codegenerators/cppcodegenerationformbase.ui:398
diff --git a/tde-i18n-en_GB/messages/tdevelop/tdevelop.po b/tde-i18n-en_GB/messages/tdevelop/tdevelop.po
index 4103abef53c..7f23982380f 100644
--- a/tde-i18n-en_GB/messages/tdevelop/tdevelop.po
+++ b/tde-i18n-en_GB/messages/tdevelop/tdevelop.po
@@ -5689,7 +5689,7 @@ msgid ""
"<p><b>TQWidget::%1</b></p><p>There is no documentation available for this "
"property.</p>"
msgstr ""
-"<p><b>QWidget::%1</b></p><p>There is no documentation available for this "
+"<p><b>TQWidget::%1</b></p><p>There is no documentation available for this "
"property.</p>"
#: kdevdesigner/designer/propertyeditor.cpp:4027
@@ -7141,7 +7141,7 @@ msgid ""
"Multiple inheritance requires TQObject derivative to be first and unique in "
"base class list."
msgstr ""
-"Multiple inheritance requires QObject derivative to be first and unique in "
+"Multiple inheritance requires TQObject derivative to be first and unique in "
"base class list."
#: languages/cpp/cppnewclassdlg.cpp:851 languages/cpp/cppnewclassdlg.cpp:854
@@ -23381,13 +23381,7 @@ msgid "Inheritance Type"
msgstr "Inheritance Type"
#: languages/cpp/cppnewclassdlgbase.ui:416
-#, fuzzy, no-c-format
-#| msgid ""
-#| "Insert the base class which your new class will be derived from. If you "
-#| "have checked 'Generate QWidget child class' the new class will be derived "
-#| "from QWidget. If no base class is named, the new class will not have a "
-#| "parent class. You can also use template classes here (like BaseClass<int, "
-#| "int>)"
+#, no-c-format
msgid ""
"Insert the base class which your new class will be derived from. If you have "
"checked 'Generate TQWidget child class' the new class will be derived from "
@@ -23395,8 +23389,8 @@ msgid ""
"class. You can also use template classes here (like BaseClass<int, int>)"
msgstr ""
"Insert the base class which your new class will be derived from. If you have "
-"ticked 'Generate QWidget child class' the new class will be derived from "
-"QWidget. If no base class is named, the new class will not have a parent "
+"ticked 'Generate TQWidget child class' the new class will be derived from "
+"TQWidget. If no base class is named, the new class will not have a parent "
"class. You can also use template classes here (like BaseClass<int, int>)"
#: languages/cpp/cppnewclassdlgbase.ui:489
@@ -23789,7 +23783,7 @@ msgstr ""
"Displaying static members makes GDB slower in\n"
"producing data within TDE and Qt.\n"
"It may change the \"signature\" of the data\n"
-"which QString and friends rely on,\n"
+"which TQString and friends rely on,\n"
"but if you need to debug into these values then\n"
"tick this option."
diff --git a/tde-i18n-en_GB/messages/tdewebdev/kommander.po b/tde-i18n-en_GB/messages/tdewebdev/kommander.po
index e8965b98087..876fe91d408 100644
--- a/tde-i18n-en_GB/messages/tdewebdev/kommander.po
+++ b/tde-i18n-en_GB/messages/tdewebdev/kommander.po
@@ -1589,7 +1589,7 @@ msgid ""
"<p><b>TQWidget::%1</b></p><p>There is no documentation available for this "
"property.</p>"
msgstr ""
-"<p><b>QWidget::%1</b></p><p>There is no documentation available for this "
+"<p><b>TQWidget::%1</b></p><p>There is no documentation available for this "
"property.</p>"
#: editor/propertyeditor.cpp:3391