refactor: use std::string for thread names

This commit is contained in:
stickies-v
2022-08-31 16:30:35 +01:00
parent 29d540b7ad
commit 97f5b20c12
5 changed files with 10 additions and 7 deletions

View File

@@ -982,7 +982,7 @@ void PrintSlotException(
std::string description = sender->metaObject()->className();
description += "->";
description += receiver->metaObject()->className();
PrintExceptionContinue(exception, description.c_str());
PrintExceptionContinue(exception, description);
}
void ShowModalDialogAsynchronously(QDialog* dialog)