824c7b02c9
This crash report dialog is mostly just for the windows crash handling code. If a crash occurs, the user will be able to view the crash report and post it on the forums or give it to a developer for debugging purposes.
19 lines
255 B
C++
19 lines
255 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
class QPlainTextEdit;
|
|
|
|
class OBSCrashReport : public QDialog {
|
|
Q_OBJECT
|
|
|
|
QPlainTextEdit *textBox;
|
|
|
|
public:
|
|
OBSCrashReport(QWidget *parent, const char *text);
|
|
|
|
public slots:
|
|
void ExitClicked();
|
|
void CopyClicked();
|
|
};
|