]> git.saurik.com Git - wxWidgets.git/commitdiff
silence warning about __WXMSW__ not defined
authorPaul Cornett <paulcor@bullseye.com>
Thu, 31 May 2012 16:28:42 +0000 (16:28 +0000)
committerPaul Cornett <paulcor@bullseye.com>
Thu, 31 May 2012 16:28:42 +0000 (16:28 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71615 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/dobjcmn.cpp

index 2fd5984afeeed2e068e72f0524beaec9add01fb0..eb2d539c39cf28022b87d367d53303f00a50b020 100644 (file)
@@ -436,7 +436,7 @@ size_t wxHTMLDataObject::GetDataSize() const
     if (buffer) 
     {
         size = strlen( buffer );
-#if __WXMSW__
+#ifdef __WXMSW__
         // On Windows we need to add some stuff to the string to satisfy 
         // its clipboard format requirements.
         size += 400;
@@ -457,7 +457,7 @@ bool wxHTMLDataObject::GetDataHere(void *buf) const
         return false;
 
     size_t bytes = GetDataSize();
-#if __WXMSW__
+#ifdef __WXMSW__
     // add the extra info that the MSW clipboard format requires.
     char* buffer = new char[bytes];
 
@@ -519,7 +519,7 @@ bool wxHTMLDataObject::SetData(size_t WXUNUSED(len), const void *buf)
     wxString html(buffer);
     // To be consistent with other platforms, we only add the Fragment part
     // of the Windows HTML clipboard format to the data object.
-#if __WXMSW__
+#ifdef __WXMSW__
     int fragmentStart = html.rfind("StartFragment");
     int fragmentEnd = html.rfind("EndFragment");