ui: added automatic include path detection for C/C++ Source Groups

This commit is contained in:
mlangkabel
2018-01-09 12:13:16 +01:00
parent 978cf4f4ed
commit 686ba504c2
35 changed files with 877 additions and 248 deletions
+9
View File
@@ -213,6 +213,15 @@ void QtWindow::updateTitle(QString title)
}
}
std::string QtWindow::getTitle() const
{
if (m_title)
{
return m_title->text().toStdString();
}
return "";
}
void QtWindow::updateSubTitle(QString subTitle)
{
if (m_subTitle)