mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-01-07 13:16:10 +00:00
Merge pull request #1406 from lioncash/const
DolphinQt: Make GetOS const
This commit is contained in:
commit
c76b804258
@ -60,7 +60,7 @@ void DSystemInfo::UpdateSystemInfo()
|
||||
m_ui->txtSysInfo->setPlainText(sysinfo);
|
||||
}
|
||||
|
||||
QString DSystemInfo::GetOS()
|
||||
QString DSystemInfo::GetOS() const
|
||||
{
|
||||
QString ret;
|
||||
/* DON'T REORDER WITHOUT READING Qt DOCS! */
|
||||
|
||||
@ -27,5 +27,5 @@ private:
|
||||
std::unique_ptr<Ui::DSystemInfo> m_ui;
|
||||
|
||||
void UpdateSystemInfo();
|
||||
QString GetOS();
|
||||
QString GetOS() const;
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user