ports/multimedia/kmplayer/files/patch-src_viewarea.cpp
Tobias C. Berner 34c596e266 multimedia/kmplayer: moved from multimedia/kmplayer-kde4 and updated to KF5 based version
- as to not have this port be removed tomororw, update it to KF5

Differential Revision:	https://reviews.freebsd.org/D18632
2018-12-30 11:45:34 +00:00

11 lines
696 B
C++

--- src/viewarea.cpp.orig 2018-12-22 19:33:17 UTC
+++ src/viewarea.cpp
@@ -2535,7 +2535,7 @@ void VideoOutput::useIndirectWidget (bool inderect) {
if (!m_plain_window) {
xcb_screen_t* scr = m_view->viewArea()->d->screen_of_display(connection, QX11Info::appScreen());
m_plain_window = xcb_generate_id(connection);
- uint32_t values[] = { scr->black_pixel, m_input_mask };
+ uint32_t values[] = { scr->black_pixel, static_cast<uint32_t>(m_input_mask) };
#if QT_VERSION >= 0x050600
int devicew = (int)(width() * devicePixelRatioF());
int deviceh = (int)(height() * devicePixelRatioF());