diff options
author | Mattias Andrée <maandree@kth.se> | 2017-11-05 14:50:38 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2017-11-05 14:50:38 +0100 |
commit | 9ed21175ac00f57f6abf3da84e82098e68fa3e94 (patch) | |
tree | 6235ac14c78fe0bbc074eb5146a641ba0e08fb5f /src/mds-clipboard.h | |
parent | Update year and e-mail address (diff) | |
download | mds-9ed21175ac00f57f6abf3da84e82098e68fa3e94.tar.gz mds-9ed21175ac00f57f6abf3da84e82098e68fa3e94.tar.bz2 mds-9ed21175ac00f57f6abf3da84e82098e68fa3e94.tar.xz |
Work on changing style
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/mds-clipboard.h')
-rw-r--r-- | src/mds-clipboard.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/mds-clipboard.h b/src/mds-clipboard.h index 26c15a4..f3672ff 100644 --- a/src/mds-clipboard.h +++ b/src/mds-clipboard.h @@ -30,30 +30,29 @@ /** * Delete entry only when needed */ -#define CLIPITEM_AUTOPURGE_NEVER 0 +#define CLIPITEM_AUTOPURGE_NEVER 0 /** * Delete entry when the client closes, or needed */ -#define CLIPITEM_AUTOPURGE_UPON_DEATH 1 +#define CLIPITEM_AUTOPURGE_UPON_DEATH 1 /** * Delete entry when a point in time has elapsed, or needed */ -#define CLIPITEM_AUTOPURGE_UPON_CLOCK 2 +#define CLIPITEM_AUTOPURGE_UPON_CLOCK 2 /** * Delete entry when the client closes or when a * point in time has elapsed, or when needed */ -#define CLIPITEM_AUTOPURGE_UPON_DEATH_OR_CLOCK 3 +#define CLIPITEM_AUTOPURGE_UPON_DEATH_OR_CLOCK 3 /** * A clipboard entry */ -typedef struct clipitem -{ +typedef struct clipitem { /** * The stored content */ @@ -78,7 +77,6 @@ typedef struct clipitem * Rule for automatic deletion */ int autopurge; - } clipitem_t; |