Changeset 575 for branches/midiAutosense/libs/hydrogen/src/preferences.cpp
- Timestamp:
- 10/16/08 19:54:32 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/midiAutosense/libs/hydrogen/src/preferences.cpp
r549 r575 478 478 QString s_param = pMidiEventNode->FirstChild("parameter")->FirstChild()->Value(); 479 479 480 action * pAction = new action( s_action );480 Action * pAction = new Action( s_action ); 481 481 482 482 pAction->setParameter1( s_param ); … … 496 496 QString s_eventParameter = pMidiEventNode->FirstChild("eventParameter")->FirstChild()->Value(); 497 497 498 action * pAction = new action( s_action );498 Action * pAction = new Action( s_action ); 499 499 500 500 pAction->setParameter1( s_param ); … … 512 512 QString s_eventParameter = pMidiEventNode->FirstChild("eventParameter")->FirstChild()->Value(); 513 513 514 action * pAction = new action( s_action );514 Action * pAction = new Action( s_action ); 515 515 516 516 pAction->setParameter1( s_param ); … … 809 809 810 810 midiMap * mM = midiMap::getInstance(); 811 std::map< QString , action *> mmcMap = mM->getMMCMap();811 std::map< QString , Action *> mmcMap = mM->getMMCMap(); 812 812 813 813 … … 816 816 { 817 817 818 std::map< QString , action *>::iterator dIter( mmcMap.begin() );818 std::map< QString , Action *>::iterator dIter( mmcMap.begin() ); 819 819 for( dIter = mmcMap.begin(); dIter != mmcMap.end(); dIter++ ){ 820 820 821 821 QString event; 822 action * pAction;822 Action * pAction; 823 823 824 824 event = dIter->first; … … 842 842 843 843 for( int note=0; note < 128; note++ ){ 844 action * pAction = mM->getNoteAction( note );844 Action * pAction = mM->getNoteAction( note ); 845 845 if( pAction != NULL && pAction->getType() != "NOTHING") 846 846 { … … 860 860 861 861 for( int parameter=0; parameter < 128; parameter++ ){ 862 action * pAction = mM->getCCAction( parameter );862 Action * pAction = mM->getCCAction( parameter ); 863 863 if( pAction != NULL && pAction->getType() != "NOTHING") 864 864 {