01-22-2013 12:10 AM
Hi
The bb:Application class has the thumbnail() SIGNAL which i would like to use for my Cascades application. Since i have a Cascades based GUI project, i am using the bb::cascades::Application to create the application.
The API reference for bb:Application says :
void TestObject::onThumbnail() {
// Do something here
}
int main(int argc, char **argv) {
bb::Application app(argc, argv);
TestObject testObject;
QObject::connect(&app, SIGNAL( thumbnail() ), &testObject, SLOT( onThumbnail() ));
}How can i invoke the SIGNAL from CPP when i am using bb::cascades::Application istead of bb::Application?
- Dishooom
Solved! Go to Solution.
01-22-2013 12:41 AM
01-22-2013 02:06 AM - edited 01-22-2013 02:08 AM
Thanks Kyle....![]()