Skip to content

Commit

Permalink
Making this thing compile again, looks like new compilers don't like …
Browse files Browse the repository at this point in the history
…unnamed unions.

git-svn-id: svn://witness.is-a-geek.org/svn@7 378c4bed-2673-4746-83ae-d22ddc8c5b7c
  • Loading branch information
uli committed Jul 5, 2009
1 parent 694c578 commit 892983e
Show file tree
Hide file tree
Showing 4 changed files with 106 additions and 106 deletions.
4 changes: 2 additions & 2 deletions UKDistributedView.h
Expand Up @@ -116,7 +116,7 @@ typedef union UKDVPersistentFlags
unsigned int snapToGrid:1; // Force moved and new cells' positions to the grid. This behaves like "snap to grid" in MacOS 9's Finder and actually changes cell positions, but doesn't move existing cells.
unsigned int forceToGrid:1; // Force all cells' positions to the grid. This behaves like "keep arranged by name" in Finder, and doesn't change actual cell positions.
#endif
};
} bits;
int allFlags;
} UKDVPersistentFlags;

Expand All @@ -138,7 +138,7 @@ typedef union UKDVRuntimeFlags
unsigned int drawDropHilite:1; // Draw highlight indicating we accept a drop around the edges of the view?
unsigned int drawSnappedRects:1; // Draw "snap position" indicator behind selected items right now?
#endif
};
} bits;
int allFlags;
} UKDVRuntimeFlags;

Expand Down

0 comments on commit 892983e

Please sign in to comment.