From ce7531617ff9184a04fc60ab8d834bb3db949990 Mon Sep 17 00:00:00 2001 From: pavelpa Date: Thu, 21 Jan 2010 09:03:07 +0000 Subject: [PATCH] compilation error "linux" fix - caused by previous commit --- src/gui/mapwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/mapwindow.cpp b/src/gui/mapwindow.cpp index 2e3efa3..cf86f47 100644 --- a/src/gui/mapwindow.cpp +++ b/src/gui/mapwindow.cpp @@ -10,7 +10,7 @@ MapWindow::MapWindow(const QPixmap &aImage, const QString &aName, QWidget *aPare //map->setPixmap(aImage.scaled(QSize(800,480),Qt::KeepAspectRatioByExpanding,Qt::SmoothTransformation)); map->setPixmap(aImage.scaled(QSize(640,480),Qt::KeepAspectRatioByExpanding,Qt::SmoothTransformation)); #else - map->setPixmap(aImage,Qt::KeepAspectRatioByExpanding,Qt::SmoothTransformation); + map->setPixmap(aImage); #endif setMouseTracking(true); // to receive mouse events setWindowTitle(aName); -- 2.39.5