Merge lp:~fboucault/unity-2d/import_qt_quick_1_0 into lp:unity-2d/3.0

Proposed by Florian Boucault
Status: Merged
Approved by: Ugo Riboni
Approved revision: 613
Merged at revision: 615
Proposed branch: lp:~fboucault/unity-2d/import_qt_quick_1_0
Merge into: lp:unity-2d/3.0
Diff against target: 505 lines (+39/-39)
39 files modified
launcher/AutoScrollingListView.qml (+1/-1)
launcher/Launcher.qml (+1/-1)
launcher/LauncherItem.qml (+1/-1)
launcher/LauncherList.qml (+1/-1)
launcher/ListViewDragAndDrop.qml (+1/-1)
libunity-2d-private/Unity2d/GnomeBackground.qml (+1/-1)
places/AbstractButton.qml (+1/-1)
places/Button.qml (+1/-1)
places/CenteredGridView.qml (+1/-1)
places/FoldingArrow.qml (+1/-1)
places/GroupHeader.qml (+1/-1)
places/Home.qml (+1/-1)
places/HomeButton.qml (+1/-1)
places/HomeButtonApplication.qml (+1/-1)
places/HomeShortcuts.qml (+1/-1)
places/ListViewWithScrollbar.qml (+1/-1)
places/PageModel.qml (+1/-1)
places/PlaceEntryView.qml (+1/-1)
places/Renderer.qml (+1/-1)
places/RendererGrid.qml (+1/-1)
places/Scrollbar.qml (+1/-1)
places/SearchEntry.qml (+1/-1)
places/SearchRefine.qml (+1/-1)
places/SearchRefineOption.qml (+1/-1)
places/SearchRefineOptionType.qml (+1/-1)
places/TextCustom.qml (+1/-1)
places/TextMultiLine.qml (+1/-1)
places/TickBox.qml (+1/-1)
places/UnityDefaultRenderer.qml (+1/-1)
places/UnityEmptySearchRenderer.qml (+1/-1)
places/UnityEmptySectionRenderer.qml (+1/-1)
places/UnityFileInfoRenderer.qml (+1/-1)
places/UnityShowcaseRenderer.qml (+1/-1)
places/dash.qml (+1/-1)
spread/ScaledItem.qml (+1/-1)
spread/Window.qml (+1/-1)
spread/Windows.qml (+1/-1)
spread/Workspace.qml (+1/-1)
spread/Workspaces.qml (+1/-1)
To merge this branch: bzr merge lp:~fboucault/unity-2d/import_qt_quick_1_0
Reviewer Review Type Date Requested Status
Ugo Riboni Pending
Review via email: mp+65696@code.launchpad.net

Description of the change

