summaryrefslogtreecommitdiffstats
path: root/sinksh
diff options
context:
space:
mode:
Diffstat (limited to 'sinksh')
-rw-r--r--sinksh/repl/replStates.h6
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
30public: 30public:
31 ReadState(QState *parent = 0); 31 ReadState(QState *parent = 0);
32 32
33Q_SIGNALS: 33signals:
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
57public: 57public:
58 EvalState(QState *parent = 0); 58 EvalState(QState *parent = 0);
59 59
60Q_SIGNALS: 60signals:
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
78public: 78public:
79 PrintState(QState *parent = 0); 79 PrintState(QState *parent = 0);
80 80
81Q_SIGNALS: 81signals:
82 void completed(); 82 void completed();
83 83
84protected: 84protected: