Skip to content
Commit fd22b9b0 authored by Khudyakov Alexey's avatar Khudyakov Alexey
Browse files

Remove useless indirecion

void ObservingList::removeObject(SkyObject *o, bool sessionView) {
    if ( sessionView )
        slotRemoveObject( o, true );
    else
        slotRemoveObject( o );
}

equivalent to:

void ObservingList::removeObject(SkyObject *o, bool sessionView) {
    slotRemoveObject( o, sessionView );
}
parent c4022ae6
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment