diff options
Diffstat (limited to 'tde-i18n-en_GB')
-rw-r--r-- | tde-i18n-en_GB/docs/tdebase/kate/regular-expressions.docbook | 2 | ||||
-rw-r--r-- | tde-i18n-en_GB/docs/tdebase/ksplashml/index.docbook | 62 | ||||
-rw-r--r-- | tde-i18n-en_GB/docs/tdeedu/kstars/dcop.docbook | 8 | ||||
-rw-r--r-- | tde-i18n-en_GB/docs/tdepim/kalarm/index.docbook | 130 | ||||
-rw-r--r-- | tde-i18n-en_GB/messages/tdesdk/umbrello.po | 4 | ||||
-rw-r--r-- | tde-i18n-en_GB/messages/tdevelop/tdevelop.po | 8 |
6 files changed, 107 insertions, 107 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*&)</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& bar</quote> because the <quote>&</quote> matches the negative lookahead assertion pattern.</para> +<para>The expression <userinput>const \w+\b(?!\s*&)</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& bar</quote> because the <quote>&</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->dcopClient(); -QString error; +TQString error; QCString KSplashName; int pid = 0; QStringList args; @@ -494,8 +494,8 @@ if (kapp->startServiceByDesktopName("ksplash", args, &error, &KSplash <para>Whenever you want to display a message with or without an icon, use</para> -<programlisting>arg << QString("iconName") << QString("programName") << QString("Some description"); - if (!(c->send(KSplashName, "KSplashIface", "programStarted(QString,QString,QString)", data)) +<programlisting>arg << TQString("iconName") << TQString("programName") << TQString("Some description"); + if (!(c->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 &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 &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& ); + Theme2k( TQWidget *, const char *, const QStringList& ); - 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& s ) + inline void slotSetText( const TQString& s ) { if( mText && mText->text() != s ) mText->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& );</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& );</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 &args ) +<programlisting>Theme2k::Theme2k( TQWidget *parent, const char *name, const QStringList &args ) :ThemeEngine( parent, name, args ) { readSettings(); @@ -666,23 +666,23 @@ private: if( !cfg ) return; - cfg->setGroup( QString("KSplash Theme: %1").arg(mTheme->theme()) ); + cfg->setGroup( TQString("KSplash Theme: %1").arg(mTheme->theme()) ); - QColor DefaultTBgColor( Qt::darkBlue ); - QColor DefaultTFgColor( Qt::white ); + TQColor DefaultTBgColor( Qt::darkBlue ); + TQColor DefaultTFgColor( Qt::white ); mTBgColor = cfg->readColorEntry( "Title Background Color", &DefaultTBgColor ); mTFgColor = cfg->readColorEntry( "Title Foreground Color", &DefaultTFgColor ); mStatusColor = cfg->readColorEntry("Status Text Color", &mTBgColor ); - QColor DefaultRot1( Qt::darkBlue ); - QColor DefaultRot2( Qt::cyan ); + TQColor DefaultRot1( Qt::darkBlue ); + TQColor DefaultRot2( Qt::cyan ); mRotColor1 = cfg->readColorEntry( "Rotator Color 1", &DefaultRot1 ); mRotColor2 = cfg->readColorEntry( "Rotator Color 2", &DefaultRot2 ); mRotSpeed = cfg->readNumEntry( "Rotator Speed", 30 ); mWndTitle = cfg->readEntry( "Window Title", i18n("Please wait...") ); - mLogoFile = cfg->readEntry( "Logo File", QString::null ); + mLogoFile = cfg->readEntry( "Logo File", TQString::null ); } </programlisting> </example> @@ -794,7 +794,7 @@ K_EXPORT_COMPONENT_FACTORY( ksplash2k, KGenericFactory<Theme2k> ); Cfg2k::Cfg2k( TDEConfig * ) {} -Theme2k::Theme2k( QWidget *parent, const char *name, const QStringList &args ) +Theme2k::Theme2k( TQWidget *parent, const char *name, const QStringList &args ) :ThemeEngine( parent, name, args ) { readSettings(); @@ -817,7 +817,7 @@ void Theme2k::initUi() QLabel *logo = new QLabel( vbox ); logo->setPalette( Qt::white ); - QString px( locate( "appdata", mTheme->themeDir() + (mLogoFile.isNull()?QString("/Logo.png"):mLogoFile) ) ); + TQString px( locate( "appdata", mTheme->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->setGroup( QString("KSplash Theme: %1").arg(mTheme->theme()) ); + cfg->setGroup( TQString("KSplash Theme: %1").arg(mTheme->theme()) ); - QColor DefaultTBgColor( Qt::darkBlue ); - QColor DefaultTFgColor( Qt::white ); + TQColor DefaultTBgColor( Qt::darkBlue ); + TQColor DefaultTFgColor( Qt::white ); mTBgColor = cfg->readColorEntry( "Title Background Color", &DefaultTBgColor ); mTFgColor = cfg->readColorEntry( "Title Foreground Color", &DefaultTFgColor ); mStatusColor = cfg->readColorEntry("Status Text Color", &mTBgColor ); - QColor DefaultRot1( Qt::darkBlue ); - QColor DefaultRot2( Qt::cyan ); + TQColor DefaultRot1( Qt::darkBlue ); + TQColor DefaultRot2( Qt::cyan ); mRotColor1 = cfg->readColorEntry( "Rotator Color 1", &DefaultRot1 ); mRotColor2 = cfg->readColorEntry( "Rotator Color 2", &DefaultRot2 ); mRotSpeed = cfg->readNumEntry( "Rotator Speed", 30 ); mWndTitle = cfg->readEntry( "Window Title", i18n("Please wait...") ); - mLogoFile = cfg->readEntry( "Logo File", QString::null ); + mLogoFile = cfg->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&, const QColor&, int ); + RotWidget( TQWidget *, const TQColor&, const TQColor&, 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& c1, const QColor& c2, int sp ) - :QWidget(parent), m_color1(c1), m_color2(c2), m_step(0), m_speed(sp) +RotWidget::RotWidget( TQWidget *parent, const TQColor& c1, const TQColor& c2, int sp ) + :TQWidget(parent), m_color1(c1), m_color2(c2), m_step(0), m_speed(sp) { if( (m_speed <= 0) || (m_speed > 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& <replaceable>calendarFile</replaceable>, - const QString& <replaceable>eventID</replaceable>) +void cancelEvent(const TQString& <replaceable>calendarFile</replaceable>, + const TQString& <replaceable>eventID</replaceable>) </synopsis> <refsect2> @@ -2759,8 +2759,8 @@ ignored.</para></note> </refnamediv> <refsynopsisdiv> <synopsis> -void triggerEvent(const QString& <replaceable>calendarFile</replaceable>, - const QString& <replaceable>eventID</replaceable>) +void triggerEvent(const TQString& <replaceable>calendarFile</replaceable>, + const TQString& <replaceable>eventID</replaceable>) </synopsis> <refsect2> @@ -2817,8 +2817,8 @@ ignored.</para></note> </refnamediv> <refsynopsisdiv> <synopsis> -void handleEvent(const QString& <replaceable>calendarFile</replaceable>, - const QString& <replaceable>eventID</replaceable>) +void handleEvent(const TQString& <replaceable>calendarFile</replaceable>, + const TQString& <replaceable>eventID</replaceable>) </synopsis> <refsect2> @@ -2884,26 +2884,26 @@ ignored.</para></note> </refnamediv> <refsynopsisdiv> <synopsis> -bool scheduleMessage(const QString& <replaceable>message</replaceable>, - const QString& <replaceable>dateTime</replaceable>, +bool scheduleMessage(const TQString& <replaceable>message</replaceable>, + const TQString& <replaceable>dateTime</replaceable>, int <replaceable>lateCancel</replaceable>, int <replaceable>flags</replaceable>, - const QString& <replaceable>bgColour</replaceable>, - const QString& <replaceable>fgColour</replaceable>, - const QString& <replaceable>font</replaceable>, + const TQString& <replaceable>bgColour</replaceable>, + const TQString& <replaceable>fgColour</replaceable>, + const TQString& <replaceable>font</replaceable>, const KURL& <replaceable>audioURL</replaceable>, int <replaceable>reminder</replaceable>, - const QString& <replaceable>recurrence</replaceable>, + const TQString& <replaceable>recurrence</replaceable>, int <replaceable>subRepeatInterval</replaceable>, int <replaceable>subRepeatCount</replaceable>) </synopsis> <synopsis> -bool scheduleMessage(const QString& <replaceable>message</replaceable>, - const QString& <replaceable>dateTime</replaceable>, +bool scheduleMessage(const TQString& <replaceable>message</replaceable>, + const TQString& <replaceable>dateTime</replaceable>, int <replaceable>lateCancel</replaceable>, int <replaceable>flags</replaceable>, - const QString& <replaceable>bgColour</replaceable>, - const QString& <replaceable>fgColour</replaceable>, - const QString& <replaceable>font</replaceable>, + const TQString& <replaceable>bgColour</replaceable>, + const TQString& <replaceable>fgColour</replaceable>, + const TQString& <replaceable>font</replaceable>, const KURL& <replaceable>audioURL</replaceable>, int <replaceable>reminder</replaceable>, int <replaceable>recurType</replaceable>, @@ -2911,18 +2911,18 @@ bool scheduleMessage(const QString& <replaceable>message</replaceable>, int <replaceable>recurCount</replaceable>) </synopsis> <synopsis> -bool scheduleMessage(const QString& <replaceable>message</replaceable>, - const QString& <replaceable>dateTime</replaceable>, +bool scheduleMessage(const TQString& <replaceable>message</replaceable>, + const TQString& <replaceable>dateTime</replaceable>, int <replaceable>lateCancel</replaceable>, int <replaceable>flags</replaceable>, - const QString& <replaceable>bgColour</replaceable>, - const QString& <replaceable>fgColour</replaceable>, - const QString& <replaceable>font</replaceable>, + const TQString& <replaceable>bgColour</replaceable>, + const TQString& <replaceable>fgColour</replaceable>, + const TQString& <replaceable>font</replaceable>, const KURL& <replaceable>audioURL</replaceable>, int <replaceable>reminder</replaceable>, int <replaceable>recurType</replaceable>, int <replaceable>recurInterval</replaceable>, - const QString& <replaceable>endDateTime</replaceable>) + const TQString& <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 (⪚ <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& <replaceable>URL</replaceable>, - const QString& <replaceable>dateTime</replaceable>, + const TQString& <replaceable>dateTime</replaceable>, int <replaceable>lateCancel</replaceable>, int <replaceable>flags</replaceable>, - const QString& <replaceable>bgColour</replaceable>, + const TQString& <replaceable>bgColour</replaceable>, const KURL& <replaceable>audioURL</replaceable>, int <replaceable>reminder</replaceable>, - const QString& <replaceable>recurrence</replaceable>, + const TQString& <replaceable>recurrence</replaceable>, int <replaceable>subRepeatInterval</replaceable>, int <replaceable>subRepeatCount</replaceable>) </synopsis> <synopsis> bool scheduleFile(const KURL& <replaceable>URL</replaceable>, - const QString& <replaceable>dateTime</replaceable>, + const TQString& <replaceable>dateTime</replaceable>, int <replaceable>lateCancel</replaceable>, int <replaceable>flags</replaceable>, - const QString& <replaceable>bgColour</replaceable>, + const TQString& <replaceable>bgColour</replaceable>, const KURL& <replaceable>audioURL</replaceable>, int <replaceable>reminder</replaceable>, int <replaceable>recurType</replaceable>, @@ -3156,15 +3156,15 @@ bool scheduleFile(const KURL& <replaceable>URL</replaceable>, </synopsis> <synopsis> bool scheduleFile(const KURL& <replaceable>URL</replaceable>, - const QString& <replaceable>dateTime</replaceable>, + const TQString& <replaceable>dateTime</replaceable>, int <replaceable>lateCancel</replaceable>, int <replaceable>flags</replaceable>, - const QString& <replaceable>bgColour</replaceable>, + const TQString& <replaceable>bgColour</replaceable>, const KURL& <replaceable>audioURL</replaceable>, int <replaceable>reminder</replaceable>, int <replaceable>recurType</replaceable>, int <replaceable>recurInterval</replaceable>, - const QString& <replaceable>endDateTime</replaceable>) + const TQString& <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 (⪚ <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& <replaceable>commandLine</replaceable>, - const QString& <replaceable>dateTime</replaceable>, +bool scheduleCommand(const TQString& <replaceable>commandLine</replaceable>, + const TQString& <replaceable>dateTime</replaceable>, int <replaceable>lateCancel</replaceable>, int <replaceable>flags</replaceable>, - const QString& <replaceable>recurrence</replaceable>, + const TQString& <replaceable>recurrence</replaceable>, int <replaceable>subRepeatInterval</replaceable>, int <replaceable>subRepeatCount</replaceable>) </synopsis> <synopsis> -bool scheduleCommand(const QString& <replaceable>commandLine</replaceable>, - const QString& <replaceable>dateTime</replaceable>, +bool scheduleCommand(const TQString& <replaceable>commandLine</replaceable>, + const TQString& <replaceable>dateTime</replaceable>, int <replaceable>lateCancel</replaceable>, int <replaceable>flags</replaceable>, int <replaceable>recurType</replaceable>, @@ -3364,13 +3364,13 @@ bool scheduleCommand(const QString& <replaceable>commandLine</replaceable>, int <replaceable>recurCount</replaceable>) </synopsis> <synopsis> -bool scheduleCommand(const QString& <replaceable>commandLine</replaceable>, - const QString& <replaceable>dateTime</replaceable>, +bool scheduleCommand(const TQString& <replaceable>commandLine</replaceable>, + const TQString& <replaceable>dateTime</replaceable>, int <replaceable>lateCancel</replaceable>, int <replaceable>flags</replaceable>, int <replaceable>recurType</replaceable>, int <replaceable>recurInterval</replaceable>, - const QString& <replaceable>endDateTime</replaceable>) + const TQString& <replaceable>endDateTime</replaceable>) </synopsis> <refsect2> @@ -3520,25 +3520,25 @@ parameters, its usage is identical to </refnamediv> <refsynopsisdiv> <synopsis> -bool scheduleEmail(const QString& <replaceable>fromID</replaceable>, - const QString& <replaceable>addresses</replaceable>, - const QString& <replaceable>subject</replaceable>, - const QString& <replaceable>message</replaceable>, - const QString& <replaceable>attachments</replaceable>, - const QString& <replaceable>dateTime</replaceable>, +bool scheduleEmail(const TQString& <replaceable>fromID</replaceable>, + const TQString& <replaceable>addresses</replaceable>, + const TQString& <replaceable>subject</replaceable>, + const TQString& <replaceable>message</replaceable>, + const TQString& <replaceable>attachments</replaceable>, + const TQString& <replaceable>dateTime</replaceable>, int <replaceable>lateCancel</replaceable>, int <replaceable>flags</replaceable>, - const QString& <replaceable>recurrence</replaceable>, + const TQString& <replaceable>recurrence</replaceable>, int <replaceable>subRepeatInterval</replaceable>, int <replaceable>subRepeatCount</replaceable>) </synopsis> <synopsis> -bool scheduleEmail(const QString& <replaceable>fromID</replaceable>, - const QString& <replaceable>addresses</replaceable>, - const QString& <replaceable>subject</replaceable>, - const QString& <replaceable>message</replaceable>, - const QString& <replaceable>attachments</replaceable>, - const QString& <replaceable>dateTime</replaceable>, +bool scheduleEmail(const TQString& <replaceable>fromID</replaceable>, + const TQString& <replaceable>addresses</replaceable>, + const TQString& <replaceable>subject</replaceable>, + const TQString& <replaceable>message</replaceable>, + const TQString& <replaceable>attachments</replaceable>, + const TQString& <replaceable>dateTime</replaceable>, int <replaceable>lateCancel</replaceable>, int <replaceable>flags</replaceable>, int <replaceable>recurType</replaceable>, @@ -3546,17 +3546,17 @@ bool scheduleEmail(const QString& <replaceable>fromID</replaceable>, int <replaceable>recurCount</replaceable>) </synopsis> <synopsis> -bool scheduleEmail(const QString& <replaceable>fromID</replaceable>, - const QString& <replaceable>addresses</replaceable>, - const QString& <replaceable>subject</replaceable>, - const QString& <replaceable>message</replaceable>, - const QString& <replaceable>attachments</replaceable>, - const QString& <replaceable>dateTime</replaceable>, +bool scheduleEmail(const TQString& <replaceable>fromID</replaceable>, + const TQString& <replaceable>addresses</replaceable>, + const TQString& <replaceable>subject</replaceable>, + const TQString& <replaceable>message</replaceable>, + const TQString& <replaceable>attachments</replaceable>, + const TQString& <replaceable>dateTime</replaceable>, int <replaceable>lateCancel</replaceable>, nt <replaceable>flags</replaceable>, int <replaceable>recurType</replaceable>, int <replaceable>recurInterval</replaceable>, - const QString& <replaceable>endTime</replaceable>) + const TQString& <replaceable>endTime</replaceable>) </synopsis> <refsect2> @@ -3736,7 +3736,7 @@ dialogue</link> to edit an alarm.</refpurpose> </refnamediv> <refsynopsisdiv> <synopsis> -bool edit(const QString& <replaceable>eventID</replaceable>) +bool edit(const TQString& <replaceable>eventID</replaceable>) </synopsis> <refsect2> @@ -3780,7 +3780,7 @@ dialogue</link> to edit a new alarm.</refpurpose> </refnamediv> <refsynopsisdiv> <synopsis> -bool editNew(const QString& <replaceable>templateName</replaceable>) +bool editNew(const TQString& <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 17d44d022e6..acfd2bef979 100644 --- a/tde-i18n-en_GB/messages/tdesdk/umbrello.po +++ b/tde-i18n-en_GB/messages/tdesdk/umbrello.po @@ -4022,5 +4022,5 @@ msgstr "" #~ "Could not find active language.\n" #~ "Please select one of the installed languages to generate the code with." -#~ msgid "QString" -#~ msgstr "QString" +#~ msgid "TQString" +#~ msgstr "TQString" diff --git a/tde-i18n-en_GB/messages/tdevelop/tdevelop.po b/tde-i18n-en_GB/messages/tdevelop/tdevelop.po index 9d7aaeb1820..e3b7963cf3d 100644 --- a/tde-i18n-en_GB/messages/tdevelop/tdevelop.po +++ b/tde-i18n-en_GB/messages/tdevelop/tdevelop.po @@ -29901,14 +29901,14 @@ msgstr "" #~ 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 " +#~ "have checked '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>)" #~ 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 " +#~ "have 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>)" |