01b274f1da
This is to prevent confusion both when prefixing commits and when reading the directory structure for the first time.
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();
|
|
};
|