X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fstyledlabel.cpp;h=90af6e6c6e2fe4c756018c57595f8cb43a75bec7;hb=bd2fb9596ddd44d486a3ff4914bcac045210c498;hp=4aac9945989f96392621bec12bef1469e4625297;hpb=dae6003f55206168e6d3c5cbace84e5b0c65990c;p=quassel.git diff --git a/src/uisupport/styledlabel.cpp b/src/uisupport/styledlabel.cpp index 4aac9945..90af6e6c 100644 --- a/src/uisupport/styledlabel.cpp +++ b/src/uisupport/styledlabel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 by the Quassel Project * + * Copyright (C) 2005-2015 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -216,7 +216,11 @@ int StyledLabel::posToCursor(const QPointF &pos) void StyledLabel::mouseMoveEvent(QMouseEvent *event) { if (event->buttons() == Qt::NoButton) { +#if QT_VERSION < 0x050000 Clickable click = _clickables.atCursorPos(posToCursor(event->posF())); +#else + Clickable click = _clickables.atCursorPos(posToCursor(event->localPos())); +#endif if (click.isValid()) setHoverMode(click.start(), click.length()); else @@ -243,7 +247,11 @@ void StyledLabel::leaveEvent(QEvent *) void StyledLabel::mousePressEvent(QMouseEvent *event) { if (event->button() == Qt::LeftButton) { +#if QT_VERSION < 0x050000 Clickable click = _clickables.atCursorPos(posToCursor(event->posF())); +#else + Clickable click = _clickables.atCursorPos(posToCursor(event->localPos())); +#endif if (click.isValid()) emit clickableActivated(click); }