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 0163de3b2..f1e56a39f 100644 --- a/doc/html/i18n-example.html +++ b/doc/html/i18n-example.html @@ -112,22 +112,22 @@ private: <a href="ntqmainwindow.html#setCentralWidget">setCentralWidget</a>(central); <a href="ntqpopupmenu.html">TQPopupMenu</a>* file = new <a href="ntqpopupmenu.html">TQPopupMenu</a>(this); - file-><a href="ntqmenudata.html#insertItem">insertItem</a>( <a href="ntqobject.html#tr">tr</a>("E&xit"), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()), -<a name="x1921"></a> TQAccel::<a href="ntqaccel.html#stringToKey">stringToKey</a>(<a href="ntqobject.html#tr">tr</a>("Ctrl+Q")) ); - <a href="ntqmainwindow.html#menuBar">menuBar</a>()->insertItem( <a href="ntqobject.html#tr">tr</a>("&File"), file ); + file-><a href="ntqmenudata.html#insertItem">insertItem</a>( <a href="tqobject.html#tr">tr</a>("E&xit"), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()), +<a name="x1921"></a> TQAccel::<a href="ntqaccel.html#stringToKey">stringToKey</a>(<a href="tqobject.html#tr">tr</a>("Ctrl+Q")) ); + <a href="ntqmainwindow.html#menuBar">menuBar</a>()->insertItem( <a href="tqobject.html#tr">tr</a>("&File"), file ); - <a href="ntqwidget.html#setCaption">setCaption</a>( <a href="ntqobject.html#tr">tr</a>( "Internationalization Example" ) ); + <a href="ntqwidget.html#setCaption">setCaption</a>( <a href="tqobject.html#tr">tr</a>( "Internationalization Example" ) ); <a href="ntqstring.html">TQString</a> l; - <a href="ntqmainwindow.html#statusBar">statusBar</a>()->message( <a href="ntqobject.html#tr">tr</a>("Language: English") ); + <a href="ntqmainwindow.html#statusBar">statusBar</a>()->message( <a href="tqobject.html#tr">tr</a>("Language: English") ); - ( void )new <a href="ntqlabel.html">TQLabel</a>( <a href="ntqobject.html#tr">tr</a>( "The Main Window" ), central ); + ( void )new <a href="ntqlabel.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="ntqobject.html#tr">tr</a>( "View" ), central ); - (void)new <a href="ntqradiobutton.html">TQRadioButton</a>( <a href="ntqobject.html#tr">tr</a>( "Perspective" ), gbox ); - (void)new <a href="ntqradiobutton.html">TQRadioButton</a>( <a href="ntqobject.html#tr">tr</a>( "Isometric" ), gbox ); - (void)new <a href="ntqradiobutton.html">TQRadioButton</a>( <a href="ntqobject.html#tr">tr</a>( "Oblique" ), gbox ); + <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 ); initChoices(central); } @@ -143,7 +143,7 @@ void <a name="f526"></a>MyWidget::initChoices(TQWidget* parent) { <a href="ntqlistbox.html">TQListBox</a>* lb = new <a href="ntqlistbox.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="ntqobject.html#tr">tr</a>( choices[i] ) ); +<a name="x1925"></a> lb-><a href="ntqlistbox.html#insertItem">insertItem</a>( <a href="tqobject.html#tr">tr</a>( choices[i] ) ); } <a name="x1927"></a>void MyWidget::<a href="ntqwidget.html#closeEvent">closeEvent</a>(TQCloseEvent* e) @@ -293,7 +293,7 @@ int main( int argc, char** argv ) MyWidget* w = showLang((const char*)qm[i]); if( w == 0 ) exit( 0 ); - TQObject::<a href="ntqobject.html#connect">connect</a>(w, TQ_SIGNAL(closed()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>())); + TQObject::<a href="tqobject.html#connect">connect</a>(w, TQ_SIGNAL(closed()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>())); <a name="x1953"></a> w-><a href="ntqwidget.html#setGeometry">setGeometry</a>(x,y,197,356); w-><a href="ntqwidget.html#show">show</a>(); if ( tight ) { |