summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.clang-tidy1
-rw-r--r--src/PatchageModule.cpp2
2 files changed, 1 insertions, 2 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 7d331cd..ec4bf4a 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -58,7 +58,6 @@ Checks: >
-readability-inconsistent-declaration-parameter-name,
-readability-isolate-declaration,
-readability-make-member-function-const,
- -readability-redundant-smartptr-get,
FormatStyle: file
WarningsAsErrors: '*'
HeaderFilterRegex: 'src/.*' \ No newline at end of file
diff --git a/src/PatchageModule.cpp b/src/PatchageModule.cpp
index 0b09a4f..8d8dfa7 100644
--- a/src/PatchageModule.cpp
+++ b/src/PatchageModule.cpp
@@ -25,7 +25,7 @@ PatchageModule::PatchageModule(Patchage* app,
ModuleType type,
double x,
double y)
- : Module(*app->canvas().get(), name, x, y)
+ : Module(*app->canvas(), name, x, y)
, _app(app)
, _menu(nullptr)
, _name(name)