mirror of
https://github.com/hyprwm/hyprwayland-scanner.git
synced 2024-11-22 04:35:59 +01:00
core: fix non-empty args in send* fns
This commit is contained in:
parent
e50948947a
commit
5f40a4fd2f
1 changed files with 5 additions and 3 deletions
|
@ -408,13 +408,15 @@ static const void* {}[] = {{
|
|||
for (auto& ev : iface.events) {
|
||||
const auto EVENT_NAME = camelize("send_" + ev.name);
|
||||
|
||||
std::string argsC = ", ";
|
||||
std::string argsC = "";
|
||||
for (auto& arg : ev.args) {
|
||||
argsC += arg.CType + " " + arg.name + ", ";
|
||||
}
|
||||
|
||||
argsC.pop_back();
|
||||
argsC.pop_back();
|
||||
if (!argsC.empty()) {
|
||||
argsC.pop_back();
|
||||
argsC.pop_back();
|
||||
}
|
||||
|
||||
std::string argsN = ", ";
|
||||
for (auto& arg : ev.args) {
|
||||
|
|
Loading…
Reference in a new issue