1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 23:03:22 +02:00
GPXSee/src/graphitem.cpp

11 lines
183 B
C++
Raw Normal View History

2016-08-19 19:48:44 +02:00
#include <QBrush>
#include <QPen>
#include "graphitem.h"
void GraphItem::setColor(const QColor &color)
{
QBrush brush(color, Qt::SolidPattern);
QPen pen(brush, 0);
setPen(pen);
}