diff options
Diffstat (limited to 'doc/html/ntqmainwindow.html')
-rw-r--r-- | doc/html/ntqmainwindow.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/ntqmainwindow.html b/doc/html/ntqmainwindow.html index 1aea36e28..400662836 100644 --- a/doc/html/ntqmainwindow.html +++ b/doc/html/ntqmainwindow.html @@ -150,7 +150,7 @@ toolbar buttons then describe the facilities of TQMainWindow itself. <p> <pre> TQMainWindow *mw = new TQMainWindow; - <a href="ntqtextedit.html">TQTextEdit</a> *edit = new <a href="ntqtextedit.html">TQTextEdit</a>( mw, "editor" ); + <a href="tqtextedit.html">TQTextEdit</a> *edit = new <a href="tqtextedit.html">TQTextEdit</a>( mw, "editor" ); edit-><a href="tqwidget.html#setFocus">setFocus</a>(); mw-><a href="tqwidget.html#setCaption">setCaption</a>( "Main Window" ); mw-><a href="#setCentralWidget">setCentralWidget</a>( edit ); @@ -205,7 +205,7 @@ clicked. Any dock window can be added to a dock area either using as the parent. <p> -<pre> e = new <a href="ntqtextedit.html">TQTextEdit</a>( this, "editor" ); +<pre> e = new <a href="tqtextedit.html">TQTextEdit</a>( this, "editor" ); e-><a href="tqwidget.html#setFocus">setFocus</a>(); <a href="#setCentralWidget">setCentralWidget</a>( e ); <a href="#statusBar">statusBar</a>()->message( "Ready", 2000 ); @@ -355,7 +355,7 @@ for TQMainWindow. <p> <pre> <a href="ntqfile.html">TQFile</a> file( filename ); if ( file.<a href="ntqfile.html#open">open</a>( <a href="ntqfile.html#open">IO_WriteOnly</a> ) ) { - <a href="ntqtextstream.html">TQTextStream</a> stream( &file ); + <a href="tqtextstream.html">TQTextStream</a> stream( &file ); stream << *mainWindow; file.<a href="ntqfile.html#close">close</a>(); } @@ -366,7 +366,7 @@ application is next started), do following: <p> <pre> <a href="ntqfile.html">TQFile</a> file( filename ); if ( file.<a href="ntqfile.html#open">open</a>( <a href="ntqfile.html#open">IO_ReadOnly</a> ) ) { - <a href="ntqtextstream.html">TQTextStream</a> stream( &file ); + <a href="tqtextstream.html">TQTextStream</a> stream( &file ); stream >> *mainWindow; file.<a href="ntqfile.html#close">close</a>(); } @@ -921,7 +921,7 @@ and for connecting to the main window's widget's <p>Set this property's value with <a href="#setUsesTextLabel">setUsesTextLabel</a>() and get this property's value with <a href="#usesTextLabel">usesTextLabel</a>(). <hr><h2>Related Functions</h2> -<h3 class=fn><a href="ntqtextstream.html">TQTextStream</a> & <a name="operator-lt-lt"></a>operator<< ( <a href="ntqtextstream.html">TQTextStream</a> & ts, const <a href="ntqmainwindow.html">TQMainWindow</a> & mainWindow ) +<h3 class=fn><a href="tqtextstream.html">TQTextStream</a> & <a name="operator-lt-lt"></a>operator<< ( <a href="tqtextstream.html">TQTextStream</a> & ts, const <a href="ntqmainwindow.html">TQMainWindow</a> & mainWindow ) </h3> <p> Writes the layout (sizes and positions) of the dock windows in the @@ -930,7 +930,7 @@ dock areas of the TQMainWindow <em>mainWindow</em>, including <a href="ntqt.html save the user's layout when the \mainWindow receives a closeEvent. <p> <p>See also <a href="#operator-gt-gt">operator>></a>() and <a href="tqwidget.html#closeEvent">closeEvent</a>(). -<h3 class=fn><a href="ntqtextstream.html">TQTextStream</a> & <a name="operator-gt-gt"></a>operator>> ( <a href="ntqtextstream.html">TQTextStream</a> & ts, <a href="ntqmainwindow.html">TQMainWindow</a> & mainWindow ) +<h3 class=fn><a href="tqtextstream.html">TQTextStream</a> & <a name="operator-gt-gt"></a>operator>> ( <a href="tqtextstream.html">TQTextStream</a> & ts, <a href="ntqmainwindow.html">TQMainWindow</a> & mainWindow ) </h3> <p> Reads the layout (sizes and positions) of the dock windows in the |