summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-02-12 08:54:19 +0100
committerStephan Bergmann <sbergman@redhat.com>2019-02-12 08:54:19 +0100
commita072b15e96c6b7342bf785df0404ed46bfb32ffb (patch)
treedb90326938e56b1de48deccfbea3d0e68048220e /compilerplugins
parentb0b23543449a3666df6e48c561672432af9d6948 (diff)
More loplugin:indentation Qt "emit" hackery
Change-Id: I6f71546a5f6ab07bb4df6fc89213962e74984c84
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/indentation.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/compilerplugins/clang/indentation.cxx b/compilerplugins/clang/indentation.cxx
index 362ad11583bf..f8330c622d30 100644
--- a/compilerplugins/clang/indentation.cxx
+++ b/compilerplugins/clang/indentation.cxx
@@ -50,7 +50,8 @@ public:
if (fn == SRCDIR "/binaryurp/source/bridge.cxx")
return;
// the QEMIT macros
- if (loplugin::hasPathnamePrefix(fn, SRCDIR "/vcl/qt5/"))
+ if (loplugin::hasPathnamePrefix(fn, SRCDIR "/vcl/qt5/")
+ || loplugin::isSamePathname(fn, SRCDIR "/vcl/unx/gtk3_kde5/kde5_filepicker_ipc.cxx"))
return;
TraverseDecl(compiler.getASTContext().getTranslationUnitDecl());
}