From 507fea97d93d6dc179864b9dd0d8087e0174c48d Mon Sep 17 00:00:00 2001 From: laurentgom Date: Thu, 12 Mar 2009 21:10:52 +0000 Subject: [PATCH] git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/trunk@1047 4e206d99-4929-0410-ac5d-dfc041789085 --- src/SFML/Window/Linux/VideoModeSupport.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SFML/Window/Linux/VideoModeSupport.cpp b/src/SFML/Window/Linux/VideoModeSupport.cpp index b301fd12..4a832055 100644 --- a/src/SFML/Window/Linux/VideoModeSupport.cpp +++ b/src/SFML/Window/Linux/VideoModeSupport.cpp @@ -45,7 +45,7 @@ void VideoModeSupport::GetSupportedVideoModes(std::vector& Modes) // First, clear array to fill Modes.clear(); - // Get the display and screen from sfWindowImplUnix + // Get the display and screen from WindowImplUnix WindowImplX11::OpenDisplay(false); Display* Disp = WindowImplX11::ourDisplay; int Screen = WindowImplX11::ourScreen; @@ -73,7 +73,7 @@ void VideoModeSupport::GetSupportedVideoModes(std::vector& Modes) { for (int j = 0; j < NbSizes; ++j) { - // Convert to sfVideoMode + // Convert to VideoMode VideoMode Mode(Sizes[j].width, Sizes[j].height, Depths[i]); // Add it only if it is not already in the array @@ -108,7 +108,7 @@ VideoMode VideoModeSupport::GetDesktopVideoMode() { VideoMode DesktopMode; - // Get the display and screen from sfWindowImplUnix + // Get the display and screen from WindowImplUnix WindowImplX11::OpenDisplay(false); Display* Disp = WindowImplX11::ourDisplay; int Screen = WindowImplX11::ourScreen;