mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
Convert LOG_TYPE and LOG_LEVELS to enum class
This commit is contained in:
parent
ba107819ec
commit
04d8cdfe88
46 changed files with 254 additions and 250 deletions
|
@ -36,7 +36,7 @@ private:
|
|||
void LoadSettings();
|
||||
void SaveSettings();
|
||||
|
||||
void Log(Common::Log::LOG_LEVELS level, const char* text) override;
|
||||
void Log(Common::Log::LogLevel level, const char* text) override;
|
||||
|
||||
// Log
|
||||
QCheckBox* m_log_wrap;
|
||||
|
@ -46,7 +46,7 @@ private:
|
|||
|
||||
QTimer* m_timer;
|
||||
|
||||
using LogEntry = std::pair<std::string, Common::Log::LOG_LEVELS>;
|
||||
using LogEntry = std::pair<std::string, Common::Log::LogLevel>;
|
||||
|
||||
// Maximum number of lines to show in log viewer
|
||||
static constexpr int MAX_LOG_LINES = 5000;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue