| 43 | ~InterProcessCommunicatorPrivate() override = default; |
| 44 | |
| 45 | public slots: |
| 46 | Q_NOREPLY void openFile(QString fileName, int position = -1) { |
| 47 | Q_Q(InterProcessCommunicator); |
| 48 | emit q->receivedOpenFile(fileName, position); |
| 49 | } |
| 50 | Q_NOREPLY void bringToFront() { |
| 51 | Q_Q(InterProcessCommunicator); |
| 52 | emit q->receivedBringToFront(); |
no outgoing calls
no test coverage detected