// Author: Vadim Zeitlin
// Modified by:
// Created: 12.09.96
-// RCS-ID: $Id$
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
{
// IsEqualGUID() returns BOOL and not bool so use an explicit comparison to
// avoid MSVC warnings about int->bool conversion
- return IsEqualGUID(m_uuid, uuid.m_uuid) == TRUE;
+ return IsEqualGUID(m_uuid, uuid.m_uuid) != 0;
}
// dtor