diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-02-17 13:27:56 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-02-17 13:27:56 +0100 |
commit | 19f2cbb9566eddac697c673eed63c0e946f330a6 (patch) | |
tree | fc5b25ece35bac0e9bf94e1e6fe081cbc2ad07d0 /sinksh | |
parent | 65e483c178a1980eb36e7b8efb8a76c7112f209e (diff) | |
download | sink-19f2cbb9566eddac697c673eed63c0e946f330a6.tar.gz sink-19f2cbb9566eddac697c673eed63c0e946f330a6.zip |
Use slots/signals instead of Q_SLOTS/Q_SIGNALS for clang-format compatibility
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: |