Skip to content

Commit

Permalink
ci: build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Dec 30, 2024
1 parent bb59eb1 commit 92d47a2
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ struct module_handler_base : public QObject
// FIXME
}

virtual ~module_handler_base();
void do_write(std::string_view res)
{
// FIXME
Expand All @@ -103,6 +104,7 @@ struct module_handler_base : public QObject
{
// FIXME
}
virtual void processMessage(std::string_view) = 0;
};
#else
struct module_handler_base : public QObject
Expand Down Expand Up @@ -403,7 +405,7 @@ struct module_handler final : public module_handler_base
std::string_view res
= R"_({"direction":"response","callbackId":1,"success":true,"payload":"{}"})_"
"\n";
qDebug().noquote().nospace() << "sending: " << res;
qDebug().noquote().nospace() << "sending: " << res.data();
do_write(res);
cbid = 1;
}
Expand Down

0 comments on commit 92d47a2

Please sign in to comment.