X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fmultilineedit.cpp;h=2c9d5947691131682441efae0055aa946b134d40;hb=6acb434eb00e38f345d9d201151d295f27e786c9;hp=133a24338dd3e4b95ef7e83cba7e46fe8478b01d;hpb=488f17a85739983b6357a53bd9158d81b6ac2114;p=quassel.git diff --git a/src/uisupport/multilineedit.cpp b/src/uisupport/multilineedit.cpp index 133a2433..2c9d5947 100644 --- a/src/uisupport/multilineedit.cpp +++ b/src/uisupport/multilineedit.cpp @@ -87,7 +87,6 @@ MultiLineEdit::~MultiLineEdit() { } - #if defined HAVE_SONNET && !defined HAVE_KDE Sonnet::Highlighter *MultiLineEdit::highlighter() const { @@ -206,11 +205,8 @@ void MultiLineEdit::updateSizeHint() // use the style to determine a decent size int h = qMin(qMax((int)document()->size().height() + scrollBarHeight, minPixelHeight), maxPixelHeight) + 2 * frameWidth(); -#if QT_VERSION < 0x050000 - QStyleOptionFrameV2 opt; -#else + QStyleOptionFrame opt; -#endif opt.initFrom(this); opt.rect = QRect(0, 0, 100, h); opt.lineWidth = lineWidth(); @@ -745,11 +741,7 @@ void MultiLineEdit::on_textChanged() QString msg = tr("Do you really want to paste %n line(s)?", "", lines.count()); msg += "

"; for (int i = 0; i < 4; i++) { -#if QT_VERSION < 0x050000 - msg += Qt::escape(lines[i].left(40)); -#else msg += lines[i].left(40).toHtmlEscaped(); -#endif if (lines[i].count() > 40) msg += "..."; msg += "
";