| 647 | } |
| 648 | |
| 649 | void |
| 650 | InspectorUI::connectNetForwarder() |
| 651 | { |
| 652 | connect( |
| 653 | this->socketForwarder, |
| 654 | SIGNAL(stopped(void)), |
| 655 | this, |
| 656 | SLOT(onNetError(void))); |
| 657 | |
| 658 | connect( |
| 659 | this->socketForwarder, |
| 660 | SIGNAL(swamped(void)), |
| 661 | this, |
| 662 | SLOT(onNetSwamped(void))); |
| 663 | |
| 664 | connect( |
| 665 | this->socketForwarder, |
| 666 | SIGNAL(dataRate(qreal)), |
| 667 | this, |
| 668 | SLOT(onNetRate(qreal))); |
| 669 | |
| 670 | connect( |
| 671 | this->socketForwarder, |
| 672 | SIGNAL(commit(void)), |
| 673 | this, |
| 674 | SLOT(onNetCommit(void))); |
| 675 | |
| 676 | connect( |
| 677 | this->socketForwarder, |
| 678 | SIGNAL(ready(void)), |
| 679 | this, |
| 680 | SLOT(onNetReady(void))); |
| 681 | } |
| 682 | |
| 683 | std::string |
| 684 | InspectorUI::captureFileName(void) const |
nothing calls this directly
no outgoing calls
no test coverage detected