aboutsummaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/guiSQLiteStudio/dialogs/fileexecerrorsdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'SQLiteStudio3/guiSQLiteStudio/dialogs/fileexecerrorsdialog.h')
-rw-r--r--SQLiteStudio3/guiSQLiteStudio/dialogs/fileexecerrorsdialog.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/SQLiteStudio3/guiSQLiteStudio/dialogs/fileexecerrorsdialog.h b/SQLiteStudio3/guiSQLiteStudio/dialogs/fileexecerrorsdialog.h
new file mode 100644
index 0000000..2b474ce
--- /dev/null
+++ b/SQLiteStudio3/guiSQLiteStudio/dialogs/fileexecerrorsdialog.h
@@ -0,0 +1,26 @@
+#ifndef FILEEXECERRORSDIALOG_H
+#define FILEEXECERRORSDIALOG_H
+
+#include <QDialog>
+
+namespace Ui {
+ class FileExecErrorsDialog;
+}
+
+class QTableWidgetItem;
+
+class FileExecErrorsDialog : public QDialog
+{
+ Q_OBJECT
+
+ public:
+ explicit FileExecErrorsDialog(const QList<QPair<QString, QString> >& errors, bool rolledBack, QWidget *parent = nullptr);
+ ~FileExecErrorsDialog();
+
+ private:
+ QTableWidgetItem* item(const QString& text);
+
+ Ui::FileExecErrorsDialog *ui;
+};
+
+#endif // FILEEXECERRORSDIALOG_H