mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-04 13:13:25 +03:00
0027104: DownCast() cannot return null for mismatched handle
Method DownCast() is made template, to be available only when argument is actually a pointer or handle to a base class. For compatibility with existing code, method DownCast() that can be used for the same type, derived, or unrelated class (i.e. where there is no actual down casting) is still available, its use shall cause "deprecated" compiler warning. OCCT code is updated to remove meaningless DownCast()s; a few places where DownCast() was used with argument of unrelated type are corrected. DRAW command QAHandleCast is removed (it was useful only during redesign of handles).
This commit is contained in:
@@ -105,7 +105,7 @@ void Message_Messenger::Send (const Standard_CString theString,
|
||||
Standard_Integer nb = myPrinters.Length();
|
||||
for (Standard_Integer i = 1; i <= nb; i++)
|
||||
{
|
||||
Handle(Message_Printer) aPrinter = Handle(Message_Printer)::DownCast ( myPrinters(i) );
|
||||
Handle(Message_Printer) aPrinter = myPrinters(i);
|
||||
if ( ! aPrinter.IsNull() )
|
||||
aPrinter->Send ( theString, theGravity, putEndl );
|
||||
}
|
||||
@@ -123,7 +123,7 @@ void Message_Messenger::Send (const TCollection_AsciiString& theString,
|
||||
Standard_Integer nb = myPrinters.Length();
|
||||
for (Standard_Integer i = 1; i <= nb; i++)
|
||||
{
|
||||
Handle(Message_Printer) aPrinter = Handle(Message_Printer)::DownCast ( myPrinters(i) );
|
||||
Handle(Message_Printer) aPrinter = myPrinters(i);
|
||||
if ( ! aPrinter.IsNull() )
|
||||
aPrinter->Send ( theString, theGravity, putEndl );
|
||||
}
|
||||
@@ -141,7 +141,7 @@ void Message_Messenger::Send (const TCollection_ExtendedString& theString,
|
||||
Standard_Integer nb = myPrinters.Length();
|
||||
for (Standard_Integer i = 1; i <= nb; i++)
|
||||
{
|
||||
Handle(Message_Printer) aPrinter = Handle(Message_Printer)::DownCast ( myPrinters(i) );
|
||||
Handle(Message_Printer) aPrinter = myPrinters(i);
|
||||
if ( ! aPrinter.IsNull() )
|
||||
aPrinter->Send ( theString, theGravity, putEndl );
|
||||
}
|
||||
|
Reference in New Issue
Block a user