diff options
Diffstat (limited to 'doc/html/activeqt-dotnet.html')
-rw-r--r-- | doc/html/activeqt-dotnet.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/activeqt-dotnet.html b/doc/html/activeqt-dotnet.html index 0df4d63c3..351f1e9cf 100644 --- a/doc/html/activeqt-dotnet.html +++ b/doc/html/activeqt-dotnet.html @@ -130,7 +130,7 @@ managed programming language. <p> <pre> // native TQt/C++ class - class Worker : public <a href="ntqobject.html">TQObject</a> + class Worker : public <a href="tqobject.html">TQObject</a> { <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> TQ_PROPERTY(TQString statusString READ statusString WRITE setStatusString) @@ -304,7 +304,7 @@ Visual Basic or any other programming language available for .NET. COM object and is generated by the CLR when a .NET Framework client activates a COM object. This provides a generic way to reuse COM objects in a .NET Framework project. -<p> Making a <a href="ntqobject.html">TQObject</a> class into a COM object is easily achieved with +<p> Making a <a href="tqobject.html">TQObject</a> class into a COM object is easily achieved with ActiveTQt and demonstrated in the <a href="qaxserver-examples.html">examples</a>. The walkthrough will use the TQt classes implemented in those examples, so the first thing to do is to make sure that those examples have been built correctly, e.g. by opening the <a href="qaxserver-demo-multiple.html">demonstration pages</a> in Internet @@ -399,7 +399,7 @@ thanks to the C++ extensions provided by Microsoft. <a name="4-1"></a><p> All the limitations when using ActiveTQt are implied when using this technique to interoperate with .NET, e.g. the datatypes we can use in the APIs can only be those supported by ActiveTQt and COM. However, -since this includes subclasses of <a href="ntqobject.html">TQObject</a> and <a href="ntqwidget.html">TQWidget</a> we can wrap +since this includes subclasses of <a href="tqobject.html">TQObject</a> and <a href="ntqwidget.html">TQWidget</a> we can wrap any of our datatypes into a TQObject subclass to make its API available to .NET. This has the positive side effect that the same API is automatically available in <a href="http://www.trolltech.com/products/qsa">TQSA</a>, the cross platform |