# HG changeset patch # User Ryan C. Gordon # Date 1153783814 0 # Node ID 8a9b367a80f38ebfc2590efd8499f77d4bb5f1fa # Parent 70139af5ac27ec48d068c331a9648cc15bdc54f3 Patch from 1.2 branch...fix compilation on Qtopia video target (reference Bugzilla #285). diff -r 70139af5ac27 -r 8a9b367a80f3 src/video/qtopia/SDL_sysvideo.cc --- a/src/video/qtopia/SDL_sysvideo.cc Mon Jul 24 07:21:16 2006 +0000 +++ b/src/video/qtopia/SDL_sysvideo.cc Mon Jul 24 23:30:14 2006 +0000 @@ -234,8 +234,8 @@ 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));