X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fstyledlabel.cpp;h=6e2361b0bde53e96b26279ba19c41b361f05fe1a;hp=d3d7982fb3d414488494d1596b2ec0ec009946ac;hb=ab7ef4d24f62b5848b628482b7762ebfc0b53e1a;hpb=c55df5f2d765b100b7a1ead5a72202f969aa9581 diff --git a/src/uisupport/styledlabel.cpp b/src/uisupport/styledlabel.cpp index d3d7982f..6e2361b0 100644 --- a/src/uisupport/styledlabel.cpp +++ b/src/uisupport/styledlabel.cpp @@ -156,11 +156,7 @@ void StyledLabel::setText(const QString &text) void StyledLabel::updateToolTip() { if (frameRect().width() - 2*frameWidth() < _layout.minimumWidth()) -#if QT_VERSION < 0x050000 - setToolTip(QString("%1").arg(Qt::escape(_layout.text()))); // only rich text gets wordwrapped! -#else setToolTip(QString("%1").arg(_layout.text().toHtmlEscaped())); // only rich text gets wordwrapped! -#endif else setToolTip(QString()); } @@ -216,11 +212,7 @@ 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 @@ -247,11 +239,7 @@ 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); }