mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
19 lines
414 B
C++
19 lines
414 B
C++
#include "lastruncrashdialog.hpp"
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
|
|
LastRunCrashDialog::LastRunCrashDialog()
|
|
{
|
|
QVBoxLayout *layout = new QVBoxLayout(this);
|
|
layout->addWidget(
|
|
new QLabel("The application wasn't terminated properly last time it was executed."));
|
|
|
|
this->setLayout(layout);
|
|
}
|
|
|
|
} // namespace widgets
|
|
} // namespace chatterino
|