MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / showCode

Method showCode

gui/qt/basiccodeviewerwindow.cpp:304–311  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

302}
303
304void BasicCodeViewerWindow::showCode() {
305 if (!hasCodeYet) {
306 ui->basicEdit->document()->setPlainText(m_showingFormatted ? m_formattedCode : m_originalCode);
307 hasCodeYet = true;
308 } else {
309 ui->basicEdit->update();
310 }
311}
312
313BasicCodeViewerWindow::~BasicCodeViewerWindow() {
314 delete ui;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected