Hi Volks,
I'm trying to connect some http signals... obviously, as all good newbies, it doesn't work...
Here is my class declaration
Code:
And here is what I'm doing in my constructor
Code:
myFile.setFileName("something.txt"); bool result; result = connect(http, SIGNAL(requestFinished(int, bool)), this, SLOT(tryFinished(int, bool))); result = connect(http, SIGNAL(dataReadProgress(int, int)), this, SLOT(tryReadProgress(int, int)));
But... result is alway false. It sounds like connect does not recognize my methods to be valid.
Where I'm doing wrong???????
