replaced QList to std::vector

codestyle
This commit is contained in:
Michele Spagnolo 2022-04-14 14:53:30 +02:00 committed by pereverzev+v
parent ffae882e06
commit ff75767fd5
2 changed files with 2 additions and 2 deletions

View file

@ -67,7 +67,7 @@ void DebugPaint::paintElementDebug(mu::draw::Painter& painter, const Ms::Engravi
debugger->restorePenColor();
}
void DebugPaint::paintElementsDebug(mu::draw::Painter& painter, const QList<Ms::EngravingItem*>& elements)
void DebugPaint::paintElementsDebug(mu::draw::Painter& painter, const std::vector<Ms::EngravingItem*>& elements)
{
// Setup debug provider
auto originalProvider = painter.provider();

View file

@ -43,7 +43,7 @@ class DebugPaint
public:
static void paintElementDebug(mu::draw::Painter& painter, const Ms::EngravingItem* element, std::shared_ptr<PaintDebugger>& debugger);
static void paintElementsDebug(mu::draw::Painter& painter, const QList<Ms::EngravingItem*>& elements);
static void paintElementsDebug(mu::draw::Painter& painter, const std::vector<Ms::EngravingItem*>& elements);
static void paintPageDebug(mu::draw::Painter& painter, const Ms::Page* page);
};