summaryrefslogtreecommitdiffstats
path: root/doc/html/qnpinstance.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qnpinstance.html')
-rw-r--r--doc/html/qnpinstance.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/qnpinstance.html b/doc/html/qnpinstance.html
index 00067aea..c6372438 100644
--- a/doc/html/qnpinstance.html
+++ b/doc/html/qnpinstance.html
@@ -79,7 +79,7 @@ The TQNPInstance class provides a <a href="qobject.html">TQObject</a> that is a
<p> Deriving from TQNPInstance creates an object that represents a
single <tt>&lt;EMBED&gt;</tt> tag in an HTML document.
<p> The TQNPInstance is responsible for creating an appropriate
-<a href="qnpwidget.html">TQNPWidget</a> window if retquired (not all plugins have windows), and
+<a href="qnpwidget.html">TQNPWidget</a> window if required (not all plugins have windows), and
for interacting with the input/output facilities intrinsic to
plugins.
<p> Note that there is <em>absolutely no guarantee</em> regarding the order
@@ -172,7 +172,7 @@ object of the <a href="qnplugin.html#getJavaClass">plugin's Java
class</a>, or 0 if the plug-in does not have a Java class,
Java is disabled, or an error occurred.
<p> The return value is actually a <tt>jref</tt> we use <tt>void*</tt> so as to
-avoid burdening plugins which do not retquire Java.
+avoid burdening plugins which do not require Java.
<p> <p>See also <a href="qnplugin.html#getJavaClass">TQNPlugin::getJavaClass</a>() and <a href="qnplugin.html#getJavaEnv">TQNPlugin::getJavaEnv</a>().
<h3 class=fn>void <a name="getURL"></a>TQNPInstance::getURL ( const&nbsp;char&nbsp;*&nbsp;url, const&nbsp;char&nbsp;*&nbsp;window = 0 )
@@ -206,7 +206,7 @@ NPN_NewStream function of the <a href="netscape-plugin.html#Netscape">Netscape</
<p> This function is called when a new stream has been created. The
instance should return TRUE if it accepts the processing of the
-stream. If the instance retquires the stream as a file, it should
+stream. If the instance requires the stream as a file, it should
set <em>smode</em> to <a href="#StreamMode-enum">AsFileOnly</a>, in which case the data will be
delivered some time later to the <a href="#streamAsFile">streamAsFile</a>() function.
Otherwise, the data will be delivered in chunks to the <a href="#write">write</a>()
@@ -219,8 +219,8 @@ by the most recent call to <a href="#writeReady">writeReady</a>().
<h3 class=fn><a href="qnpwidget.html">TQNPWidget</a>&nbsp;* <a name="newWindow"></a>TQNPInstance::newWindow ()<tt> [virtual]</tt>
</h3>
Called at most once, at some time after the TQNPInstance is
-created. If the plugin retquires a window, this function should
-return a derived class of <a href="qnpwidget.html">TQNPWidget</a> that provides the retquired
+created. If the plugin requires a window, this function should
+return a derived class of <a href="qnpwidget.html">TQNPWidget</a> that provides the required
interface.
<p>Example: <a href="grapher-nsplugin-example.html#x2751">grapher/grapher.cpp</a>.