From c017ff10d2937644416013efaac964915d2aba7e Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 15 Apr 2003 16:04:31 +0000 Subject: [PATCH] Fixed video intitialization problem on Qtopia (thanks David!) --- src/main/linux/SDL_Qtopia_main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/linux/SDL_Qtopia_main.cc b/src/main/linux/SDL_Qtopia_main.cc index baea13b1e..46fd518ff 100644 --- a/src/main/linux/SDL_Qtopia_main.cc +++ b/src/main/linux/SDL_Qtopia_main.cc @@ -36,8 +36,8 @@ int main(int argc, char *argv[]) #ifdef QWS // This initializes the Qtopia application. It needs to be done here // because it parses command line options. - QWidget dummy; app = new QPEApplication(argc, argv); + QWidget dummy; app->showMainWidget(&dummy); atexit(cleanupQCop); #endif