Skip to content

Commit

Permalink
Merge pull request #39 from ResponSySS/patch-1
Browse files Browse the repository at this point in the history
Give a name to window style enum
  • Loading branch information
LaurentGomila committed Jun 22, 2014
2 parents 2a1a11c + ed44d9e commit 42c2fb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/SFML/Window/Window.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@
/// \brief Enumeration of window creation styles
///
////////////////////////////////////////////////////////////
enum
typedef enum
{
sfNone = 0, ///< No border / title bar (this flag and all others are mutually exclusive)
sfTitlebar = 1 << 0, ///< Title bar + fixed border
sfResize = 1 << 1, ///< Titlebar + resizable border + maximize button
sfClose = 1 << 2, ///< Titlebar + close button
sfFullscreen = 1 << 3, ///< Fullscreen mode (this flag and all others are mutually exclusive)
sfDefaultStyle = sfTitlebar | sfResize | sfClose ///< Default window style
};
} sfWindowStyle;


////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 42c2fb1

Please sign in to comment.