Merge pull request #1406 from lioncash/const

DolphinQt: Make GetOS const
This commit is contained in:
comex 2014-10-27 15:04:41 -04:00
commit c76b804258
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ void DSystemInfo::UpdateSystemInfo()
m_ui->txtSysInfo->setPlainText(sysinfo); m_ui->txtSysInfo->setPlainText(sysinfo);
} }
QString DSystemInfo::GetOS() QString DSystemInfo::GetOS() const
{ {
QString ret; QString ret;
/* DON'T REORDER WITHOUT READING Qt DOCS! */ /* DON'T REORDER WITHOUT READING Qt DOCS! */

View File

@ -27,5 +27,5 @@ private:
std::unique_ptr<Ui::DSystemInfo> m_ui; std::unique_ptr<Ui::DSystemInfo> m_ui;
void UpdateSystemInfo(); void UpdateSystemInfo();
QString GetOS(); QString GetOS() const;
}; };