From d3f4c37f0817bfad16c7dd5cd1a5f5ac9c8fed04 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 24 Jul 2006 23:30:14 +0000 Subject: [PATCH] Patch from 1.2 branch...fix compilation on Qtopia video target (reference Bugzilla #285). --- src/video/qtopia/SDL_sysvideo.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video/qtopia/SDL_sysvideo.cc b/src/video/qtopia/SDL_sysvideo.cc index 0fde7271e..74989b318 100644 --- a/src/video/qtopia/SDL_sysvideo.cc +++ b/src/video/qtopia/SDL_sysvideo.cc @@ -234,8 +234,8 @@ extern "C" desktop_size.height(), desktop_size.width()); /* Determine the current screen size */ - this->info.current_w = desktop_size.width(); - this->info.current_h = desktop_size.height(); + _this->info.current_w = desktop_size.width(); + _this->info.current_h = desktop_size.height(); /* Create the window / widget */ SDL_Win = new SDL_QWin(QSize(QT_HIDDEN_SIZE, QT_HIDDEN_SIZE));