summaryrefslogtreecommitdiffstats
path: root/doc/html/menu-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-08-25 15:36:25 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-08-29 22:23:36 +0900
commit0917fbb5387978eb7b2e2fd68bcb6beaa8c46505 (patch)
tree0ef68a6a92087957855c7607ac176821d10d049d /doc/html/menu-example.html
parent7b1d2ad2df8cd011b487c43336aa67639fa359c9 (diff)
downloadtqt3-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.html10
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>&amp; );
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 &lt;<a href="qcursor-h.html">ntqcursor.h</a>&gt;
+#include &lt;<a href="tqcursor-h.html">tqcursor.h</a>&gt;
#include &lt;<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
@@ -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>&amp; s, const <a href="tqfont.html">TQFont</a>&amp; 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-&gt;<a href="tqmenudata.html#insertItem">insertItem</a>( "Print to &amp;file", this, TQ_SLOT(file()) );
submenu-&gt;<a href="tqmenudata.html#insertItem">insertItem</a>( "Print to fa&amp;x", this, TQ_SLOT(fax()) );
contextMenu-&gt;<a href="tqmenudata.html#insertItem">insertItem</a>( "&amp;Print", submenu );
-<a name="x1878"></a><a name="x1859"></a> contextMenu-&gt;<a href="tqpopupmenu.html#exec">exec</a>( TQCursor::<a href="ntqcursor.html#pos">pos</a>() );
+<a name="x1878"></a><a name="x1859"></a> contextMenu-&gt;<a href="tqpopupmenu.html#exec">exec</a>( TQCursor::<a href="tqcursor.html#pos">pos</a>() );
delete contextMenu;
}