mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Remove explicit CrashHandler template param
No longer necessary since we call new CrashHandler
This commit is contained in:
parent
44503d2e63
commit
78c028d4e0
|
@ -120,7 +120,7 @@ Application::Application(Settings &_settings, const Paths &paths,
|
|||
, toasts(&this->emplace<Toasts>())
|
||||
, imageUploader(&this->emplace<ImageUploader>())
|
||||
, seventvAPI(&this->emplace<SeventvAPI>())
|
||||
, crashHandler(&this->emplace<CrashHandler>(new CrashHandler(paths)))
|
||||
, crashHandler(&this->emplace(new CrashHandler(paths)))
|
||||
|
||||
, commands(&this->emplace<CommandController>())
|
||||
, notifications(&this->emplace<NotificationController>())
|
||||
|
|
Loading…
Reference in a new issue