I have made the following changes intended for : CE:Apps / qt-components Please review and accept or decline. BOSS has already run some checks on this request. See the "Messages from BOSS" section below.
https://build.pub.meego.com//request/show/3065 Thank You, bossbot ([email protected]) [This message was auto-generated] --- Request # 3065: Messages from BOSS: None State: review 2011-11-11T15:27:43 bossbot Reviews: from bossbot :Prechecks completed; none failed. accepted on No date from None Changes: submit: home:jakub:branches:CE:Apps / qt-components -> CE:Apps / qt-components Index: qt-components.changes =================================================================== --- qt-components.changes (revision 1) +++ qt-components.changes (revision 3) @@ -1,3 +1,7 @@ +* Tue Nov 08 2011 Jakub Pavelek <[email protected]> - 1.0~git20111105 +- Adding a patch to run on proper screen sizes. +- Update from GIT + * Tue Sep 27 2011 Marko Saukko <[email protected]> - 1.0~git20110620 - Removed dependency to qt-components-base-icons, because it is causing problems with MTF themes, see BMC#23435. Index: qt-components.spec =================================================================== --- qt-components.spec (revision 1) +++ qt-components.spec (revision 3) @@ -7,8 +7,8 @@ Name: qt-components Summary: Qt Quick UX Components -Version: 1.0~git20110620 -Release: 7.1fn +Version: 1.0~git20111105 +Release: 1fn Group: System/Libraries License: BSD Source0: %{name}-%{version}.tar.bz2 Index: qt-components.yaml =================================================================== --- qt-components.yaml (revision 1) +++ qt-components.yaml (revision 3) @@ -1,7 +1,7 @@ Name: qt-components Summary: Qt Quick UX Components -Version: 1.0~git20110620 -Release: 7.1fn +Version: 1.0~git20111105 +Release: 1fn Group: System/Libraries License: BSD Sources: Index: boss.conf =================================================================== --- boss.conf (added) +++ boss.conf (revision 3) @@ -0,0 +1,3 @@ +[checks] +check_package_is_complete_sources = warn +check_package_is_complete = warn Index: qt-components-1.0~git20111105.tar.bz2 =================================================================== Binary files qt-components-1.0~git20111105.tar.bz2 (revision 3) added Index: xruxa-screen-resolution.patch =================================================================== --- xruxa-screen-resolution.patch (added) +++ xruxa-screen-resolution.patch (revision 3) @@ -0,0 +1,19 @@ +diff --git a/src/meego/mdeclarativescreen.cpp b/src/meego/mdeclarativescreen.cpp +--- a/src/meego/mdeclarativescreen.cpp ++++ b/src/meego/mdeclarativescreen.cpp +@@ -217,12 +217,9 @@ MDeclarativeScreenPrivate::MDeclarativeScreenPrivate(MDeclarativeScreen *qq) + #endif + , minimized(false) + { +-#ifdef __ARMEL__ +- displaySize = QSize(854, 480); +-#else +- // TODO: Could use QDesktopWidget, but what about on host PC? +- displaySize = QSize(480, 854); +-#endif ++ //With this patch we do not care about QtCreator, we always run as screen sizes on devices ++ QDesktopWidget dw; ++ displaySize = QSize(dw.width(), dw.height()); + oldEventFilter = QCoreApplication::instance()->setEventFilter(x11EventFilter); + //Q_ASSERT(gScreenPrivate == 0); + gScreenPrivate = this; Index: qt-components-1.0~git20110620.tar.bz2 =================================================================== Binary files qt-components-1.0~git20110620.tar.bz2 (revision 1) deleted
