From: lepelley Date: Fri, 20 Aug 2010 10:49:54 +0000 (+0200) Subject: add compilation condition to allow compilation on desktop X-Git-Tag: v0.5~22 X-Git-Url: http://vcs.maemo.org/git/?p=vlc-remote;a=commitdiff_plain;h=3ad8058dfce501dea9fab66e583399f14abc811f add compilation condition to allow compilation on desktop --- diff --git a/main.cpp b/main.cpp index 59754e4..caf2cb0 100644 --- a/main.cpp +++ b/main.cpp @@ -49,7 +49,8 @@ int main(int argc, char *argv[]) //mainwindow->setAttribute(Qt::WA_Maemo5AutoOrientation, true); mainwindow->showMaximized(); - mainwindow->setAttribute(Qt::WA_Maemo5AutoOrientation, true); - + #if defined(Q_WS_S60) || defined(Q_WS_MAEMO_5) +mainwindow->setAttribute(Qt::WA_Maemo5AutoOrientation, true); +#endif return a.exec(); } diff --git a/playermainwindow.cpp b/playermainwindow.cpp index c2186e9..5f91727 100644 --- a/playermainwindow.cpp +++ b/playermainwindow.cpp @@ -160,17 +160,25 @@ void PlayerMainWindow::setPortrait() { - this->setAttribute(Qt::WA_Maemo5PortraitOrientation, true); + #if defined(Q_WS_S60) || defined(Q_WS_MAEMO_5) + this->setAttribute(Qt::WA_Maemo5PortraitOrientation, true); + #endif + + } void PlayerMainWindow::setLandscape() { + #if defined(Q_WS_S60) || defined(Q_WS_MAEMO_5) this->setAttribute(Qt::WA_Maemo5LandscapeOrientation, true); + #endif } void PlayerMainWindow::setAutoRotate() { - this->setAttribute(Qt::WA_Maemo5AutoOrientation, true); + #if defined(Q_WS_S60) || defined(Q_WS_MAEMO_5) + this->setAttribute(Qt::WA_Maemo5AutoOrientation, true); + #endif } void PlayerMainWindow::orientationChanged() {