Merge lp:~zeller-benjamin/qtcreator-plugin-ubuntu/hide-nonclick-frameworks into lp:qtcreator-plugin-ubuntu

Proposed by Benjamin Zeller
Status: Merged
Approved by: Zoltan Balogh
Approved revision: 363
Merged at revision: 363
Proposed branch: lp:~zeller-benjamin/qtcreator-plugin-ubuntu/hide-nonclick-frameworks
Merge into: lp:qtcreator-plugin-ubuntu
Diff against target: 13 lines (+3/-0)
1 file modified
src/ubuntu/ubuntuclicktool.cpp (+3/-0)
To merge this branch: bzr merge lp:~zeller-benjamin/qtcreator-plugin-ubuntu/hide-nonclick-frameworks
Reviewer Review Type Date Requested Status
Zoltan Balogh Approve
Review via email: mp+254931@code.launchpad.net

Commit message

Workaround to hide non click frameworks returned by the store API as
available lp:1436470

Description of the change

Workaround to hide non click frameworks returned by the store API as
available

To post a comment you must log in.
Revision history for this message
Zoltan Balogh (bzoltan) wrote :

OK

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/ubuntu/ubuntuclicktool.cpp'
2--- src/ubuntu/ubuntuclicktool.cpp 2015-02-09 11:47:36 +0000
3+++ src/ubuntu/ubuntuclicktool.cpp 2015-04-01 15:09:28 +0000
4@@ -814,6 +814,9 @@
5 QStringList result;
6
7 for(auto i = obj.constBegin(); i != obj.constEnd(); i++ ) {
8+ if(!i.key().startsWith(QStringLiteral("ubuntu-sdk")))
9+ continue;
10+
11 if(i.value().toString() == QStringLiteral("available")) {
12 result += i.key();
13 }

Subscribers

People subscribed via source and target branches