taskswitcher/activitytsplugin/src/activitytsmodel.cpp
changeset 127 7b66bc3c6dc9
parent 125 26079c1bb561
equal deleted inserted replaced
126:efda7c0771b9 127:7b66bc3c6dc9
    86                                   const MTsRunningApplicationStorage& storage)
    86                                   const MTsRunningApplicationStorage& storage)
    87 {
    87 {
    88     Q_UNUSED(resources);
    88     Q_UNUSED(resources);
    89     mRunningAppsUid.clear();
    89     mRunningAppsUid.clear();
    90     for (int i(0); i < storage.Count(); ++i) {
    90     for (int i(0); i < storage.Count(); ++i) {
    91         mRunningAppsUid.append(storage[i].UidL().iUid);
    91         if(MTsRunningApplication::None == storage[i].HideMode()) {
       
    92             mRunningAppsUid.append(storage[i].Uid().iUid);
       
    93         }
    92     }
    94     }
    93     if(filterActivity()) {
    95     if(filterActivity()) {
    94         emit dataChanged();
    96         emit dataChanged();
    95     }
    97     }
    96 }
    98 }