UI: Rename 'obs' dir to 'UI'
This is to prevent confusion both when prefixing commits and when reading the directory structure for the first time.
This commit is contained in:
18
UI/crash-report.hpp
Normal file
18
UI/crash-report.hpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#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();
|
||||
};
|
Reference in New Issue
Block a user