# HG changeset patch # User Benjamin Golinvaux # Date 1561478694 -7200 # Node ID 60a403f01c3112249f9d4a1a6149bef1de9766bf # Parent b7f3cd9efe6f3b8b65a66ecfb37d1fe762812424 Fixed WARN --> WARNING (unsure how this builds fine under Windows...) diff -r b7f3cd9efe6f -r 60a403f01c31 Applications/Generic/GuiAdapter.cpp --- a/Applications/Generic/GuiAdapter.cpp Tue Jun 25 18:04:09 2019 +0200 +++ b/Applications/Generic/GuiAdapter.cpp Tue Jun 25 18:04:54 2019 +0200 @@ -638,7 +638,7 @@ { if (windowID == 0) { - LOG(WARN) << "GuiAdapter::OnMouseEvent -- windowID == 0 and event won't be routed!"; + LOG(WARNING) << "GuiAdapter::OnMouseEvent -- windowID == 0 and event won't be routed!"; } else { diff -r b7f3cd9efe6f -r 60a403f01c31 Framework/Scene2DViewport/EditAngleMeasureTracker.cpp --- a/Framework/Scene2DViewport/EditAngleMeasureTracker.cpp Tue Jun 25 18:04:09 2019 +0200 +++ b/Framework/Scene2DViewport/EditAngleMeasureTracker.cpp Tue Jun 25 18:04:54 2019 +0200 @@ -86,7 +86,7 @@ } break; default: - LOG(WARN) << "Warning: please retry the measuring tool editing operation!"; + LOG(WARNING) << "Warning: please retry the measuring tool editing operation!"; break; } } diff -r b7f3cd9efe6f -r 60a403f01c31 Framework/Scene2DViewport/EditLineMeasureTracker.cpp --- a/Framework/Scene2DViewport/EditLineMeasureTracker.cpp Tue Jun 25 18:04:09 2019 +0200 +++ b/Framework/Scene2DViewport/EditLineMeasureTracker.cpp Tue Jun 25 18:04:54 2019 +0200 @@ -81,7 +81,7 @@ } break; default: - LOG(WARN) << "Warning: please retry the measuring tool editing operation!"; + LOG(WARNING) << "Warning: please retry the measuring tool editing operation!"; break; } }