CallerCoverageItem::CallerCoverageItem(QListView* parent, int skipped, Coverage* c, TraceFunction* base, TraceCostType* ct, TraceCost::CostType gt) : QListViewItem(parent) { _skipped = skipped; _coverage = c; _function = c ? c->function() : 0; _base = base; _groupType = TraceCost::NoCostType; setText(3, i18n("(%n function skipped)", "(%n functions skipped)", _skipped)); setCostType(ct); setGroupType(gt); }
CallerCoverageItem::CallerCoverageItem(QListView* parent, Coverage* c, TraceFunction* base, TraceCostType* ct, TraceCost::CostType gt) : QListViewItem(parent) { _skipped = 0; _coverage = c; _function = c ? c->function() : 0; _base = base; _groupType = TraceCost::NoCostType; setText(3, _function->prettyNameWithLocation()); setCostType(ct); setGroupType(gt); }
FloatingGroup::FloatingGroup(QGraphicsItem *parent, Qt::WindowFlags wFlags) : AbstractGroup(parent, wFlags) { resize(200,200); setGroupType(AbstractGroup::FreeGroup); }