Replaced deprecated "import Qt 4.7" with "import QtQuick 1.0" everywhere.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'launcher/AutoScrollingListView.qml'
--- launcher/AutoScrollingListView.qml 2011-04-15 12:26:36 +0000
+++ launcher/AutoScrollingListView.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21/* AutoScrollingListView21/* AutoScrollingListView
2222
2323
=== modified file 'launcher/Launcher.qml'
--- launcher/Launcher.qml 2011-06-20 13:46:33 +0000
+++ launcher/Launcher.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import Unity2d 1.0 /* required for drag’n’drop handling */20import Unity2d 1.0 /* required for drag’n’drop handling */
2121
22LauncherDropItem {22LauncherDropItem {
2323
=== modified file 'launcher/LauncherItem.qml'
--- launcher/LauncherItem.qml 2011-06-07 21:48:42 +0000
+++ launcher/LauncherItem.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import Unity2d 1.020import Unity2d 1.0
2121
22/* This component represents a single "tile" in the launcher and the surrounding22/* This component represents a single "tile" in the launcher and the surrounding
2323
=== modified file 'launcher/LauncherList.qml'
--- launcher/LauncherList.qml 2011-06-13 08:45:39 +0000
+++ launcher/LauncherList.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import Unity2d 1.0 /* required for drag’n’drop handling */20import Unity2d 1.0 /* required for drag’n’drop handling */
2121
22AutoScrollingListView {22AutoScrollingListView {
2323
=== modified file 'launcher/ListViewDragAndDrop.qml'
--- launcher/ListViewDragAndDrop.qml 2011-06-01 10:01:38 +0000
+++ launcher/ListViewDragAndDrop.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21/* When added as a child of a ListView and the listview itself is set to the21/* When added as a child of a ListView and the listview itself is set to the
22 'list' property it will make it possible to use drag’n’drop to re-order22 'list' property it will make it possible to use drag’n’drop to re-order
2323
=== modified file 'libunity-2d-private/Unity2d/GnomeBackground.qml'
--- libunity-2d-private/Unity2d/GnomeBackground.qml 2011-06-07 21:48:42 +0000
+++ libunity-2d-private/Unity2d/GnomeBackground.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import gconf 1.020import gconf 1.0
21/* Necessary to access the blended image provider and CacheEffect */21/* Necessary to access the blended image provider and CacheEffect */
22import Unity2d 1.022import Unity2d 1.0
2323
=== modified file 'places/AbstractButton.qml'
--- places/AbstractButton.qml 2011-05-30 16:05:19 +0000
+++ places/AbstractButton.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21FocusScope {21FocusScope {
22 property bool enabled: true22 property bool enabled: true
2323
=== modified file 'places/Button.qml'
--- places/Button.qml 2011-03-22 06:15:19 +0000
+++ places/Button.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21AbstractButton {21AbstractButton {
22 Rectangle {22 Rectangle {
2323
=== modified file 'places/CenteredGridView.qml'
--- places/CenteredGridView.qml 2011-03-22 06:15:19 +0000
+++ places/CenteredGridView.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21GridView {21GridView {
22 property int minHorizontalSpacing: 022 property int minHorizontalSpacing: 0
2323
=== modified file 'places/FoldingArrow.qml'
--- places/FoldingArrow.qml 2011-03-22 06:15:19 +0000
+++ places/FoldingArrow.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import Effects 1.020import Effects 1.0
2121
22Image {22Image {
2323
=== modified file 'places/GroupHeader.qml'
--- places/GroupHeader.qml 2011-04-15 13:33:04 +0000
+++ places/GroupHeader.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import Effects 1.020import Effects 1.0
2121
22AbstractButton {22AbstractButton {
2323
=== modified file 'places/Home.qml'
--- places/Home.qml 2011-06-13 01:15:59 +0000
+++ places/Home.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import Unity2d 1.0 /* Necessary for SortFilterProxyModel and for the ImageProvider serving image://icons/theme_name/icon_name */20import Unity2d 1.0 /* Necessary for SortFilterProxyModel and for the ImageProvider serving image://icons/theme_name/icon_name */
2121
22Item {22Item {
2323
=== modified file 'places/HomeButton.qml'
--- places/HomeButton.qml 2011-04-08 11:10:59 +0000
+++ places/HomeButton.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21Button {21Button {
22 property alias icon: icon.source22 property alias icon: icon.source
2323
=== modified file 'places/HomeButtonApplication.qml'
--- places/HomeButtonApplication.qml 2011-06-07 16:34:46 +0000
+++ places/HomeButtonApplication.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20/* Necessary for:20/* Necessary for:
21 - ImageProvider serving image://icons/theme_name/icon_name21 - ImageProvider serving image://icons/theme_name/icon_name
22 - LauncherApplication22 - LauncherApplication
2323
=== modified file 'places/HomeShortcuts.qml'
--- places/HomeShortcuts.qml 2011-06-07 16:34:46 +0000
+++ places/HomeShortcuts.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import Unity2d 1.0 /* Necessary for the ImageProvider serving image://icons/theme_name/icon_name */20import Unity2d 1.0 /* Necessary for the ImageProvider serving image://icons/theme_name/icon_name */
2121
22Flow {22Flow {
2323
=== modified file 'places/ListViewWithScrollbar.qml'
--- places/ListViewWithScrollbar.qml 2011-03-22 06:15:19 +0000
+++ places/ListViewWithScrollbar.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21Item {21Item {
22 property alias list: list22 property alias list: list
2323
=== modified file 'places/PageModel.qml'
--- places/PageModel.qml 2011-03-22 06:15:19 +0000
+++ places/PageModel.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21QtObject {21QtObject {
22 property string entrySearchQuery22 property string entrySearchQuery
2323
=== modified file 'places/PlaceEntryView.qml'
--- places/PlaceEntryView.qml 2011-04-11 09:23:01 +0000
+++ places/PlaceEntryView.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import Unity2d 1.0 /* Necessary for SortFilterProxyModel */20import Unity2d 1.0 /* Necessary for SortFilterProxyModel */
2121
22Item {22Item {
2323
=== modified file 'places/Renderer.qml'
--- places/Renderer.qml 2011-03-22 06:15:19 +0000
+++ places/Renderer.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21/* A renderer is used to display a group of a place, that is a set of items from21/* A renderer is used to display a group of a place, that is a set of items from
22 a place that share the same group id. Concretely speaking, it will be a section22 a place that share the same group id. Concretely speaking, it will be a section
2323
=== modified file 'places/RendererGrid.qml'
--- places/RendererGrid.qml 2011-06-07 16:34:46 +0000
+++ places/RendererGrid.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import Unity2d 1.0 /* Necessary for the ImageProvider serving image://icons */20import Unity2d 1.0 /* Necessary for the ImageProvider serving image://icons */
2121
22/* Renderers typically use a grid layout to render the model. The RendererGrid22/* Renderers typically use a grid layout to render the model. The RendererGrid
2323
=== modified file 'places/Scrollbar.qml'
--- places/Scrollbar.qml 2011-03-22 06:15:19 +0000
+++ places/Scrollbar.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21/* Scrollbar composed of:21/* Scrollbar composed of:
22 - a draggable slider22 - a draggable slider
2323
=== modified file 'places/SearchEntry.qml'
--- places/SearchEntry.qml 2011-06-15 17:07:17 +0000
+++ places/SearchEntry.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import Effects 1.020import Effects 1.0
2121
22FocusScope {22FocusScope {
2323
=== modified file 'places/SearchRefine.qml'
--- places/SearchRefine.qml 2011-03-22 06:15:19 +0000
+++ places/SearchRefine.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import Effects 1.020import Effects 1.0
2121
22FocusScope {22FocusScope {
2323
=== modified file 'places/SearchRefineOption.qml'
--- places/SearchRefineOption.qml 2011-03-22 06:15:19 +0000
+++ places/SearchRefineOption.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21FocusScope {21FocusScope {
22 property string title22 property string title
2323
=== modified file 'places/SearchRefineOptionType.qml'
--- places/SearchRefineOptionType.qml 2011-03-23 00:36:16 +0000
+++ places/SearchRefineOptionType.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21SearchRefineOption {21SearchRefineOption {
22 id: searchRefineOption22 id: searchRefineOption
2323
=== modified file 'places/TextCustom.qml'
--- places/TextCustom.qml 2011-03-22 06:15:19 +0000
+++ places/TextCustom.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21/* Custom Text factorising the font style. */21/* Custom Text factorising the font style. */
22Text {22Text {
2323
=== modified file 'places/TextMultiLine.qml'
--- places/TextMultiLine.qml 2011-04-08 12:35:19 +0000
+++ places/TextMultiLine.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21TextCustom {21TextCustom {
22 id: text22 id: text
2323
=== modified file 'places/TickBox.qml'
--- places/TickBox.qml 2011-03-23 00:36:16 +0000
+++ places/TickBox.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21AbstractButton {21AbstractButton {
22 id: tickBox22 id: tickBox
2323
=== modified file 'places/UnityDefaultRenderer.qml'
--- places/UnityDefaultRenderer.qml 2011-05-30 15:39:31 +0000
+++ places/UnityDefaultRenderer.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import Unity2d 1.0 /* required for drag’n’drop handling */20import Unity2d 1.0 /* required for drag’n’drop handling */
2121
22RendererGrid {22RendererGrid {
2323
=== modified file 'places/UnityEmptySearchRenderer.qml'
--- places/UnityEmptySearchRenderer.qml 2011-03-22 06:15:19 +0000
+++ places/UnityEmptySearchRenderer.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21/* Used to convey to the user that the current section is empty.21/* Used to convey to the user that the current section is empty.
22 The first row of the results model contains the message to the user in the22 The first row of the results model contains the message to the user in the
2323
=== modified file 'places/UnityEmptySectionRenderer.qml'
--- places/UnityEmptySectionRenderer.qml 2011-03-22 06:15:19 +0000
+++ places/UnityEmptySectionRenderer.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21UnityEmptySearchRenderer {21UnityEmptySearchRenderer {
22}22}
2323
=== modified file 'places/UnityFileInfoRenderer.qml'
--- places/UnityFileInfoRenderer.qml 2011-03-22 06:15:19 +0000
+++ places/UnityFileInfoRenderer.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21RendererGrid {21RendererGrid {
22 cellWidth: 20822 cellWidth: 208
2323
=== modified file 'places/UnityShowcaseRenderer.qml'
--- places/UnityShowcaseRenderer.qml 2011-03-22 06:15:19 +0000
+++ places/UnityShowcaseRenderer.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21UnityDefaultRenderer {21UnityDefaultRenderer {
22}22}
2323
=== modified file 'places/dash.qml'
--- places/dash.qml 2011-06-13 01:15:59 +0000
+++ places/dash.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import Unity2d 1.0 /* Necessary for GnomeBackground and LauncherPlacesList*/20import Unity2d 1.0 /* Necessary for GnomeBackground and LauncherPlacesList*/
2121
22Item {22Item {
2323
=== modified file 'spread/ScaledItem.qml'
--- spread/ScaledItem.qml 2011-03-22 06:04:20 +0000
+++ spread/ScaledItem.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
2020
21Item {21Item {
22 property variant target22 property variant target
2323
=== modified file 'spread/Window.qml'
--- spread/Window.qml 2011-03-22 06:04:20 +0000
+++ spread/Window.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import "utils.js" as Utils20import "utils.js" as Utils
2121
22/*22/*
2323
=== modified file 'spread/Windows.qml'
--- spread/Windows.qml 2011-06-07 16:34:46 +0000
+++ spread/Windows.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import "utils.js" as Utils20import "utils.js" as Utils
21import Unity2d 1.021import Unity2d 1.0
2222
2323
=== modified file 'spread/Workspace.qml'
--- spread/Workspace.qml 2011-05-31 11:27:41 +0000
+++ spread/Workspace.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import "utils.js" as Utils20import "utils.js" as Utils
21import Unity2d 1.0 /* Necessary for GnomeBackground */21import Unity2d 1.0 /* Necessary for GnomeBackground */
2222
2323
=== modified file 'spread/Workspaces.qml'
--- spread/Workspaces.qml 2011-04-11 09:23:01 +0000
+++ spread/Workspaces.qml 2011-06-23 17:11:37 +0000
@@ -16,7 +16,7 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import Qt 4.719import QtQuick 1.0
20import Unity2d 1.020import Unity2d 1.0
21import "utils.js" as Utils21import "utils.js" as Utils
2222

Subscribers

People subscribed via source and target branches