diff options
Diffstat (limited to 'doc/html/i18n-example.html')
-rw-r--r-- | doc/html/i18n-example.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/html/i18n-example.html b/doc/html/i18n-example.html index 31b0c8dbf..d15038a7e 100644 --- a/doc/html/i18n-example.html +++ b/doc/html/i18n-example.html @@ -88,10 +88,10 @@ private: *****************************************************************************/ #include <<a href="qbuttongroup-h.html">ntqbuttongroup.h</a>> -#include <<a href="qradiobutton-h.html">ntqradiobutton.h</a>> +#include <<a href="tqradiobutton-h.html">tqradiobutton.h</a>> #include <<a href="tqlabel-h.html">tqlabel.h</a>> #include <<a href="qlistbox-h.html">ntqlistbox.h</a>> -#include <<a href="qcombobox-h.html">ntqcombobox.h</a>> +#include <<a href="tqcombobox-h.html">tqcombobox.h</a>> #include <<a href="tqlabel-h.html">tqlabel.h</a>> #include <<a href="qhbox-h.html">ntqhbox.h</a>> #include <<a href="qvbox-h.html">ntqvbox.h</a>> @@ -125,9 +125,9 @@ private: <a href="ntqbuttongroup.html">TQButtonGroup</a>* gbox = new <a href="ntqbuttongroup.html">TQButtonGroup</a>( 1, TQGroupBox::Horizontal, <a href="tqobject.html#tr">tr</a>( "View" ), central ); - (void)new <a href="ntqradiobutton.html">TQRadioButton</a>( <a href="tqobject.html#tr">tr</a>( "Perspective" ), gbox ); - (void)new <a href="ntqradiobutton.html">TQRadioButton</a>( <a href="tqobject.html#tr">tr</a>( "Isometric" ), gbox ); - (void)new <a href="ntqradiobutton.html">TQRadioButton</a>( <a href="tqobject.html#tr">tr</a>( "Oblique" ), gbox ); + (void)new <a href="tqradiobutton.html">TQRadioButton</a>( <a href="tqobject.html#tr">tr</a>( "Perspective" ), gbox ); + (void)new <a href="tqradiobutton.html">TQRadioButton</a>( <a href="tqobject.html#tr">tr</a>( "Isometric" ), gbox ); + (void)new <a href="tqradiobutton.html">TQRadioButton</a>( <a href="tqobject.html#tr">tr</a>( "Oblique" ), gbox ); initChoices(central); } @@ -169,11 +169,11 @@ void <a name="f526"></a>MyWidget::initChoices(TQWidget* parent) #include <<a href="tqtranslator-h.html">tqtranslator.h</a>> #include <<a href="tqfileinfo-h.html">tqfileinfo.h</a>> #include <<a href="qmessagebox-h.html">ntqmessagebox.h</a>> -#include <<a href="qcheckbox-h.html">ntqcheckbox.h</a>> +#include <<a href="tqcheckbox-h.html">tqcheckbox.h</a>> #include <<a href="qvbox-h.html">ntqvbox.h</a>> #include <<a href="qlayout-h.html">ntqlayout.h</a>> #include <<a href="qbuttongroup-h.html">ntqbuttongroup.h</a>> -#include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> +#include <<a href="tqpushbutton-h.html">tqpushbutton.h</a>> #include <<a href="tqsignalmapper-h.html">tqsignalmapper.h</a>> #include <<a href="tqtextcodec-h.html">tqtextcodec.h</a>> #include <stdlib.h> @@ -186,10 +186,10 @@ void <a name="f526"></a>MyWidget::initChoices(TQWidget* parent) //#define USE_I18N_FONT -class TQVDialog : public <a href="ntqdialog.html">TQDialog</a> { +class TQVDialog : public <a href="tqdialog.html">TQDialog</a> { public: TQVDialog(TQWidget *parent=0, const char *name=0, bool modal=FALSE, - WFlags f=0) : <a href="ntqdialog.html">TQDialog</a>(parent,name,modal,f) + WFlags f=0) : <a href="tqdialog.html">TQDialog</a>(parent,name,modal,f) { <a href="qvboxlayout.html">TQVBoxLayout</a>* vb = new <a href="qvboxlayout.html">TQVBoxLayout</a>(this,8); <a name="x1938"></a> vb-><a href="ntqlayout.html#setAutoAdd">setAutoAdd</a>(TRUE); @@ -214,7 +214,7 @@ public: { if ( !hb ) hb = new <a href="ntqhbox.html">TQHBox</a>(this); - <a href="ntqpushbutton.html">TQPushButton</a> *c = new <a href="ntqpushbutton.html">TQPushButton</a>(text, hb); + <a href="tqpushbutton.html">TQPushButton</a> *c = new <a href="tqpushbutton.html">TQPushButton</a>(text, hb); <a name="x1947"></a> sm-><a href="tqsignalmapper.html#setMapping">setMapping</a>(c,result); <a name="x1945"></a> connect(c,TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()),sm,TQ_SLOT(<a href="tqsignalmapper.html#map">map</a>())); } @@ -277,11 +277,11 @@ int main( int argc, char** argv ) <a href="ntqbuttongroup.html">TQButtonGroup</a> *bg = new <a href="ntqbuttongroup.html">TQButtonGroup</a>(4,TQt::Vertical,"Choose Locales",&dlg); <a name="x1949"></a> <a href="tqstring.html">TQString</a> loc = TQTextCodec::<a href="tqtextcodec.html#locale">locale</a>(); for ( int i=0; qm[i]; i++ ) { - qmb[i] = new <a href="ntqcheckbox.html">TQCheckBox</a>((const char*)qm[i],bg); + qmb[i] = new <a href="tqcheckbox.html">TQCheckBox</a>((const char*)qm[i],bg); qmb[i]->setChecked( loc == qm[i] ); } dlg.addButtons("Cancel","OK","All"); -<a name="x1936"></a> r = dlg.<a href="ntqdialog.html#exec">exec</a>(); +<a name="x1936"></a> r = dlg.<a href="tqdialog.html#exec">exec</a>(); } if ( r ) { <a name="x1928"></a> <a href="tqrect.html">TQRect</a> screen = tqApp-><a href="ntqapplication.html#desktop">desktop</a>()->availableGeometry(); |