diff options
Diffstat (limited to 'sinksh')
-rw-r--r-- | sinksh/repl/replStates.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sinksh/repl/replStates.h b/sinksh/repl/replStates.h index a0d3f90..0b14943 100644 --- a/sinksh/repl/replStates.h +++ b/sinksh/repl/replStates.h | |||
@@ -30,7 +30,7 @@ class ReadState : public QState | |||
30 | public: | 30 | public: |
31 | ReadState(QState *parent = 0); | 31 | ReadState(QState *parent = 0); |
32 | 32 | ||
33 | Q_SIGNALS: | 33 | signals: |
34 | void command(const QString &command); | 34 | void command(const QString &command); |
35 | void exitRequested(); | 35 | void exitRequested(); |
36 | 36 | ||
@@ -57,7 +57,7 @@ class EvalState : public QState | |||
57 | public: | 57 | public: |
58 | EvalState(QState *parent = 0); | 58 | EvalState(QState *parent = 0); |
59 | 59 | ||
60 | Q_SIGNALS: | 60 | signals: |
61 | void completed(); | 61 | void completed(); |
62 | void continueInput(); | 62 | void continueInput(); |
63 | void output(const QString &output); | 63 | void output(const QString &output); |
@@ -78,7 +78,7 @@ class PrintState : public QState | |||
78 | public: | 78 | public: |
79 | PrintState(QState *parent = 0); | 79 | PrintState(QState *parent = 0); |
80 | 80 | ||
81 | Q_SIGNALS: | 81 | signals: |
82 | void completed(); | 82 | void completed(); |
83 | 83 | ||
84 | protected: | 84 | protected: |