summaryrefslogtreecommitdiff
path: root/src/lockeddialog.h
diff options
context:
space:
mode:
authorTannin <sherb@gmx.net>2016-06-30 22:15:50 +0200
committerTannin <sherb@gmx.net>2016-06-30 22:15:50 +0200
commit64590a10d7832b6d94dcf4539f7da93d6eb889b9 (patch)
treeeab9ea4119010f8ee28e0b6f94caefaad33e4bdc /src/lockeddialog.h
parenta00cda607cd9115d06c1185f78bcdded28c8b09d (diff)
parent4a582e524dd012ed9d5fdb4f9c97aab22c8dac85 (diff)
Merge branch 'master' into new_vfs_library
Diffstat (limited to 'src/lockeddialog.h')
-rw-r--r--src/lockeddialog.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/lockeddialog.h b/src/lockeddialog.h
index 60af425d..29ac459b 100644
--- a/src/lockeddialog.h
+++ b/src/lockeddialog.h
@@ -20,7 +20,12 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#ifndef LOCKEDDIALOG_H
#define LOCKEDDIALOG_H
-#include <QDialog>
+#include <QDialog> // for QDialog
+#include <QObject> // for Q_OBJECT, slots
+#include <QString> // for QString
+
+class QResizeEvent;
+class QWidget;
namespace Ui {
class LockedDialog;
@@ -49,6 +54,10 @@ public:
**/
bool unlockClicked() const { return m_UnlockClicked; }
+ /**
+ * @brief set the name of the process being run
+ * @param name of process
+ */
void setProcessName(const QString &name);
protected: