1
0
mirror of https://github.com/KDE/latte-dock.git synced 2024-12-23 13:33:50 +03:00

Fix minor EBN issues

This commit is contained in:
Yuri Chornoivan 2019-09-02 20:07:53 +03:00
parent 4139948d11
commit 1aaef7aa2b
3 changed files with 11 additions and 1 deletions

View File

@ -18,6 +18,9 @@
*
*/
#ifndef SETTINGSTOOLS_H
#define SETTINGSTOOLS_H
// Qt
#include <QPalette>
#include <QStyleOptionViewItem>
@ -28,3 +31,5 @@ bool isSelected(const QStyleOptionViewItem &option);
QPalette::ColorGroup colorGroup(const QStyleOptionViewItem &option);
}
#endif

View File

@ -17,8 +17,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "indicator.h"
#include "indicatorresources.h"
#include "indicator.h"
// Qt
#include <QDebug>

View File

@ -18,6 +18,9 @@
*
*/
#ifndef COMMONTOOLS_H
#define COMMONTOOLS_H
// Qt
#include <QColor>
@ -35,3 +38,5 @@ float colorLumina(float r, float g, float b);
//! local paths have higher priority by default
QString standardPath(QString subPath, bool localFirst = true);
}
#endif