appinstaller/AppinstUi/sisxsifplugin/tsrc/testinstaller/activerunner.cpp
changeset 29 26b6f0522fd8
parent 25 98b66e4fb0be
child 42 d17dc5398051
equal deleted inserted replaced
25:98b66e4fb0be 29:26b6f0522fd8
    37     if (d_ptr) {
    37     if (d_ptr) {
    38         d_ptr->Install(fileName, silent);
    38         d_ptr->Install(fileName, silent);
    39     }
    39     }
    40 }
    40 }
    41 
    41 
       
    42 void ActiveRunner::remove(const Usif::TComponentId& aComponentId, bool silent)
       
    43 {
       
    44     if (d_ptr) {
       
    45         d_ptr->Remove(aComponentId, silent);
       
    46     }
       
    47 }
       
    48 
       
    49 void ActiveRunner::remove(const TUid& aUid, const TDesC8& aMime, bool silent)
       
    50 {
       
    51     if (d_ptr) {
       
    52         d_ptr->Remove(aUid, aMime, silent);
       
    53     }
       
    54 }
       
    55 
    42 void ActiveRunner::handleCompletion()
    56 void ActiveRunner::handleCompletion()
    43 {
    57 {
    44     emit opCompleted();
    58     emit opCompleted();
    45 }
    59 }
    46 
    60