Mercurial > hg > orthanc-stone
changeset 869:60a403f01c31 toa2019062503
Fixed WARN --> WARNING (unsure how this builds fine under Windows...)
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Tue, 25 Jun 2019 18:04:54 +0200 |
parents | b7f3cd9efe6f |
children | d337f2704f79 |
files | Applications/Generic/GuiAdapter.cpp Framework/Scene2DViewport/EditAngleMeasureTracker.cpp Framework/Scene2DViewport/EditLineMeasureTracker.cpp |
diffstat | 3 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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 {
--- 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; } }
--- 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; } }