From 6864d1c688d0a34747c3772925514881bbf99dd1 Mon Sep 17 00:00:00 2001
From: Martin Bauer <martin.bauer@fau.de>
Date: Tue, 23 Oct 2018 14:05:10 +0200
Subject: [PATCH] Fix in GUI (pass by ref transformation broke function)

---
 src/gui/Gui.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gui/Gui.cpp b/src/gui/Gui.cpp
index 49729ba27..3a4f37412 100644
--- a/src/gui/Gui.cpp
+++ b/src/gui/Gui.cpp
@@ -158,7 +158,7 @@ DisplayAdaptor * GUI::findDisplayAdaptorForBlockID ( ConstBlockDataID bdId ) con
 }
 
 
-void GUI::registerPropertyTree( const shared_ptr<PropertyTree> propertyTree ) {
+void GUI::registerPropertyTree( const shared_ptr<PropertyTree>& propertyTree ) {
    pImpl->propertyTrees_.push_back( propertyTree );
 }
 
-- 
GitLab