Show
Ignore:
Timestamp:
10/16/08 19:54:32 (5 years ago)
Author:
smoors
Message:

renamed action-class to "Action" as a preparation for merge with trunk

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/midiAutosense/libs/hydrogen/src/preferences.cpp

    r549 r575  
    478478                                                QString s_param = pMidiEventNode->FirstChild("parameter")->FirstChild()->Value(); 
    479479         
    480                                                 action * pAction = new action( s_action ); 
     480                                                Action * pAction = new Action( s_action ); 
    481481 
    482482                                                pAction->setParameter1( s_param ); 
     
    496496                                                QString s_eventParameter = pMidiEventNode->FirstChild("eventParameter")->FirstChild()->Value(); 
    497497         
    498                                                 action * pAction = new action( s_action ); 
     498                                                Action * pAction = new Action( s_action ); 
    499499 
    500500                                                pAction->setParameter1( s_param ); 
     
    512512                                                QString s_eventParameter = pMidiEventNode->FirstChild("eventParameter")->FirstChild()->Value(); 
    513513         
    514                                                 action * pAction = new action( s_action ); 
     514                                                Action * pAction = new Action( s_action ); 
    515515 
    516516                                                pAction->setParameter1( s_param ); 
     
    809809 
    810810        midiMap * mM = midiMap::getInstance(); 
    811         std::map< QString , action *> mmcMap = mM->getMMCMap(); 
     811        std::map< QString , Action *> mmcMap = mM->getMMCMap(); 
    812812 
    813813 
     
    816816        { 
    817817                 
    818                 std::map< QString , action *>::iterator dIter( mmcMap.begin() ); 
     818                std::map< QString , Action *>::iterator dIter( mmcMap.begin() ); 
    819819                for( dIter = mmcMap.begin(); dIter != mmcMap.end(); dIter++ ){ 
    820820                         
    821821                        QString event; 
    822                         action * pAction; 
     822                        Action * pAction; 
    823823 
    824824                        event = dIter->first; 
     
    842842                 
    843843                for( int note=0; note < 128; note++ ){ 
    844                         action * pAction = mM->getNoteAction( note ); 
     844                        Action * pAction = mM->getNoteAction( note ); 
    845845                        if( pAction != NULL && pAction->getType() != "NOTHING") 
    846846                        { 
     
    860860 
    861861                for( int parameter=0; parameter < 128; parameter++ ){ 
    862                         action * pAction = mM->getCCAction( parameter ); 
     862                        Action * pAction = mM->getCCAction( parameter ); 
    863863                        if( pAction != NULL && pAction->getType() != "NOTHING") 
    864864                        {