summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial2-07.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-02 21:37:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-06 11:24:55 +0900
commit7552c6d73043b1040139033f6864db48ae5446cf (patch)
treef90d24d072dd3ee6a3f909bf7778abc7669f03ef /doc/html/tutorial2-07.html
parentc113da2069b66130f67a0f27c699e1cec83588a5 (diff)
downloadtqt-7552c6d7.tar.gz
tqt-7552c6d7.zip
Rename main window nt* related files to equivalent tq*. The file
"ntqsession.h" was totally unnecessary and has been removed. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tutorial2-07.html')
-rw-r--r--doc/html/tutorial2-07.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/tutorial2-07.html b/doc/html/tutorial2-07.html
index 3ff6dc9bb..c40431813 100644
--- a/doc/html/tutorial2-07.html
+++ b/doc/html/tutorial2-07.html
@@ -42,7 +42,7 @@ body { background: #ffffff; color: black; }
{
<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="ntqmainwindow.html#statusBar">statusBar</a>()-&gt;message( TQString( "Failed to load \'%1\'" ).
+ <a href="tqmainwindow.html#statusBar">statusBar</a>()-&gt;message( TQString( "Failed to load \'%1\'" ).
arg( filename ), 2000 );
return;
}
@@ -77,7 +77,7 @@ draw the chart and mark it as unchanged.
{
</pre><pre> <a href="ntqfile.html">TQFile</a> file( m_filename );
<a name="x2591"></a> if ( !file.<a href="ntqfile.html#open">open</a>( <a href="ntqfile.html#open">IO_WriteOnly</a> ) ) {
- <a href="ntqmainwindow.html#statusBar">statusBar</a>()-&gt;message( TQString( "Failed to save \'%1\'" ).
+ <a href="tqmainwindow.html#statusBar">statusBar</a>()-&gt;message( TQString( "Failed to save \'%1\'" ).
arg( m_filename ), 2000 );
return;
}
@@ -89,7 +89,7 @@ draw the chart and mark it as unchanged.
file.<a href="ntqfile.html#close">close</a>();
<a href="tqwidget.html#setCaption">setCaption</a>( TQString( "Chart -- %1" ).arg( m_filename ) );
- <a href="ntqmainwindow.html#statusBar">statusBar</a>()-&gt;message( TQString( "Saved \'%1\'" ).arg( m_filename ), 2000 );
+ <a href="tqmainwindow.html#statusBar">statusBar</a>()-&gt;message( TQString( "Saved \'%1\'" ).arg( m_filename ), 2000 );
m_changed = FALSE;
}
</pre>