summaryrefslogtreecommitdiffstats
path: root/doc/html/i18n-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/i18n-example.html')
-rw-r--r--doc/html/i18n-example.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/i18n-example.html b/doc/html/i18n-example.html
index 10c795c9..01f50f92 100644
--- a/doc/html/i18n-example.html
+++ b/doc/html/i18n-example.html
@@ -93,8 +93,8 @@ private:
#include &lt;<a href="tqlistbox-h.html">tqlistbox.h</a>&gt;
#include &lt;<a href="tqcombobox-h.html">tqcombobox.h</a>&gt;
#include &lt;<a href="tqlabel-h.html">tqlabel.h</a>&gt;
-#include &lt;<a href="qhbox-h.html">ntqhbox.h</a>&gt;
-#include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
+#include &lt;<a href="tqhbox-h.html">tqhbox.h</a>&gt;
+#include &lt;<a href="tqvbox-h.html">tqvbox.h</a>&gt;
#include &lt;<a href="qaccel-h.html">ntqaccel.h</a>&gt;
#include &lt;<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>&gt;
#include &lt;<a href="tqmenubar-h.html">tqmenubar.h</a>&gt;
@@ -106,9 +106,9 @@ private:
<a name="f525"></a>MyWidget::MyWidget( <a href="tqwidget.html">TQWidget</a>* parent, const char* name )
: <a href="tqmainwindow.html">TQMainWindow</a>( parent, name )
{
- <a href="ntqvbox.html">TQVBox</a>* central = new <a href="ntqvbox.html">TQVBox</a>(this);
+ <a href="tqvbox.html">TQVBox</a>* central = new <a href="tqvbox.html">TQVBox</a>(this);
<a name="x1923"></a> central-&gt;<a href="tqframe.html#setMargin">setMargin</a>( 5 );
-<a name="x1924"></a> central-&gt;<a href="ntqhbox.html#setSpacing">setSpacing</a>( 5 );
+<a name="x1924"></a> central-&gt;<a href="tqhbox.html#setSpacing">setSpacing</a>( 5 );
<a href="tqmainwindow.html#setCentralWidget">setCentralWidget</a>(central);
<a href="tqpopupmenu.html">TQPopupMenu</a>* file = new <a href="tqpopupmenu.html">TQPopupMenu</a>(this);
@@ -170,8 +170,8 @@ void <a name="f526"></a>MyWidget::initChoices(TQWidget* parent)
#include &lt;<a href="tqfileinfo-h.html">tqfileinfo.h</a>&gt;
#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
#include &lt;<a href="tqcheckbox-h.html">tqcheckbox.h</a>&gt;
-#include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
-#include &lt;<a href="qlayout-h.html">ntqlayout.h</a>&gt;
+#include &lt;<a href="tqvbox-h.html">tqvbox.h</a>&gt;
+#include &lt;<a href="tqlayout-h.html">tqlayout.h</a>&gt;
#include &lt;<a href="tqbuttongroup-h.html">tqbuttongroup.h</a>&gt;
#include &lt;<a href="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
#include &lt;<a href="tqsignalmapper-h.html">tqsignalmapper.h</a>&gt;
@@ -191,8 +191,8 @@ public:
TQVDialog(TQWidget *parent=0, const char *name=0, bool modal=FALSE,
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-&gt;<a href="ntqlayout.html#setAutoAdd">setAutoAdd</a>(TRUE);
+ <a href="tqvboxlayout.html">TQVBoxLayout</a>* vb = new <a href="tqvboxlayout.html">TQVBoxLayout</a>(this,8);
+<a name="x1938"></a> vb-&gt;<a href="tqlayout.html#setAutoAdd">setAutoAdd</a>(TRUE);
hb = 0;
sm = new <a href="tqsignalmapper.html">TQSignalMapper</a>(this);
<a name="x1946"></a> connect(sm,TQ_SIGNAL(<a href="tqsignalmapper.html#mapped">mapped</a>(int)),this,TQ_SLOT(done(int)));
@@ -213,7 +213,7 @@ public:
void addButton( const <a href="tqstring.html">TQString</a>&amp; text, int result )
{
if ( !hb )
- hb = new <a href="ntqhbox.html">TQHBox</a>(this);
+ hb = new <a href="tqhbox.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-&gt;<a href="tqsignalmapper.html#setMapping">setMapping</a>(c,result);
<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>()));
@@ -221,7 +221,7 @@ public:
private:
<a href="tqsignalmapper.html">TQSignalMapper</a> *sm;
- <a href="ntqhbox.html">TQHBox</a> *hb;
+ <a href="tqhbox.html">TQHBox</a> *hb;
};
MyWidget* showLang(TQString lang)