changeset 659:68b5688241d5

Fixed broken previous merge
author Benjamin Golinvaux <bgo@osimis.io>
date Tue, 14 May 2019 19:38:15 +0200
parents 63982c8c294a
children cb3b76d16234
files Applications/Generic/NativeStoneApplicationRunner.cpp Framework/Radiography/RadiographyLayer.cpp
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/Applications/Generic/NativeStoneApplicationRunner.cpp	Tue May 14 18:39:50 2019 +0200
+++ b/Applications/Generic/NativeStoneApplicationRunner.cpp	Tue May 14 19:38:15 2019 +0200
@@ -123,7 +123,7 @@
 
     if (error || parameters.count("help"))
     {
-      std::cout << std::endl
+      std::cout << std::endl;
 
       std::cout << options << "\n";
       return error ? -1 : 0;
--- a/Framework/Radiography/RadiographyLayer.cpp	Tue May 14 18:39:50 2019 +0200
+++ b/Framework/Radiography/RadiographyLayer.cpp	Tue May 14 19:38:15 2019 +0200
@@ -211,7 +211,7 @@
     geometry_.SetFlipVertical(flip);
     UpdateTransform();
 
-    EmitMessage(RadiographyLayer::LayerEditedMessage(*this));
+    BroadcastMessage(RadiographyLayer::LayerEditedMessage(*this));
   }
 
   void RadiographyLayer::SetFlipHorizontal(bool flip)
@@ -219,7 +219,7 @@
     geometry_.SetFlipHorizontal(flip);
     UpdateTransform();
 
-    EmitMessage(RadiographyLayer::LayerEditedMessage(*this));
+    BroadcastMessage(RadiographyLayer::LayerEditedMessage(*this));
   }
 
   void RadiographyLayer::SetSize(unsigned int width,