Remove unnecessary use of wxLogXXX("%s")

Just pass the strings directly to wxLogXXX functions as this works
correctly after the changes of the parent commit.
This commit is contained in:
Vadim Zeitlin
2025-05-17 22:44:48 +02:00
parent 01c265db15
commit 74a1498eee
12 changed files with 25 additions and 22 deletions
+1 -1
View File
@@ -79,7 +79,7 @@ protected:
s << '\t' << reply[n] << '\n';
}
wxLogMessage("%s", s);
wxLogMessage(s);
return true;
}