Ok here is my problem. I have to connect a QAction signal to a QTextEdit slot. Here are my parameters

connect
object *
SIGNAL (triggered ())
object *
QString (containing slot name) -- Eample: signal is void copy (), string is "copy"

How can I do this. Currently all of my attenpts have failed. I always get a false returned from the connect function.

On thing I know is this should be possible because the slots can be found via QMetaObject::invokeMethod using a string.