diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-18 15:17:39 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-18 15:17:39 -0500 |
commit | 8566bfbdcbb179ee24c75463cf488a8dc5f549cb (patch) | |
tree | 4fa1fbf66f0b2ad90f497f252eda136c8db0241e | |
parent | 4c950299b2a74652e254c0e9f6e2c75ea3da0061 (diff) | |
download | tdesdk-8566bfbdcbb179ee24c75463cf488a8dc5f549cb.tar.gz tdesdk-8566bfbdcbb179ee24c75463cf488a8dc5f549cb.zip |
Fix references to Q_ULLONG and friends
-rw-r--r-- | scripts/kde-devel-vim.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kde-devel-vim.vim b/scripts/kde-devel-vim.vim index 7b8961fe..765fd39c 100644 --- a/scripts/kde-devel-vim.vim +++ b/scripts/kde-devel-vim.vim @@ -386,7 +386,7 @@ function! AddQtSyntax() syn keyword qtKeywords Q_SIGNALS Q_SLOTS emit foreach syn keyword qtMacros Q_OBJECT Q_WIDGET Q_PROPERTY Q_ENUMS Q_OVERRIDE Q_CLASSINFO Q_SETS SIGNAL SLOT syn keyword qtCast qt_cast qobject_cast qvariant_cast qstyleoption_cast - syn keyword qtTypedef uchar uint ushort ulong Q_INT8 Q_UINT8 Q_INT16 Q_UINT16 Q_INT32 Q_UINT32 Q_LONG Q_ULONG Q_INT64 Q_UINT64 Q_LLONG Q_ULLONG pchar puchar pcchar qint8 quint8 qint16 quint16 qint32 quint32 qint64 quint64 qlonglong qulonglong + syn keyword qtTypedef uchar uint ushort ulong TQ_INT8 TQ_UINT8 TQ_INT16 TQ_UINT16 TQ_INT32 TQ_UINT32 TQ_LONG TQ_ULONG TQ_INT64 TQ_UINT64 TQ_LLONG TQ_ULLONG pchar puchar pcchar qint8 quint8 qint16 quint16 qint32 quint32 qint64 quint64 qlonglong qulonglong syn keyword kdeKeywords k_dcop k_dcop_Q_SIGNALS syn keyword kdeMacros K_DCOP ASYNC syn keyword cRepeat foreach |