plugins: refactor class member vars (#10257)

This commit is contained in:
davc0n
2025-05-03 16:06:24 +02:00
committed by GitHub
parent d9cad5e1b6
commit 2d6ca96e07
7 changed files with 128 additions and 129 deletions

View File

@@ -130,11 +130,11 @@ void NCrashReporter::createAndSaveCrash(int sig) {
for (size_t i = 0; i < count; i++) {
auto p = plugins[i];
finalCrashReport += '\t';
finalCrashReport += p->name;
finalCrashReport += p->m_name;
finalCrashReport += " (";
finalCrashReport += p->author;
finalCrashReport += p->m_author;
finalCrashReport += ") ";
finalCrashReport += p->version;
finalCrashReport += p->m_version;
finalCrashReport += '\n';
}