Task #1460 - kf6-kglobalaccel-6.0.0-1.fc40/scan-results.err

back to task #1460
download
Error: COMPILER_WARNING:
kf6-kglobalaccel-6.0.0-build/kglobalaccel-6.0.0/src/kglobalaccel.cpp: scope_hint: In member function ‘void KGlobalAccelPrivate::updateGlobalShortcut(QAction*, ShortcutTypes, KGlobalAccel::GlobalShortcutLoading)’
kf6-kglobalaccel-6.0.0-build/kglobalaccel-6.0.0/src/kglobalaccel.cpp:298:21: warning[-Wdeprecated-enum-enum-conversion]: bitwise operation between different enumeration types ‘KGlobalAccel::GlobalShortcutLoading’ and ‘SetShortcutFlag’ is deprecated
#  298 |     if (globalFlags & NoAutoloading) {
#      |         ~~~~~~~~~~~~^~~~~~~~~~~~~~~
#  296|   
#  297|       uint setterFlags = 0;
#  298|->     if (globalFlags & NoAutoloading) {
#  299|           setterFlags |= NoAutoloading;
#  300|       }

Error: COMPILER_WARNING:
kf6-kglobalaccel-6.0.0-build/kglobalaccel-6.0.0/src/kglobalaccel.cpp:321:51: warning[-Wdeprecated-enum-enum-conversion]: bitwise operation between different enumeration types ‘KGlobalAccel::GlobalShortcutLoading’ and ‘SetShortcutFlag’ is deprecated
#  321 |         if (isConfigurationAction && (globalFlags & NoAutoloading)) {
#      |                                       ~~~~~~~~~~~~^~~~~~~~~~~~~~~
#  319|           const QList<QKeySequence> scResult(result);
#  320|   
#  321|->         if (isConfigurationAction && (globalFlags & NoAutoloading)) {
#  322|               // If this is a configuration action and we have set the shortcut,
#  323|               // inform the real owner of the change.