aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorOrgad Shaneh <orgads@gmail.com>2012-02-19 21:32:48 +0200
committerThomas Hartmann <Thomas.Hartmann@nokia.com>2012-03-02 11:53:59 +0100
commit014862b773c90fbb75674a296064a02ff3db43fb (patch)
tree9bbb8b9cb40d27f0941ae6a26185fd0e3ecfeb16 /share
parent9dedcaedfb3e8eccb5dab463bd557a7ff92fd95e (diff)
Rename Recent Sessions -> Sessions
All available sessions are displayed, not only recent Change-Id: Ib2bc419526135eff414f7c997b2bf603424aa452 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@nokia.com> Reviewed-by: Daniel Molkentin <daniel.molkentin@nokia.com>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/welcomescreen/develop.qml30
-rw-r--r--share/qtcreator/welcomescreen/widgets/Sessions.qml (renamed from share/qtcreator/welcomescreen/widgets/RecentSessions.qml)0
2 files changed, 15 insertions, 15 deletions
diff --git a/share/qtcreator/welcomescreen/develop.qml b/share/qtcreator/welcomescreen/develop.qml
index 73c6a50836..e6ae8f83ed 100644
--- a/share/qtcreator/welcomescreen/develop.qml
+++ b/share/qtcreator/welcomescreen/develop.qml
@@ -68,9 +68,9 @@ Rectangle {
width: 1
height: line.height
color: "#c4c4c4"
- anchors.left: recentSessions.right
+ anchors.left: sessions.right
anchors.leftMargin: -1
- anchors.top: recentSessions.top
+ anchors.top: sessions.top
}
@@ -81,9 +81,9 @@ Rectangle {
height: 432
id: recentProjects
- anchors.left: recentlyUsedProjects.left
+ anchors.left: recentProjectsTitle.left
- anchors.top: recentlyUsedProjects.bottom
+ anchors.top: recentProjectsTitle.bottom
anchors.topMargin: 20
anchors.bottom: parent.bottom
anchors.bottomMargin: 40
@@ -104,26 +104,26 @@ Rectangle {
}
Text {
- id: recentlyUsedSessions
+ id: sessionsTitle
x: pageCaption.x + pageCaption.textOffset
y: 105
color: "#535353"
- text: qsTr("Recently used sessions")
+ text: qsTr("Sessions")
font.pixelSize: 16
font.family: "Helvetica"
font.bold: true
}
Text {
- id: recentlyUsedProjects
+ id: recentProjectsTitle
x: 406
y: 105
color: "#535353"
- text: qsTr("Recently used Projects")
- anchors.left: recentlyUsedSessions.right
+ text: qsTr("Recent Projects")
+ anchors.left: sessionsTitle.right
anchors.leftMargin: 160
font.bold: true
font.family: "Helvetica"
@@ -139,7 +139,7 @@ Rectangle {
height: 70
anchors.topMargin: 42
- anchors.top: recentSessions.bottom
+ anchors.top: sessions.bottom
LinkedText {
id: openProject
@@ -169,17 +169,17 @@ Rectangle {
}
}
- RecentSessions {
- id: recentSessions
+ Sessions {
+ id: sessions
x: 87
y: 144
width: 274
- anchors.left: recentlyUsedSessions.left
- anchors.right: recentlyUsedProjects.left
+ anchors.left: sessionsTitle.left
+ anchors.right: recentProjectsTitle.left
anchors.rightMargin: 40
- anchors.top: recentlyUsedSessions.bottom
+ anchors.top: sessionsTitle.bottom
anchors.topMargin: 20
model: sessionList
diff --git a/share/qtcreator/welcomescreen/widgets/RecentSessions.qml b/share/qtcreator/welcomescreen/widgets/Sessions.qml
index fbcf031a30..fbcf031a30 100644
--- a/share/qtcreator/welcomescreen/widgets/RecentSessions.qml
+++ b/share/qtcreator/welcomescreen/widgets/Sessions.qml