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 authored and milianw committed Nov 13, 2023
1 parent e935025 commit 52c54f7
Showing 1 changed file with 1 addition and 1 deletion.
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 52c54f7

Please sign in to comment.