mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-17 00:43:56 +02:00
Clean up X11 client message functions
clang-tidy would warn about all parameters being the same, which is true, but that's kind of the point here.
This commit is contained in:
@@ -191,12 +191,12 @@ class WineXdndProxy {
|
||||
*
|
||||
* https://www.freedesktop.org/wiki/Specifications/XDND/#clientmessages
|
||||
*/
|
||||
void send_xdnd_message(const xcb_window_t& window,
|
||||
const xcb_atom_t message_type,
|
||||
const uint32_t data1,
|
||||
const uint32_t data2,
|
||||
const uint32_t data3,
|
||||
const uint32_t data4) const noexcept;
|
||||
void send_xdnd_message(xcb_window_t window,
|
||||
xcb_atom_t message_type,
|
||||
uint32_t data1,
|
||||
uint32_t data2,
|
||||
uint32_t data3,
|
||||
uint32_t data4) const noexcept;
|
||||
|
||||
/**
|
||||
* We need a dedicated X11 connection for our proxy because we can have
|
||||
|
||||
Reference in New Issue
Block a user