Skip to content

Commit

Permalink
chore: functionCache数据初始化时多了个逗号
Browse files Browse the repository at this point in the history
functionCache数据初始化supportForSplittingWindow
和sendEndStartupNotifition多了个逗号

Log: 
Influence: none
Change-Id: I8c991137a08a519e8b56a16a45ec6602bd1c73b0
  • Loading branch information
wang fei authored and kegechen committed Sep 20, 2022
1 parent 2642762 commit 56255a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xcb/dplatformnativeinterfacehook.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ static QFunctionPointer getFunction(const QByteArray &function)
{clearNativeSettings, reinterpret_cast<QFunctionPointer>(&DPlatformIntegration::clearNativeSettings)},
{setWMClassName, reinterpret_cast<QFunctionPointer>(&DPlatformIntegration::setWMClassName)},
{splitWindowOnScreen, reinterpret_cast<QFunctionPointer>(&Utility::splitWindowOnScreen)},
{supportForSplittingWindow, reinterpret_cast<QFunctionPointer>(&Utility::supportForSplittingWindow),},
{sendEndStartupNotifition, reinterpret_cast<QFunctionPointer>(&DPlatformIntegration::sendEndStartupNotifition),}
{supportForSplittingWindow, reinterpret_cast<QFunctionPointer>(&Utility::supportForSplittingWindow)},
{sendEndStartupNotifition, reinterpret_cast<QFunctionPointer>(&DPlatformIntegration::sendEndStartupNotifition)}
};

return functionCache.value(function);
Expand Down

0 comments on commit 56255a5

Please sign in to comment.