diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-25 15:36:25 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-29 22:23:36 +0900 |
commit | 0917fbb5387978eb7b2e2fd68bcb6beaa8c46505 (patch) | |
tree | 0ef68a6a92087957855c7607ac176821d10d049d /doc/html/menu-example.html | |
parent | 7b1d2ad2df8cd011b487c43336aa67639fa359c9 (diff) | |
download | tqt3-0917fbb5387978eb7b2e2fd68bcb6beaa8c46505.tar.gz tqt3-0917fbb5387978eb7b2e2fd68bcb6beaa8c46505.zip |
Rename remaining ntq[a-c]* related files to equivalent tq* (except ntqapplication.h and ntqconfig.h)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/menu-example.html')
-rw-r--r-- | doc/html/menu-example.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/menu-example.html b/doc/html/menu-example.html index da154dbd0..adf64a938 100644 --- a/doc/html/menu-example.html +++ b/doc/html/menu-example.html @@ -86,7 +86,7 @@ signals: void explain( const <a href="tqstring.html">TQString</a>& ); private: - void contextMenuEvent ( <a href="qcontextmenuevent.html">TQContextMenuEvent</a> * ); + void contextMenuEvent ( <a href="tqcontextmenuevent.html">TQContextMenuEvent</a> * ); <a href="tqmenubar.html">TQMenuBar</a> *menu; @@ -113,7 +113,7 @@ private: *****************************************************************************/ #include "menu.h" -#include <<a href="qcursor-h.html">ntqcursor.h</a>> +#include <<a href="tqcursor-h.html">tqcursor.h</a>> #include <<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>> #include <<a href="qapplication-h.html">ntqapplication.h</a>> #include <<a href="qmessagebox-h.html">ntqmessagebox.h</a>> @@ -195,7 +195,7 @@ static const char * p3_xpm[] = { fonts. Used for the "bold" and "underline" menu items in the options menu. */ -class MyMenuItem : public <a href="qcustommenuitem.html">TQCustomMenuItem</a> +class MyMenuItem : public <a href="tqcustommenuitem.html">TQCustomMenuItem</a> { public: MyMenuItem( const <a href="tqstring.html">TQString</a>& s, const <a href="tqfont.html">TQFont</a>& f ) @@ -314,7 +314,7 @@ private: } -<a name="x1881"></a>void MenuExample::<a href="tqwidget.html#contextMenuEvent">contextMenuEvent</a>( <a href="qcontextmenuevent.html">TQContextMenuEvent</a> * ) +<a name="x1881"></a>void MenuExample::<a href="tqwidget.html#contextMenuEvent">contextMenuEvent</a>( <a href="tqcontextmenuevent.html">TQContextMenuEvent</a> * ) { <a href="tqpopupmenu.html">TQPopupMenu</a>* contextMenu = new <a href="tqpopupmenu.html">TQPopupMenu</a>( this ); <a href="ntqapplication.html#TQ_CHECK_PTR">TQ_CHECK_PTR</a>( contextMenu ); @@ -331,7 +331,7 @@ private: submenu-><a href="tqmenudata.html#insertItem">insertItem</a>( "Print to &file", this, TQ_SLOT(file()) ); submenu-><a href="tqmenudata.html#insertItem">insertItem</a>( "Print to fa&x", this, TQ_SLOT(fax()) ); contextMenu-><a href="tqmenudata.html#insertItem">insertItem</a>( "&Print", submenu ); -<a name="x1878"></a><a name="x1859"></a> contextMenu-><a href="tqpopupmenu.html#exec">exec</a>( TQCursor::<a href="ntqcursor.html#pos">pos</a>() ); +<a name="x1878"></a><a name="x1859"></a> contextMenu-><a href="tqpopupmenu.html#exec">exec</a>( TQCursor::<a href="tqcursor.html#pos">pos</a>() ); delete contextMenu; } |