xcb: remove duplicate QXcbConnection::supportsThreadedRendering()
It is unused and it duplicates QXcbConnection::threadedEventHandling():
bool supportsThreadedRendering() const { return m_reader->isRunning(); }
bool threadedEventHandling() const { return m_reader->isRunning(); }
"threadedEventHandling" is more appropriate name by looking at the body
of the function.
Change-Id: I99733e9c1ddb3ff75444d61d28eca54dcd6b0418
Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
bb10
parent
0e3d6214df
commit
f28d78df48
|
|
@ -469,7 +469,6 @@ public:
|
|||
bool hasXKB() const { return has_xkb; }
|
||||
bool hasXRender() const { return has_render_extension; }
|
||||
|
||||
bool supportsThreadedRendering() const { return m_reader->isRunning(); }
|
||||
bool threadedEventHandling() const { return m_reader->isRunning(); }
|
||||
|
||||
xcb_timestamp_t getTimestamp();
|
||||
|
|
|
|||
Loading…
Reference in New Issue