removed strange bit flipping under wxGTK when saving TIFFs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32468 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-02-28 16:05:04 +00:00
parent 1bf168351b
commit 3ba9ea7267

View File

@@ -423,13 +423,7 @@ bool wxTIFFHandler::SaveFile( wxImage *image, wxOutputStream& stream, bool verbo
bitmask <<= 1;
}
// FIXME: what's this??
#ifdef __WXGTK__
buf[column]=~reverse;
#else
buf[column]=reverse;
#endif
buf[column] = reverse;
}
}
}