diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 22:04:08 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 22:04:08 -0600 |
commit | e02e31c8b9d854cd62cbe9799228f6e08e882773 (patch) | |
tree | 53303c981d0b20e03c5a2fc8e959fa74adcb90d1 /doc/html/object.html | |
parent | 143f194af098d44bf0dd1ebb29e59f30ce48d523 (diff) | |
download | tqt3-e02e31c8b9d854cd62cbe9799228f6e08e882773.tar.gz tqt3-e02e31c8b9d854cd62cbe9799228f6e08e882773.zip |
Sync with latest script
Diffstat (limited to 'doc/html/object.html')
-rw-r--r-- | doc/html/object.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/object.html b/doc/html/object.html index ceb8cffbf..f89a61c97 100644 --- a/doc/html/object.html +++ b/doc/html/object.html @@ -36,7 +36,7 @@ body { background: #ffffff; color: black; } <p> The standard C++ Object Model provides very efficient runtime support for the object paradigm. But the C++ Object Model's static nature is inflexibile in certain problem domains. Graphical User Interface -programming is a domain that retquires both runtime efficiency and a +programming is a domain that requires both runtime efficiency and a high level of flexibility. TQt provides this, by combining the speed of C++ with the flexibility of the TQt Object Model. <p> TQt adds these features to C++: @@ -60,7 +60,7 @@ pointers which become "dangling pointers" when their objects are destroyed. <p> Many of these TQt features are implemented with standard C++ techniques, based on inheritance from <a href="qobject.html">TQObject</a>. Others, like the object communication mechanism and the dynamic property system, -retquire the <a href="metaobjects.html">Meta Object System</a> provided +require the <a href="metaobjects.html">Meta Object System</a> provided by TQt's own <a href="moc.html">Meta Object Compiler (moc)</a>. <p> The Meta Object System is a C++ extension that makes the language better suited to true component GUI programming. Although templates can |