| 68 | } |
| 69 | |
| 70 | void ReportPane::onChangeReportList(const QString &listName) |
| 71 | { |
| 72 | if (!srcView || !libView) |
| 73 | return; |
| 74 | |
| 75 | srcView->hide(); |
| 76 | libView->hide(); |
| 77 | |
| 78 | if (listName == REPORT_SRCLIST) |
| 79 | srcView->show(); |
| 80 | else if (listName == REPORT_LIBLIST) |
| 81 | libView->show(); |
| 82 | } |
| 83 | |
| 84 | void ReportPane::initUI() |
| 85 | { |