Clean exported headers of the Core plugin.

Change-Id: I26472d568844d5fee62323e01f5c5c12082d5450
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Friedemann Kleint
2015-02-26 13:38:54 +01:00
parent 93f57a99a1
commit 54da18eaaa
103 changed files with 169 additions and 49 deletions

View File

@@ -35,6 +35,7 @@
#include <QCheckBox>
#include <QGroupBox>
#include <QIcon>
#include <QLabel>
#include <QPushButton>
@@ -80,6 +81,11 @@
side of the \gui Options dialog.
*/
QIcon Core::IOptionsPage::categoryIcon() const
{
return QIcon(m_categoryIcon);
}
/*!
\fn QWidget *IOptionsPage::widget()
@@ -183,3 +189,8 @@ bool Core::IOptionsPage::matches(const QString &searchKeyWord) const
return true;
return false;
}
QIcon Core::IOptionsPageProvider::categoryIcon() const
{
return QIcon(m_categoryIcon);
}