[Pkg-privacy-commits] [tails-installer] 75/210: Get rid of unused strings in main.qml

Intrigeri intrigeri at moszumanska.debian.org
Wed May 24 15:26:30 UTC 2017


This is an automated email from the git hooks/post-receive script.

intrigeri pushed a commit to tag 3.90.0
in repository tails-installer.

commit 447e3a62d06b5ec0ed9cfcff243e294f6c6ce5e0
Author: Martin Briza <mbriza at redhat.com>
Date:   Tue Apr 14 12:39:45 2015 +0200

    Get rid of unused strings in main.qml
---
 liveusb/liveusb.qml | 185 ----------------------------------------------------
 1 file changed, 185 deletions(-)

diff --git a/liveusb/liveusb.qml b/liveusb/liveusb.qml
index 4993ec4..e4aa674 100644
--- a/liveusb/liveusb.qml
+++ b/liveusb/liveusb.qml
@@ -19,7 +19,6 @@ ApplicationWindow {
         id: palette
     }
 
-    //property int currentImageIndex: 0
     property bool canGoBack: false
 
     Behavior on x {
@@ -32,196 +31,12 @@ ApplicationWindow {
             duration: 80
         }
     }
-/*
-    ListModel {
-        id: selectedOsList
-        ListElement {
-            name: "Custom OS..."
-            description: "<pick from file chooser>"
-            icon: "/usr/share/icons/Adwaita/64x64/actions/document-open-symbolic.symbolic.png"
-            hasDetails: false
-        }
-        ListElement {
-            name: "Fedora Workstation"
-            description: "Fedora Workstation 21 64bit"
-            icon: "http://upload.wikimedia.org/wikipedia/commons/3/3f/Fedora_logo.svg"
-            hasDetails: true
-        }
-        ListElement {
-            name: "Fedora Workstation"
-            description: "Fedora Workstation 20 64bit"
-            icon: "http://upload.wikimedia.org/wikipedia/commons/3/3f/Fedora_logo.svg"
-            hasDetails: true
-        }
-        ListElement {
-            name: "Ubuntu Desktop"
-            description: "Ubuntu 14.04.1 LTS 64bit"
-            icon: "http://logonoid.com/images/ubuntu-logo.png"
-            hasDetails: true
-        }
-    }
-*/
-
-    ListModel {
-        id: osList
-        ListElement {
-            name: "Custom OS..."
-            description: "<pick from file chooser>"
-            icon: ""
-            hasDetails: false
-        }
-        ListElement {
-            name: "Fedora Workstation"
-            description: "Fedora Workstation 21 64bit"
-            icon: "http://upload.wikimedia.org/wikipedia/commons/3/3f/Fedora_logo.svg"
-            hasDetails: true
-        }
-        ListElement {
-            name: "Fedora Workstation"
-            description: "Fedora Workstation 20 64bit"
-            icon: "http://upload.wikimedia.org/wikipedia/commons/3/3f/Fedora_logo.svg"
-            hasDetails: true
-        }
-        ListElement {
-            name: "Ubuntu Desktop"
-            description: "Ubuntu 14.04.1 LTS 64bit"
-            icon: "http://logonoid.com/images/ubuntu-logo.png"
-            hasDetails: true
-        }
-        ListElement {
-            name: "Ubuntu Desktop"
-            description: "Ubuntu 14.10 64bit"
-            icon: "http://logonoid.com/images/ubuntu-logo.png"
-            hasDetails: true
-        }
-        ListElement {
-            name: "Fedora Workstation"
-            description: "Fedora Workstation 21 64bit"
-            icon: "http://upload.wikimedia.org/wikipedia/commons/3/3f/Fedora_logo.svg"
-            hasDetails: true
-        }
-        ListElement {
-            name: "Fedora Workstation"
-            description: "Fedora Workstation 20 64bit"
-            icon: "http://upload.wikimedia.org/wikipedia/commons/3/3f/Fedora_logo.svg"
-            hasDetails: true
-        }
-        ListElement {
-            name: "Ubuntu Desktop"
-            description: "Ubuntu 14.04.1 LTS 64bit"
-            icon: "http://logonoid.com/images/ubuntu-logo.png"
-            hasDetails: true
-        }
-        ListElement {
-            name: "Ubuntu Desktop"
-            description: "Ubuntu 14.10 64bit"
-            icon: "http://logonoid.com/images/ubuntu-logo.png"
-            hasDetails: true
-        }
-    }
 
     Rectangle {
         anchors.fill: parent
         color: palette.window
         //radius: 8
         clip: true
-/*
-        Rectangle {
-            id: toolBar
-            height: 48
-            z: 2
-            clip: true
-
-            color: "transparent"
-
-            Rectangle {
-                width: parent.width
-                anchors.bottom: parent.bottom
-                height: 1
-                color: "#a1a1a1"
-            }
-
-            anchors {
-                top: parent.top
-                right: parent.right
-                left: parent.left
-            }
-
-            MouseArea {
-                id: titleMouse
-                anchors.fill: parent
-                property real startX: 0
-                property real startY: 0
-                onPressed: {
-                    startX = mouse.x
-                    startY = mouse.y
-                }
-                onPositionChanged: {
-                    mainWindow.x -= startX - mouseX
-                    mainWindow.y -= startY - mouseY
-                }
-            }
-
-            BackButton {
-                id: backButton
-                visible: canGoBack
-                width: height
-                anchors {
-                    left: parent.left
-                    top: parent.top
-                    bottom: parent.bottom
-                    margins: 6
-                }
-                onClicked: {
-                    canGoBack = false
-                    contentList.currentIndex--
-                }
-            }
-
-            Text {
-                text: "OS Boot Imager"
-                anchors.centerIn: parent
-            }
-
-
-            MenuButton {
-                id: menuButton
-                width: height
-                anchors {
-                    right: parent.right
-                    // right: spacer.left
-                    top: parent.top
-                    bottom: parent.bottom
-                    margins: 6
-                }
-            }
-
-            Rectangle {
-                id: spacer
-                width: 1
-                color: "#c3c3c3"
-                anchors {
-                    right: quitButton.left
-                    top: parent.top
-                    bottom: parent.bottom
-                    margins: 6
-                }
-            }
-
-            QuitButton {
-                id: quitButton
-                //flat: true
-                anchors {
-                    right: parent.right
-                    top: parent.top
-                    bottom: parent.bottom
-                    margins: 6
-                }
-                width: height
-                onClicked: mainWindow.close()
-            }
-
-        }*/
 
         ListView {
             id: contentList

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-privacy/packages/tails-installer.git



More information about the Pkg-privacy-commits mailing list