X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2753fd96ffed24e04c4828eaa97dccfdb6b24764..6686fbad16ec929f33cbbcc1b638bf00406218c5:/src/msw/ole/uuid.cpp diff --git a/src/msw/ole/uuid.cpp b/src/msw/ole/uuid.cpp index c21369b4ef..d4079803b4 100644 --- a/src/msw/ole/uuid.cpp +++ b/src/msw/ole/uuid.cpp @@ -20,7 +20,7 @@ #pragma hdrstop #endif -#if wxUSE_OLE && ( wxUSE_DRAG_AND_DROP || (defined(__WXDEBUG__) && wxUSE_DATAOBJ) ) +#if wxUSE_OLE && (wxUSE_DRAG_AND_DROP || wxUSE_DATAOBJ) #ifndef WX_PRECOMP #include "wx/msw/wrapwin.h" @@ -84,12 +84,9 @@ Uuid& Uuid::operator=(const Uuid& uuid) bool Uuid::operator==(const Uuid& uuid) const { - return m_uuid == uuid.m_uuid; -} - -bool Uuid::operator!=(const Uuid& uuid) const -{ - return m_uuid != uuid.m_uuid; + // 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; } // dtor