Fixed minor error in sf::Window::Window documentation, and removed a useless member

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1632 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
LaurentGom 2010-11-11 08:46:13 +00:00
parent 230f5e58ca
commit 08393593e1
2 changed files with 3 additions and 9 deletions

View file

@ -48,7 +48,6 @@ Window::Window() :
myWindow (NULL),
myContext (NULL),
myLastFrameTime (0.f),
myIsExternal (false),
myFramerateLimit(0),
mySetCursorPosX (0xFFFF),
mySetCursorPosY (0xFFFF)
@ -62,7 +61,6 @@ Window::Window(VideoMode mode, const std::string& title, unsigned long style, co
myWindow (NULL),
myContext (NULL),
myLastFrameTime (0.f),
myIsExternal (false),
myFramerateLimit(0),
mySetCursorPosX (0xFFFF),
mySetCursorPosY (0xFFFF)
@ -76,7 +74,6 @@ Window::Window(WindowHandle handle, const ContextSettings& settings) :
myWindow (NULL),
myContext (NULL),
myLastFrameTime (0.f),
myIsExternal (true),
myFramerateLimit(0),
mySetCursorPosX (0xFFFF),
mySetCursorPosY (0xFFFF)