summaryrefslogtreecommitdiffstats
path: root/doc/html/listboxcombo-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:07:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:22:42 +0900
commit8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch)
treeb95884617b9a37accc843676d5d42be4116a3f54 /doc/html/listboxcombo-example.html
parent68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff)
downloadtqt-8ac0e970.tar.gz
tqt-8ac0e970.zip
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/listboxcombo-example.html')
-rw-r--r--doc/html/listboxcombo-example.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/listboxcombo-example.html b/doc/html/listboxcombo-example.html
index e51fc7cc2..3c41545a7 100644
--- a/doc/html/listboxcombo-example.html
+++ b/doc/html/listboxcombo-example.html
@@ -60,7 +60,7 @@ class ListBoxCombo : public <a href="ntqvbox.html">TQVBox</a>
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
public:
- ListBoxCombo( <a href="ntqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 );
+ ListBoxCombo( <a href="tqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 );
protected:
<a href="ntqlistbox.html">TQListBox</a> *lb1, *lb2;
@@ -137,7 +137,7 @@ protected:
* Creates child widgets of the ListBoxCombo widget
*/
-<a name="f437"></a>ListBoxCombo::ListBoxCombo( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name )
+<a name="f437"></a>ListBoxCombo::ListBoxCombo( <a href="tqwidget.html">TQWidget</a> *parent, const char *name )
: <a href="ntqvbox.html">TQVBox</a>( parent, name )
{
<a href="ntqframe.html#setMargin">setMargin</a>( 5 );
@@ -181,7 +181,7 @@ protected:
// Create a non-editable Combobox and a label below...
<a href="ntqcombobox.html">TQComboBox</a> *cb1 = new <a href="ntqcombobox.html">TQComboBox</a>( FALSE, box1 );
label1 = new <a href="ntqlabel.html">TQLabel</a>( "Current Item: Combobox Item 0", box1 );
-<a name="x1416"></a><a name="x1404"></a> label1-&gt;<a href="ntqwidget.html#setMaximumHeight">setMaximumHeight</a>( label1-&gt;<a href="ntqwidget.html#sizeHint">sizeHint</a>().height() * 2 );
+<a name="x1416"></a><a name="x1404"></a> label1-&gt;<a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label1-&gt;<a href="tqwidget.html#sizeHint">sizeHint</a>().height() * 2 );
<a name="x1401"></a> label1-&gt;<a href="ntqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken );
//...and insert 50 items into the Combobox
@@ -199,7 +199,7 @@ protected:
// Create an editable Combobox and a label below...
<a href="ntqcombobox.html">TQComboBox</a> *cb2 = new <a href="ntqcombobox.html">TQComboBox</a>( TRUE, box2 );
label2 = new <a href="ntqlabel.html">TQLabel</a>( "Current Item: Combobox Item 0", box2 );
- label2-&gt;<a href="ntqwidget.html#setMaximumHeight">setMaximumHeight</a>( label2-&gt;<a href="ntqwidget.html#sizeHint">sizeHint</a>().height() * 2 );
+ label2-&gt;<a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label2-&gt;<a href="tqwidget.html#sizeHint">sizeHint</a>().height() * 2 );
label2-&gt;<a href="ntqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken );
// ... and insert 50 items into the Combobox
@@ -288,10 +288,10 @@ int main( int argc, char **argv )
<a href="ntqapplication.html">TQApplication</a> a( argc, argv );
ListBoxCombo listboxcombo;
- listboxcombo.<a href="ntqwidget.html#resize">resize</a>( 400, 270 );
- listboxcombo.<a href="ntqwidget.html#setCaption">setCaption</a>( "TQt Example - Listboxes and Comboboxes" );
+ listboxcombo.<a href="tqwidget.html#resize">resize</a>( 400, 270 );
+ listboxcombo.<a href="tqwidget.html#setCaption">setCaption</a>( "TQt Example - Listboxes and Comboboxes" );
a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;listboxcombo );
- listboxcombo.<a href="ntqwidget.html#show">show</a>();
+ listboxcombo.<a href="tqwidget.html#show">show</a>();
return a.<a href="ntqapplication.html#exec">exec</a>();
}