summaryrefslogtreecommitdiffstats
path: root/doc/html/designer-manual-2.html
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-14 22:33:41 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-14 22:33:41 -0600
commit0f92dd542b65bc910caaf190b7c623aa5158c86a (patch)
tree120ab7e08fa0ffc354ef58d100f79a33c92aa6e6 /doc/html/designer-manual-2.html
parentd796c9dd933ab96ec83b9a634feedd5d32e1ba3f (diff)
downloadtqt3-0f92dd542b65bc910caaf190b7c623aa5158c86a.tar.gz
tqt3-0f92dd542b65bc910caaf190b7c623aa5158c86a.zip
Fix native TQt3 accidental conversion to tquit
Diffstat (limited to 'doc/html/designer-manual-2.html')
-rw-r--r--doc/html/designer-manual-2.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/designer-manual-2.html b/doc/html/designer-manual-2.html
index c8d3c488..1e9c4869 100644
--- a/doc/html/designer-manual-2.html
+++ b/doc/html/designer-manual-2.html
@@ -108,7 +108,7 @@ body { background: #ffffff; color: black; }
</ul><p>We will change a few properties for each of the push buttons in the <em>Property Editor</em> window.</p>
<ul><li><p>Click the left-most push button, and change its name to "clearPushButton", and its text to "&amp;Clear".</p>
<li><p>Click the middle push button and change its name to "calculatePushButton", its text to "Calculate", and its default property to "True".</p>
-<li><p>Click the right-most push button, change its name to "tquitPushButton", and change its text to "&amp;Quit".</p>
+<li><p>Click the right-most push button, change its name to "quitPushButton", and change its text to "&amp;Quit".</p>
</ul><p align="center"><img align="middle" src="qs-pushbutt.png" width="428" height="232">
</p>
<h5><a name="3-1-4"></a>Adding Spacers</h5>
@@ -179,9 +179,9 @@ body { background: #ffffff; color: black; }
<li><p>Select clearPushButton for the Sender, clicked() for the Signal, numberLineEdit for the Receiver, and setFocus() for the Slot.</p>
</ul><p align="center"><img align="middle" src="qs-editconn1.png" width="608" height="391">
</p>
-<p>We also need to connect the tquit button to the form:</p>
+<p>We also need to connect the quit button to the form:</p>
<ul><li><p>Click <b>New</b>.</p>
-<li><p>Select tquitPushButton for Sender, clicked() for Signal, ConversionForm for Receiver, and close() for Slot.</p>
+<li><p>Select quitPushButton for Sender, clicked() for Signal, ConversionForm for Receiver, and close() for Slot.</p>
</ul><p>We want to connect the calculate button and the other widgets, but the slot we want to use is not listed in the combobox. We will need to create a new slot so that we can select it from the list to complete our connections.</p>
<ul><li><p>Click <b>New</b>.</p>
<li><p>Select calculatePushButton for the Sender, clicked() for the Signal, and ConversionForm for the Receiver.</p>