Add qt5-svg to deps

This commit is contained in:
ArsenArsen 2017-09-09 13:54:32 +02:00
parent 423383dca9
commit bd2adc5e53
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ url="https://github.com/ArsenArsen/KShare"
license=('MIT')
provides=(kshare)
conflicts=(kshare)
depends=(qt5-base qt5-x11extras xcb-util-cursor ffmpeg libxfixes)
depends=(qt5-base qt5-x11extras qt5-svg xcb-util-cursor ffmpeg libxfixes)
makedepends=('git')
source=(git+https://github.com/ArsenArsen/KShare.git#branch=dev)
sha1sums=('SKIP')

View File

@ -8,7 +8,7 @@ arch=('i686' 'x86_64')
url="https://github.com/ArsenArsen/KShare"
license=('MIT')
provides=('kshare=$pkgver')
depends=(qt5-base qt5-x11extras xcb-util-cursor ffmpeg libxfixes)
depends=(qt5-base qt5-x11extras qt5-svg xcb-util-cursor ffmpeg libxfixes)
makedepends=('git')
source=(git+https://github.com/ArsenArsen/KShare.git)
sha1sums=('SKIP')

View File

@ -13,7 +13,7 @@ SelectionRectangle::SelectionRectangle(qreal x, qreal y, qreal w, qreal h, QGrap
}
SelectionRectangle::SelectionRectangle(QRectF rect, QGraphicsItem *parent)
: SelectionRectangle(rect.left(), rect.top(), rect.width(), rect.height()) {
: SelectionRectangle(rect.left(), rect.top(), rect.width(), rect.height(), parent) {
}
void SelectionRectangle::paint(QPainter *painter, const QStyleOptionGraphicsItem *options, QWidget *widget) {