]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/ole/uuid.cpp
remove incorrect cast of wxString to char* (unnecessary and breaks wxUSE_STL build)
[wxWidgets.git] / src / msw / ole / uuid.cpp
index 0b1020d84915dce7dda313f782864eae297d38b5..76a968022261564f03f3601458bea8720c4f591c 100644 (file)
@@ -82,6 +82,13 @@ Uuid& Uuid::operator=(const Uuid& uuid)
   return *this;
 }
 
   return *this;
 }
 
+bool Uuid::operator==(const Uuid& uuid) const
+{
+    // 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
 Uuid::~Uuid()
 {
 // dtor
 Uuid::~Uuid()
 {