Task #654 - kf6-kglobalaccel-6.3.0-1.fc41/scan-results.err
back to task #654download
Error: COMPILER_WARNING:
kf6-kglobalaccel-6.3.0-build/kglobalaccel-6.3.0/src/kglobalaccel.cpp: scope_hint: In member function ‘void KGlobalAccelPrivate::updateGlobalShortcut(QAction*, ShortcutTypes, KGlobalAccel::GlobalShortcutLoading)’
kf6-kglobalaccel-6.3.0-build/kglobalaccel-6.3.0/src/kglobalaccel.cpp:301:21: warning[-Wdeprecated-enum-enum-conversion]: bitwise operation between different enumeration types ‘KGlobalAccel::GlobalShortcutLoading’ and ‘SetShortcutFlag’ is deprecated
# 301 | if (globalFlags & NoAutoloading) {
# | ~~~~~~~~~~~~^~~~~~~~~~~~~~~
# 299|
# 300| uint setterFlags = 0;
# 301|-> if (globalFlags & NoAutoloading) {
# 302| setterFlags |= NoAutoloading;
# 303| }
Error: COMPILER_WARNING:
kf6-kglobalaccel-6.3.0-build/kglobalaccel-6.3.0/src/kglobalaccel.cpp:324:51: warning[-Wdeprecated-enum-enum-conversion]: bitwise operation between different enumeration types ‘KGlobalAccel::GlobalShortcutLoading’ and ‘SetShortcutFlag’ is deprecated
# 324 | if (isConfigurationAction && (globalFlags & NoAutoloading)) {
# | ~~~~~~~~~~~~^~~~~~~~~~~~~~~
# 322| const QList<QKeySequence> scResult(result);
# 323|
# 324|-> if (isConfigurationAction && (globalFlags & NoAutoloading)) {
# 325| // If this is a configuration action and we have set the shortcut,
# 326| // inform the real owner of the change.