| 626 | } |
| 627 | |
| 628 | void MainWindow::redisInfo() { |
| 629 | if(!_redisClient) { |
| 630 | QMessageBox::information(this,tr("错误"),tr("客户端连接为空!")); |
| 631 | return; |
| 632 | } |
| 633 | RedisInfoDialog redisInfoDialog(_redisClient); |
| 634 | redisInfoDialog.exec(); |
| 635 | } |
| 636 | |
| 637 | void MainWindow::batchOprate() { |
| 638 | if(!_redisClient) { |
nothing calls this directly
no outgoing calls
no test coverage detected