diff options
| author | 2017-02-09 04:36:04 -0500 | |
|---|---|---|
| committer | 2017-02-09 04:36:04 -0500 | |
| commit | d9aa870e5d509cc7309ab82dd102a937ab58613a (patch) | |
| tree | d92d03d76b5c390b335f1cfd761f1a0b59ec8496 /Plugins/SqlEnterpriseFormatter/formatexpr.h | |
| parent | 68ee4cbcbe424b95969c70346283a9f217f63825 (diff) | |
Imported Upstream version 3.1.1+dfsg1upstream/3.1.1+dfsg1
Diffstat (limited to 'Plugins/SqlEnterpriseFormatter/formatexpr.h')
| -rw-r--r-- | Plugins/SqlEnterpriseFormatter/formatexpr.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Plugins/SqlEnterpriseFormatter/formatexpr.h b/Plugins/SqlEnterpriseFormatter/formatexpr.h index 2712adc..bafe442 100644 --- a/Plugins/SqlEnterpriseFormatter/formatexpr.h +++ b/Plugins/SqlEnterpriseFormatter/formatexpr.h @@ -1,8 +1,10 @@ #ifndef FORMATEXPR_H #define FORMATEXPR_H +#include <QRegularExpression> #include "formatstatement.h" + class SqliteExpr; class FormatExpr : public FormatStatement @@ -14,6 +16,8 @@ class FormatExpr : public FormatStatement void formatInternal(); private: + static QRegularExpression WORD_ONLY_RE; + SqliteExpr* expr = nullptr; }; |
