summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2021-08-21 20:25:17 +0200
committerBenBE <BenBE@geshi.org>2021-08-22 10:40:59 +0200
commitedc3de7cb5970dcc7203042ff6833f2b42e27449 (patch)
tree85f60bff13bc881c3e3afd2323fffc7b2d873749
parenta9ddaccc63ec9694e57b252760d9b8c9b82dbe78 (diff)
Action: specify implication in code not in comments
-rw-r--r--Action.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/Action.h b/Action.h
index 8e86569e..4fb800f5 100644
--- a/Action.h
+++ b/Action.h
@@ -22,14 +22,14 @@ in the source distribution for its full text.
typedef enum {
- HTOP_OK = 0x00,
- HTOP_REFRESH = 0x01,
- HTOP_RECALCULATE = 0x03, // implies HTOP_REFRESH
- HTOP_SAVE_SETTINGS = 0x04,
- HTOP_KEEP_FOLLOWING = 0x08,
- HTOP_QUIT = 0x10,
- HTOP_REDRAW_BAR = 0x20,
- HTOP_UPDATE_PANELHDR = 0x41, // implies HTOP_REFRESH
+ HTOP_OK = 0x00,
+ HTOP_REFRESH = 0x01,
+ HTOP_RECALCULATE = 0x02 | HTOP_REFRESH,
+ HTOP_SAVE_SETTINGS = 0x04,
+ HTOP_KEEP_FOLLOWING = 0x08,
+ HTOP_QUIT = 0x10,
+ HTOP_REDRAW_BAR = 0x20,
+ HTOP_UPDATE_PANELHDR = 0x40 | HTOP_REFRESH,
} Htop_Reaction;
struct MainPanel_;

© 2014-2024 Faster IT GmbH | imprint | privacy policy