I am using the Qt 3 Designer manual to do my first Qt program because Qt 4 manual does not have such a Quick Start. The Qt 3 manual tells me to

* Select calculatePushButton for the Sender, clicked() for the Signal, and ConversionForm for the Receiver.
* Click Edit Slots to invoke the Edit Functions dialog. Click New Function. Type over the Function name with the name of our new function: convert(), then click OK.
* Select convert() from the Slot combobox to complete our connection.

But I do not see any "Edit Slots" in the Qt 4 signal/slot editor. Where do I add this convert() slot?

Thanks.