| 9 | #include <QFileDialog> |
| 10 | |
| 11 | BatchFindReplace::BatchFindReplace(QWidget *parent) |
| 12 | : QMainWindow(parent), m_curEditWin(nullptr), m_editTabWidget(nullptr) |
| 13 | { |
| 14 | ui.setupUi(this); |
| 15 | |
| 16 | m_mainNotepad = dynamic_cast<CCNotePad*>(parent); |
| 17 | } |
| 18 | |
| 19 | BatchFindReplace::~BatchFindReplace() |
| 20 | { |
nothing calls this directly
no outgoing calls
no test coverage detected