diff options
author | Michele Calgaro <[email protected]> | 2024-08-24 20:19:50 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-08-29 22:23:35 +0900 |
commit | d35eedcd87d59e716c6d49bbb6b634ef1a7660c5 (patch) | |
tree | 204d752457acf6403c99f3928f02b612ff14d178 /doc/html/motif-customwidget-example.html | |
parent | ddce1c91f8582885497b463b24bac59f6fdfdf63 (diff) | |
download | tqt3-d35eedcd87d59e716c6d49bbb6b634ef1a7660c5.tar.gz tqt3-d35eedcd87d59e716c6d49bbb6b634ef1a7660c5.zip |
Rename style nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/motif-customwidget-example.html')
-rw-r--r-- | doc/html/motif-customwidget-example.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/motif-customwidget-example.html b/doc/html/motif-customwidget-example.html index 858741b36..613b03302 100644 --- a/doc/html/motif-customwidget-example.html +++ b/doc/html/motif-customwidget-example.html @@ -50,7 +50,7 @@ public: MainWindow(); private: - <a href="qmotifwidget.html">TQMotifWidget</a> *customwidget; + <a href="tqmotifwidget.html">TQMotifWidget</a> *customwidget; }; #endif // MAINWINDOW_H @@ -61,14 +61,14 @@ private: <p> <pre>#include "mainwindow.h" #include <<a href="qapplication-h.html">ntqapplication.h</a>> -#include <<a href="qmotif-h.html">qmotif.h</a>> +#include <<a href="tqmotif-h.html">tqmotif.h</a>> int main( int argc, char **argv ) { XtSetLanguageProc( NULL, NULL, NULL ); - <a href="qmotif.html">TQMotif</a> integrator( "customwidget" ); + <a href="tqmotif.html">TQMotif</a> integrator( "customwidget" ); <a href="ntqapplication.html">TQApplication</a> app( argc, argv ); MainWindow mainwindow; @@ -86,7 +86,7 @@ int main( int argc, char **argv ) #include <<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>> #include <<a href="tqstatusbar-h.html">tqstatusbar.h</a>> -#include <<a href="qmotifwidget-h.html">qmotifwidget.h</a>> +#include <<a href="tqmotifwidget-h.html">tqmotifwidget.h</a>> #include <Xm/Form.h> #include <Xm/PushB.h> @@ -103,7 +103,7 @@ int main( int argc, char **argv ) <a href="tqmainwindow.html#statusBar">statusBar</a>()->message( <a href="tqobject.html#tr">tr</a>("This is a TQMainWindow with an XmText widget.") ); customwidget = - new <a href="qmotifwidget.html">TQMotifWidget</a>( this, xmFormWidgetClass, NULL, 0, "form" ); + new <a href="tqmotifwidget.html">TQMotifWidget</a>( this, xmFormWidgetClass, NULL, 0, "form" ); XmString str; Arg args[6]; |