Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
KBackup
Commits
b8629d7e
Commit
b8629d7e
authored
Dec 09, 2020
by
Laurent Montel
😁
Browse files
operator+/- is disabled for QFlags in qt6
parent
660bb5a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Selector.cxx
View file @
b8629d7e
...
...
@@ -291,7 +291,7 @@ Selector::Selector(QWidget *parent, KActionCollection *actionCollection)
deleteFileAction
=
actionCollection
->
addAction
(
QStringLiteral
(
"deleteFile"
),
this
,
SLOT
(
deleteFile
()));
deleteFileAction
->
setText
(
i18n
(
"Delete File"
));
deleteFileAction
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"edit-delete"
)));
deleteFileAction
->
setShortcut
(
QKeySequence
(
Qt
::
SHIFT
+
Qt
::
Key_Delete
));
deleteFileAction
->
setShortcut
(
QKeySequence
(
Qt
::
SHIFT
|
Qt
::
Key_Delete
));
menu
->
addAction
(
deleteFileAction
);
action
=
actionCollection
->
addAction
(
QStringLiteral
(
"properties"
),
this
,
SLOT
(
properties
()));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment