From 123e4db005ddcef6109a3d493238e55dbc392511 Mon Sep 17 00:00:00 2001 From: Pawel Date: Wed, 20 Mar 2013 12:53:44 +0100 Subject: [PATCH] 0023844: It's odd to compare a bool type value with a value of 0. Comparing Standard_Real values instead of Standard_Real and Standard_Boolean --- src/AIS/AIS_InteractiveObject.lxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AIS/AIS_InteractiveObject.lxx b/src/AIS/AIS_InteractiveObject.lxx index c5d000f1af..07aa890ddb 100755 --- a/src/AIS/AIS_InteractiveObject.lxx +++ b/src/AIS/AIS_InteractiveObject.lxx @@ -74,7 +74,7 @@ inline void AIS_InteractiveObject::Color(Quantity_Color& aColor) const } inline Standard_Boolean AIS_InteractiveObject::HasWidth() const -{return (!myOwnWidth == 0.);} +{return !(myOwnWidth == 0.);} inline Standard_Real AIS_InteractiveObject::Width() const {return myOwnWidth;}