aboutsummaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/coreSQLiteStudio/common/signalwait.h
diff options
context:
space:
mode:
Diffstat (limited to 'SQLiteStudio3/coreSQLiteStudio/common/signalwait.h')
-rw-r--r--SQLiteStudio3/coreSQLiteStudio/common/signalwait.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/SQLiteStudio3/coreSQLiteStudio/common/signalwait.h b/SQLiteStudio3/coreSQLiteStudio/common/signalwait.h
index 7b7b903..57759be 100644
--- a/SQLiteStudio3/coreSQLiteStudio/common/signalwait.h
+++ b/SQLiteStudio3/coreSQLiteStudio/common/signalwait.h
@@ -12,12 +12,15 @@ class SignalWait : public QObject
bool wait(int msTimeout);
void reset();
+ void addFailSignal(QObject *object, const char *signal);
private:
bool called = false;
+ bool failed = false;
private slots:
void handleSignal();
+ void handleFailSignal();
};
#endif // SIGNALWAIT_H