fix for os x build, 0.8.53.dev

This commit is contained in:
John Preston 2015-08-28 18:59:43 +03:00
parent 9a51e2c7e3
commit 9ac90115d8
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ OverviewInner::CachedLink::CachedLink(HistoryItem *item) : text(st::msgMinWidth)
till = msgText.size();
}
if (till > from) {
TextParseOptions opts = { TextParseMultiline, st::linksMaxWidth, 3 * st::msgFont->height, Qt::LayoutDirectionAuto };
TextParseOptions opts = { TextParseMultiline, int32(st::linksMaxWidth), 3 * st::msgFont->height, Qt::LayoutDirectionAuto };
text.setText(st::msgFont, msgText.mid(from, till - from), opts);
}
if (page && page->photo) {