Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions styleplugins/chameleon/chameleonstyle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
#include <DTabBar>
#include <DSearchEdit>
#include <DButtonBox>
#include <DDciIcon>

Check warning on line 18 in styleplugins/chameleon/chameleonstyle.cpp

View workflow job for this annotation

GitHub Actions / static-check / static-check

Include file: <DDciIcon> not found. Please note: Cppcheck does not need standard library headers to get proper results.

Check warning on line 18 in styleplugins/chameleon/chameleonstyle.cpp

View workflow job for this annotation

GitHub Actions / cppcheck

Include file: <DDciIcon> not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <DDciIconPalette>

Check warning on line 19 in styleplugins/chameleon/chameleonstyle.cpp

View workflow job for this annotation

GitHub Actions / static-check / static-check

Include file: <DDciIconPalette> not found. Please note: Cppcheck does not need standard library headers to get proper results.

Check warning on line 19 in styleplugins/chameleon/chameleonstyle.cpp

View workflow job for this annotation

GitHub Actions / cppcheck

Include file: <DDciIconPalette> not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <DSizeMode>

Check warning on line 20 in styleplugins/chameleon/chameleonstyle.cpp

View workflow job for this annotation

GitHub Actions / static-check / static-check

Include file: <DSizeMode> not found. Please note: Cppcheck does not need standard library headers to get proper results.

Check warning on line 20 in styleplugins/chameleon/chameleonstyle.cpp

View workflow job for this annotation

GitHub Actions / cppcheck

Include file: <DSizeMode> not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <dtkgui_config.h>
#include <DGuiApplicationHelper>

Check warning on line 21 in styleplugins/chameleon/chameleonstyle.cpp

View workflow job for this annotation

GitHub Actions / static-check / static-check

Include file: <DGuiApplicationHelper> not found. Please note: Cppcheck does not need standard library headers to get proper results.

Check warning on line 21 in styleplugins/chameleon/chameleonstyle.cpp

View workflow job for this annotation

GitHub Actions / cppcheck

Include file: <DGuiApplicationHelper> not found. Please note: Cppcheck does not need standard library headers to get proper results.

#include <QLabel>

Check warning on line 23 in styleplugins/chameleon/chameleonstyle.cpp

View workflow job for this annotation

GitHub Actions / static-check / static-check

Include file: <QLabel> not found. Please note: Cppcheck does not need standard library headers to get proper results.

Check warning on line 23 in styleplugins/chameleon/chameleonstyle.cpp

View workflow job for this annotation

GitHub Actions / cppcheck

Include file: <QLabel> not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <QCalendarWidget>

Check warning on line 24 in styleplugins/chameleon/chameleonstyle.cpp

View workflow job for this annotation

GitHub Actions / static-check / static-check

Include file: <QCalendarWidget> not found. Please note: Cppcheck does not need standard library headers to get proper results.

Check warning on line 24 in styleplugins/chameleon/chameleonstyle.cpp

View workflow job for this annotation

GitHub Actions / cppcheck

Include file: <QCalendarWidget> not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <QLayout>
#include <QVariant>
#include <QDebug>
Expand Down Expand Up @@ -4755,7 +4755,7 @@
view->setItemDelegate(new QStyledItemDelegate);
}

if (DApplication::isDXcbPlatform() || (qApp->platformName() == "dwayland" || qApp->property("_d_isDwayland").toBool())) {
if (DApplication::isDXcbPlatform() || DGuiApplicationHelper::testAttribute(DGuiApplicationHelper::IsWaylandPlatform)) {
bool is_menu = qobject_cast<QMenu *>(w);
bool is_tip = w->inherits("QTipLabel");

Expand Down
Loading