summaryrefslogtreecommitdiffstats
path: root/doc/html/popup-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/popup-example.html')
-rw-r--r--doc/html/popup-example.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/popup-example.html b/doc/html/popup-example.html
index 032f285d0..53f86132b 100644
--- a/doc/html/popup-example.html
+++ b/doc/html/popup-example.html
@@ -110,7 +110,7 @@ private:
*****************************************************************************/
#include "popup.h"
-#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+#include &lt;<a href="tqapplication-h.html">tqapplication.h</a>&gt;
#include &lt;<a href="tqlayout-h.html">tqlayout.h</a>&gt;
<a name="f468"></a>FancyPopup::FancyPopup( <a href="tqwidget.html">TQWidget</a>* parent, const char* name ):
@@ -148,7 +148,7 @@ private:
// avoid the button remaining in pressed state we simply send a
// faked mouse button release event to it.
<a href="tqmouseevent.html">TQMouseEvent</a> me( TQEvent::MouseButtonRelease, TQPoint(0,0), TQPoint(0,0), TQMouseEvent::LeftButton, TQMouseEvent::NoButton);
-<a name="x1602"></a> TQApplication::<a href="ntqapplication.html#sendEvent">sendEvent</a>( popupParent, &amp;me );
+<a name="x1602"></a> TQApplication::<a href="tqapplication.html#sendEvent">sendEvent</a>( popupParent, &amp;me );
}
void <a name="f469"></a>FancyPopup::popup( <a href="tqwidget.html">TQWidget</a>* parent) {
@@ -224,13 +224,13 @@ void <a name="f472"></a>Frame::button2Pressed(){
int main( int argc, char **argv )
{
- <a href="ntqapplication.html">TQApplication</a> a(argc,argv);
+ <a href="tqapplication.html">TQApplication</a> a(argc,argv);
Frame frame;
frame.<a href="tqwidget.html#setCaption">setCaption</a>("TQt Example - Custom Popups");
- a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>(&amp;frame);
+ a.<a href="tqapplication.html#setMainWidget">setMainWidget</a>(&amp;frame);
frame.<a href="tqwidget.html#show">show</a>();
- return a.<a href="ntqapplication.html#exec">exec</a>();
+ return a.<a href="tqapplication.html#exec">exec</a>();
}
</pre>