From: pavelpa Date: Thu, 21 Jan 2010 09:03:07 +0000 (+0000) Subject: compilation error "linux" fix X-Git-Tag: 0.5.0~239 X-Git-Url: https://git.toastfreeware.priv.at/toast/confclerk.git/commitdiff_plain/ce7531617ff9184a04fc60ab8d834bb3db949990 compilation error "linux" fix - caused by previous commit --- 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);