diff options
Diffstat (limited to 'doc/html/i18n-example.html')
-rw-r--r-- | doc/html/i18n-example.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/i18n-example.html b/doc/html/i18n-example.html index d15038a7e..10c795c9a 100644 --- a/doc/html/i18n-example.html +++ b/doc/html/i18n-example.html @@ -87,10 +87,10 @@ private: ** *****************************************************************************/ -#include <<a href="qbuttongroup-h.html">ntqbuttongroup.h</a>> +#include <<a href="tqbuttongroup-h.html">tqbuttongroup.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="tqlistbox-h.html">tqlistbox.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>> @@ -107,7 +107,7 @@ private: : <a href="tqmainwindow.html">TQMainWindow</a>( parent, name ) { <a href="ntqvbox.html">TQVBox</a>* central = new <a href="ntqvbox.html">TQVBox</a>(this); -<a name="x1923"></a> central-><a href="ntqframe.html#setMargin">setMargin</a>( 5 ); +<a name="x1923"></a> central-><a href="tqframe.html#setMargin">setMargin</a>( 5 ); <a name="x1924"></a> central-><a href="ntqhbox.html#setSpacing">setSpacing</a>( 5 ); <a href="tqmainwindow.html#setCentralWidget">setCentralWidget</a>(central); @@ -123,7 +123,7 @@ private: ( void )new <a href="tqlabel.html">TQLabel</a>( <a href="tqobject.html#tr">tr</a>( "The Main Window" ), central ); - <a href="ntqbuttongroup.html">TQButtonGroup</a>* gbox = new <a href="ntqbuttongroup.html">TQButtonGroup</a>( 1, TQGroupBox::Horizontal, + <a href="tqbuttongroup.html">TQButtonGroup</a>* gbox = new <a href="tqbuttongroup.html">TQButtonGroup</a>( 1, TQGroupBox::Horizontal, <a href="tqobject.html#tr">tr</a>( "View" ), central ); (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 ); @@ -141,9 +141,9 @@ static const char* choices[] = { void <a name="f526"></a>MyWidget::initChoices(TQWidget* parent) { - <a href="ntqlistbox.html">TQListBox</a>* lb = new <a href="ntqlistbox.html">TQListBox</a>( parent ); + <a href="tqlistbox.html">TQListBox</a>* lb = new <a href="tqlistbox.html">TQListBox</a>( parent ); for ( int i = 0; choices[i]; i++ ) -<a name="x1925"></a> lb-><a href="ntqlistbox.html#insertItem">insertItem</a>( <a href="tqobject.html#tr">tr</a>( choices[i] ) ); +<a name="x1925"></a> lb-><a href="tqlistbox.html#insertItem">insertItem</a>( <a href="tqobject.html#tr">tr</a>( choices[i] ) ); } <a name="x1927"></a>void MyWidget::<a href="tqwidget.html#closeEvent">closeEvent</a>(TQCloseEvent* e) @@ -172,7 +172,7 @@ void <a name="f526"></a>MyWidget::initChoices(TQWidget* parent) #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="tqbuttongroup-h.html">tqbuttongroup.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>> @@ -216,7 +216,7 @@ public: hb = new <a href="ntqhbox.html">TQHBox</a>(this); <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>())); +<a name="x1945"></a> connect(c,TQ_SIGNAL(<a href="tqbutton.html#clicked">clicked</a>()),sm,TQ_SLOT(<a href="tqsignalmapper.html#map">map</a>())); } private: @@ -274,7 +274,7 @@ int main( int argc, char** argv ) if ( lang == "all" ) { r = 2; } else { - <a href="ntqbuttongroup.html">TQButtonGroup</a> *bg = new <a href="ntqbuttongroup.html">TQButtonGroup</a>(4,TQt::Vertical,"Choose Locales",&dlg); + <a href="tqbuttongroup.html">TQButtonGroup</a> *bg = new <a href="tqbuttongroup.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="tqcheckbox.html">TQCheckBox</a>((const char*)qm[i],bg); |