Merge lp:~aacid/system-image-client/use_colon into lp:system-image-client

Proposed by Albert Astals Cid
Status: Merged
Approved by: Ted Gould
Approved revision: 71
Merged at revision: 73
Proposed branch: lp:~aacid/system-image-client/use_colon
Merge into: lp:system-image-client
Diff against target: 11 lines (+1/-1)
1 file modified
systemimageclient.cpp (+1/-1)
To merge this branch: bzr merge lp:~aacid/system-image-client/use_colon
Reviewer Review Type Date Requested Status
Ted Gould (community) Approve
jenkins (community) continuous-integration Approve
Review via email: mp+115983@code.launchpad.net

Commit message

Use : as seperator and not ;

Since ; is the comment marker for INI files

Description of the change

Use : as seperator and not ;

Since ; is the comment marker for INI files

To post a comment you must log in.
Revision history for this message
jenkins (martin-mrazik+qa) wrote :
review: Approve (continuous-integration)
Revision history for this message
Ted Gould (ted) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'systemimageclient.cpp'
2--- systemimageclient.cpp 2012-07-17 10:57:27 +0000
3+++ systemimageclient.cpp 2012-07-20 13:25:29 +0000
4@@ -118,7 +118,7 @@
5 if (!ok) {
6 m_currentImageVersion = 0;
7 }
8- m_systemPartitions = settings.value("systemPartitions").toString().split(';');
9+ m_systemPartitions = settings.value("systemPartitions").toString().split(':');
10
11 connect(&m_downloadManager, SIGNAL(downloadFinished(bool)), this, SLOT(downloadFinished(bool)));
12

Subscribers

People subscribed via source and target branches