Expand tabs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35148 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mart Raudsepp
2005-08-08 09:35:27 +00:00
parent 21d23b882f
commit 86e69fa54a
2 changed files with 8 additions and 8 deletions

View File

@@ -256,14 +256,14 @@ wxCursor::wxCursor( const wxImage & image )
int fg_intensity = fg.Red() + fg.Green() + fg.Blue();
int bg_intensity = bg.Red() + bg.Green() + bg.Blue();
if (bg_intensity > fg_intensity)
{
if (bg_intensity > fg_intensity)
{
//swap fg and bg
wxColour tmp = fg;
fg = bg;
bg = tmp;
}
}
int hotSpotX;
int hotSpotY;