Qt: Fix uninitialized variable

This commit is contained in:
Vicki Pfau 2024-01-30 16:06:57 -08:00
parent 5aa7c955f1
commit 2ab7500e3e
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ protected:
private:
Ui::DebuggerConsole m_ui;
int m_historyOffset;
int m_historyOffset = 0;
DebuggerConsoleController* m_consoleController;
};