diff options
Diffstat (limited to 'kmail/kleo_util.h')
-rw-r--r-- | kmail/kleo_util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/kleo_util.h b/kmail/kleo_util.h index dc0eb6d2c..6baa874be 100644 --- a/kmail/kleo_util.h +++ b/kmail/kleo_util.h @@ -77,11 +77,11 @@ static inline bool isOpenPGP( Kleo::CryptoMessageFormat f ) { return f == Kleo::InlineOpenPGPFormat || f == Kleo::OpenPGPMIMEFormat ; } -static inline bool containsSMIME( unsigned int f ) { +static inline bool tqcontainsSMIME( unsigned int f ) { return f & (Kleo::SMIMEFormat|Kleo::SMIMEOpaqueFormat) ; } -static inline bool containsOpenPGP( unsigned int f ) { +static inline bool tqcontainsOpenPGP( unsigned int f ) { return f & (Kleo::OpenPGPMIMEFormat|Kleo::InlineOpenPGPFormat) ; } |