2008/10/6 Chris Cannam <[EMAIL PROTECTED]>:
> I've put up a wiki page about actions.
>

It might be possible (?) (as a further simplification) instead of calling
       createAction( "file_save", SLOT(slotFileSave()) );
to use
       createAction( "file_save", "slotFileSave()" );


and in create Action:

QAction * RosegardenGUIApp::createAction(QString actionName, QString
connection)
{
   QAction *action = new QAction(this);
   action->setObjectName(actionName);
   connect( action, SIGNAL(triggered()), this, SLOT(connection) );
   return action;
}
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Rosegarden-devel mailing list
[email protected] - use the link below to unsubscribe
https://lists.sourceforge.net/lists/listinfo/rosegarden-devel

Reply via email to