Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
bbb097c3
Commit
bbb097c3
authored
Jan 18, 2011
by
dt
Browse files
ActionManager: Fix CommandAttribute enum to actually use a bit per value
Task-Nr: QTCREATORBUG-3517 Reviewed-By: con
parent
0c60770f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/coreplugin/actionmanager/command.h
View file @
bbb097c3
...
...
@@ -54,10 +54,10 @@ class CORE_EXPORT Command : public QObject
Q_OBJECT
public:
enum
CommandAttribute
{
CA_Hide
,
CA_UpdateText
,
CA_UpdateIcon
,
CA_NonConfigureable
CA_Hide
=
1
,
CA_UpdateText
=
2
,
CA_UpdateIcon
=
4
,
CA_NonConfigureable
=
8
};
Q_DECLARE_FLAGS
(
CommandAttributes
,
CommandAttribute
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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