1
0
Fork 0

Fix QObject::connect: No such signal SourceView::showCpu()

This commit is contained in:
Torusrxxx 2023-10-03 14:27:22 +00:00 committed by GitHub
parent 6e1a5000e8
commit c589bb57c8
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -48,7 +48,6 @@ void SourceViewerManager::loadSourceFile(QString path, duint addr)
if(idx != -1)
title = path.mid(idx + 1);
SourceView* newView = new SourceView(path, addr, this);
connect(newView, SIGNAL(showCpu()), this, SIGNAL(showCpu()));
addTab(newView, title);
setCurrentIndex(count() - 1);
// https://forum.qt.io/post/132664