diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-29 12:43:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-29 12:43:23 +0900 |
commit | fef846914f8db6dc117e206ef913d519bf6bb33e (patch) | |
tree | d6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/html/tutorial1-02.html | |
parent | 8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff) | |
download | tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.tar.gz tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.zip |
Rename basic widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tutorial1-02.html')
-rw-r--r-- | doc/html/tutorial1-02.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tutorial1-02.html b/doc/html/tutorial1-02.html index cf2792e4b..a35de0e75 100644 --- a/doc/html/tutorial1-02.html +++ b/doc/html/tutorial1-02.html @@ -43,7 +43,7 @@ now go on to make the application quit properly when the user tells it to. ****************************************************************/ #include <<a href="qapplication-h.html">ntqapplication.h</a>> -#include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> +#include <<a href="tqpushbutton-h.html">tqpushbutton.h</a>> #include <<a href="tqfont-h.html">tqfont.h</a>> @@ -51,7 +51,7 @@ int main( int argc, char **argv ) { <a href="ntqapplication.html">TQApplication</a> a( argc, argv ); - <a href="ntqpushbutton.html">TQPushButton</a> quit( "Quit", 0 ); + <a href="tqpushbutton.html">TQPushButton</a> quit( "Quit", 0 ); quit.<a href="tqwidget.html#resize">resize</a>( 75, 30 ); quit.<a href="tqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) ); @@ -72,7 +72,7 @@ int main( int argc, char **argv ) <p> Since this program uses <a href="tqfont.html">TQFont</a>, it needs to include tqfont.h. TQt's font abstraction is rather different from the horror provided by X, and loading and using fonts has been highly optimized. -<p> <pre> <a href="ntqpushbutton.html">TQPushButton</a> quit( "Quit", 0 ); +<p> <pre> <a href="tqpushbutton.html">TQPushButton</a> quit( "Quit", 0 ); </pre> <p> This time, the button says "Quit" and that's exactly what the program will do when the user clicks the button. This is not a coincidence. @@ -111,7 +111,7 @@ makefile and build the application.) </h2> <a name="3"></a><p> Try to resize the window. Press the button. Oops! That connect() would seem to make some difference. -<p> Are there any other signals in <a href="ntqpushbutton.html">TQPushButton</a> you can connect to quit? +<p> Are there any other signals in <a href="tqpushbutton.html">TQPushButton</a> you can connect to quit? Hint: The TQPushButton inherits most of its behavior from <a href="ntqbutton.html">TQButton</a>. <p> You're now ready for <a href="tutorial1-03.html">Chapter 3.</a> <p> [<a href="tutorial1-01.html">Previous tutorial</a>] |