Skip to content

Commit

Permalink
Fix KF6 build
Browse files Browse the repository at this point in the history
TerminalInterfaceV2 was merged into TerminalInterface

Since Hotspot doesn't use any of the features of V2 we can just use TerminalInterface everywhere
  • Loading branch information
nicolasfella committed Nov 13, 2023
1 parent e935025 commit cf627d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 3rdparty/perfparser
2 changes: 1 addition & 1 deletion src/perfoutputwidgetkonsole.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ void PerfOutputWidgetKonsole::addPartToLayout()
m_konsoleFile = new QTemporaryFile(m_konsolePart);
m_konsoleFile->open();

const auto terminalInterface = qobject_cast<TerminalInterfaceV2*>(m_konsolePart);
const auto terminalInterface = qobject_cast<TerminalInterface*>(m_konsolePart);
terminalInterface->startProgram(tailExe(), {tailExe(), QStringLiteral("-f"), m_konsoleFile->fileName()});

m_konsolePart->widget()->focusWidget()->installEventFilter(this);
Expand Down

0 comments on commit cf627d1

Please sign in to comment.