Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
facontidavide committed Oct 19, 2023
1 parent 621af92 commit 583cc21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 3rdparty/Qt-Advanced-Docking/src/DockOverlay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -806,10 +806,10 @@ void CDockOverlayCross::setIconColors(const QString& Colors)
{"Arrow", CDockOverlayCross::ArrowColor},
{"Shadow", CDockOverlayCross::ShadowColor}};

auto ColorList = Colors.split(' ', Qt::SkipEmptyParts);
auto ColorList = Colors.split(' ', QString::SkipEmptyParts);
for (const auto& ColorListEntry : ColorList)
{
auto ComponentColor = ColorListEntry.split('=', Qt::SkipEmptyParts);
auto ComponentColor = ColorListEntry.split('=', QString::SkipEmptyParts);
int Component = ColorCompenentStringMap.value(ComponentColor[0], -1);
if (Component < 0)
{
Expand Down

0 comments on commit 583cc21

Please sign in to comment.