<html>
 <body>
  <div style="font-family: Verdana, Arial, Helvetica, Sans-Serif;">
   <table bgcolor="#f9f3c9" width="100%" cellpadding="12" style="border: 1px #c9c399 solid; border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
    <tr>
     <td>
      This is an automatically generated e-mail. To reply, visit:
      <a href="https://git.reviewboard.kde.org/r/120123/">https://git.reviewboard.kde.org/r/120123/</a>
     </td>
    </tr>
   </table>
   <br />











<div>



<table width="100%" border="0" bgcolor="white" style="border: 1px solid #C0C0C0; border-collapse: collapse; margin: 2px padding: 2px;">
 <thead>
  <tr>
   <th colspan="4" bgcolor="#F0F0F0" style="border-bottom: 1px solid #C0C0C0; font-size: 9pt; padding: 4px 8px; text-align: left;">
    <a href="https://git.reviewboard.kde.org/r/120123/diff/1/?file=310937#file310937line260" style="color: black; font-weight: bold; text-decoration: underline;">serialization/indexedstring.cpp</a>
    <span style="font-weight: normal;">

     (Diff revision 1)

    </span>
   </th>
  </tr>
 </thead>

 <tbody style="background-color: #e4d9cb; padding: 4px 8px; text-align: center;">
  <tr>

   <td colspan="2"><pre style="font-size: 8pt; line-height: 140%; margin: 0; ">KUrl IndexedString::toUrl() const {</pre></td>
   <td colspan="2"><pre style="font-size: 8pt; line-height: 140%; margin: 0; ">QUrl IndexedString::toUrl() const {</pre></td>

  </tr>
 </tbody>



 
 

 <tbody>

  <tr>
    <th bgcolor="#e9eaa8" style="border-right: 1px solid #C0C0C0;" align="right"><font size="2">260</font></th>
    <td bgcolor="#fdfebc" width="50%"><pre style="font-size: 8pt; line-height: 140%; margin: 0; ">  <span class="n">KUrl</span> <span class="n">url</span><span class="p">(</span> <span class="n">str</span><span class="p">()</span> <span class="p">);</span></pre></td>
    <th bgcolor="#e9eaa8" style="border-left: 1px solid #C0C0C0; border-right: 1px solid #C0C0C0;" align="right"><font size="2">259</font></th>
    <td bgcolor="#fdfebc" width="50%"><pre style="font-size: 8pt; line-height: 140%; margin: 0; ">  <span class="k">return</span> <span class="n">QUrl</span><span class="o">::</span><span class="n">fromUserInput</span><span class="p">(</span> <span class="n">str</span><span class="p">()</span> <span class="p">);</span></pre></td>
  </tr>

 </tbody>

</table>

 <div style="margin-left: 2em;">

  <pre style="white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;"><p style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: inherit;">Currently paths to <code style="text-rendering: inherit;color: #4444cc;padding: 0;white-space: normal;margin: 0;line-height: inherit;">IndexedString</code> can be passed both ways, file:///tmp or /tmp</p>
<p style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: inherit;">But IMO best way would be to use full file:/// form everywhere internally and convert to other form only when actually using it, ie. to display to user or to pass to function which expects local file.</p></pre>
 </div>
</div>
<br />



<p>- Dāvis Mosāns</p>


<br />
<p>On septembris 10th, 2014, 12:41 a.m. EEST, Dāvis Mosāns wrote:</p>









<table bgcolor="#fefadf" width="100%" cellspacing="0" cellpadding="12" style="border: 1px #888a85 solid; border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
 <tr>
  <td>

<div>Review request for KDevelop.</div>
<div>By Dāvis Mosāns.</div>


<p style="color: grey;"><i>Updated Sept. 10, 2014, 12:41 a.m.</i></p>









<div style="margin-top: 1.5em;">
 <b style="color: #575012; font-size: 10pt;">Repository: </b>
kdevplatform
</div>


<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Description </h1>
 <table width="100%" bgcolor="#ffffff" cellspacing="0" cellpadding="10" style="border: 1px solid #b8b5a0">
 <tr>
  <td>
   <pre style="margin: 0; padding: 0; white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;"><p style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: inherit;">Port KUrl to QUrl</p>
<ul style="padding: 0;text-rendering: inherit;margin: 0 0 0 1em;line-height: inherit;white-space: normal;">
<li style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: normal;">KUrl::List => QList<QUrl></li>
<li style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: normal;">KUrl => QUrl::fromLocalFile or fromUserInput or QUrl()</li>
<li style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: normal;">pathOrUrl => toString</li>
<li style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: normal;">prettyUrl => toDisplayString(QUrl::PreferLocalFile)</li>
<li style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: normal;">upUrl => resolved("..")</li>
<li style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: normal;">addPath => resolved or setPath(path() + )</li>
<li style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: normal;">relativeUrl => mid(length())</li>
<li style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: normal;">cleanPath => adjusted(QUrl::NormalizePathSegments) or toString(QUrl::NormalizePathSegments)</li>
<li style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: normal;">adjustPath => adjusted</li>
<li style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: normal;">KUrl::RemoveTrailingSlash => QUrl::StripTrailingSlash</li>
</ul></pre>
  </td>
 </tr>
</table>


<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Testing </h1>
<table width="100%" bgcolor="#ffffff" cellspacing="0" cellpadding="10" style="border: 1px solid #b8b5a0">
 <tr>
  <td>
   <pre style="margin: 0; padding: 0; white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;"><p style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: inherit;">Compiles and some things work, but few tests does fail and I haven't found yet why so would be nice for other eyes :)</p>
<p style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: inherit;">Needs to be reviewed very carefully as it's very easy to miss something. Also I haven't fully tested it.</p>
<p style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: inherit;">These fail due some bug here:</p>
<ul style="padding: 0;text-rendering: inherit;margin: 0 0 0 1em;line-height: inherit;white-space: normal;">
<li style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: normal;">test_projectcontroller</li>
<li style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: normal;">test_quickopen</li>
<li style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: normal;">test_findreplace</li>
<li style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: normal;">test_kdevgit</li>
</ul>
<p style="padding: 0;text-rendering: inherit;margin: 0;line-height: inherit;white-space: inherit;">Some other tests also fail, but they didn't passed previously either.</p></pre>
  </td>
 </tr>
</table>


<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Diffs</b> </h1>
<ul style="margin-left: 3em; padding-left: 0;">

 <li>plugins/problemreporter/problemtreeview.cpp <span style="color: grey">(b1af65bef3e0263b209cd88489e5e997d6e0ccc2)</span></li>

 <li>plugins/projectmanagerview/projectmanagerview.cpp <span style="color: grey">(781cf49a19697744899bcebbc4463e88b7023375)</span></li>

 <li>plugins/projectmanagerview/projectmanagerviewplugin.h <span style="color: grey">(b96808314feb3d3246295d38896d7e9b890ea5c7)</span></li>

 <li>plugins/projectmanagerview/projectmanagerviewplugin.cpp <span style="color: grey">(19e487eda653e1de53d47526bedd9d5b84cd7a88)</span></li>

 <li>plugins/projectmanagerview/projecttreeview.h <span style="color: grey">(8b311b0ba219335b3236002cc7bec04f4d89a67b)</span></li>

 <li>plugins/projectmanagerview/vcsoverlayproxymodel.h <span style="color: grey">(5ae9aa6815f9ca5c0cea2117502092b973d12449)</span></li>

 <li>plugins/projectmanagerview/vcsoverlayproxymodel.cpp <span style="color: grey">(c478ff8ddce4738222fe82ab8e03c1a54f07cd4f)</span></li>

 <li>plugins/quickopen/duchainitemquickopen.cpp <span style="color: grey">(122bf576ed09858b3d66ff852501700a43af68e2)</span></li>

 <li>plugins/quickopen/projectfilequickopen.cpp <span style="color: grey">(d7db49c7d5569b192e6ce91a218adc594aebb7b1)</span></li>

 <li>plugins/quickopen/quickopenplugin.h <span style="color: grey">(f793dd21a8a4f8ab7c0000d41c6bf66e88c1596e)</span></li>

 <li>plugins/quickopen/quickopenplugin.cpp <span style="color: grey">(c49df9ddb9e105c5ef77a3b3d59e338654f687b9)</span></li>

 <li>plugins/quickopen/tests/test_quickopen.cpp <span style="color: grey">(cc1d10ecdf018c6e5aeadf7a967876e5abce8869)</span></li>

 <li>plugins/reviewboard/reviewboardjobs.h <span style="color: grey">(5282e167a436977407928555600383cea0c9c2ea)</span></li>

 <li>plugins/reviewboard/reviewboardjobs.cpp <span style="color: grey">(72e4c1340edddaeb9b56e7eb623f93dc1f8372f5)</span></li>

 <li>plugins/reviewboard/reviewboardplugin.cpp <span style="color: grey">(63c73ca3ccb69e35efd3a35c5d5cf84930001234)</span></li>

 <li>plugins/reviewboard/reviewpatchdialog.h <span style="color: grey">(8b26f2a2c2f2b2ce0604f5594bdeb36b0f05525f)</span></li>

 <li>plugins/reviewboard/reviewpatchdialog.cpp <span style="color: grey">(54c5ee72506c8d35564c8ed7fb7ad6d70345cc7f)</span></li>

 <li>plugins/reviewboard/tests/main.cpp <span style="color: grey">(7afbf9e6fd9d56f9018ca8f7da4e5126dc08dbaa)</span></li>

 <li>plugins/subversion/kdevsvnplugin.h <span style="color: grey">(20656ca93f36fe81d30d88dec6194a5be619862b)</span></li>

 <li>plugins/subversion/kdevsvnplugin.cpp <span style="color: grey">(a87343d511e9515cd82cf3fe693ce36daf07cb59)</span></li>

 <li>plugins/subversion/svnaddjob.h <span style="color: grey">(d08f7114171b6b4960b4d2ce9825e53b2cad6a77)</span></li>

 <li>plugins/subversion/svnaddjob.cpp <span style="color: grey">(93856a32291667adb89b1653240fc95ec24b32ee)</span></li>

 <li>plugins/subversion/svnaddjob_p.h <span style="color: grey">(38ef5ed97a723188c1d37a1daaa1dc5e1f10ef9b)</span></li>

 <li>plugins/subversion/svnblamejob.h <span style="color: grey">(c7c8f0590e5360851b7c11d5096ca002e2951819)</span></li>

 <li>plugins/subversion/svnblamejob.cpp <span style="color: grey">(05fb849c26fde70eb8c08c7226313d904dc186af)</span></li>

 <li>plugins/subversion/svnblamejob_p.h <span style="color: grey">(1a1e22a3ec7be4c474a53375888688ecb0c49b8d)</span></li>

 <li>plugins/subversion/svncatjob.h <span style="color: grey">(55e6bda01ae5b705e43871374e6a97edf64069f5)</span></li>

 <li>language/duchain/duchain.h <span style="color: grey">(173cdabd3d2efb193b7a1acf2b860d5488db6f9e)</span></li>

 <li>plugins/subversion/svninfojob.h <span style="color: grey">(774f40797b61c3000249c6f05a8a5af4557d62a8)</span></li>

 <li>plugins/subversion/svninfojob.cpp <span style="color: grey">(dbd923caed34f2f2162baf937e43e546d42e3419)</span></li>

 <li>plugins/subversion/svninfojob_p.h <span style="color: grey">(8831f4eddaffb1ff791ba9fce88290a72fe403fc)</span></li>

 <li>plugins/subversion/svnlocationwidget.cpp <span style="color: grey">(25aa431ce95013882ad5c401b91149de71460e32)</span></li>

 <li>plugins/subversion/svnlogjob.h <span style="color: grey">(a762a9999f5d27900b48095ed90d99690e02b724)</span></li>

 <li>plugins/subversion/svnlogjob.cpp <span style="color: grey">(051090fdbe6fadb47fbf9fd3ecd1ac1828a1c0da)</span></li>

 <li>plugins/subversion/svnlogjob_p.h <span style="color: grey">(c254889d1b97eb0e819669d09f53efb2868640b9)</span></li>

 <li>plugins/subversion/svnmovejob.h <span style="color: grey">(4c14bfeabfce46f112c30b8e1d15389cdc1c52c5)</span></li>

 <li>plugins/subversion/svnmovejob.cpp <span style="color: grey">(e6e1d5707d5e3899fed89215a65be180152777fc)</span></li>

 <li>plugins/subversion/svnmovejob_p.h <span style="color: grey">(897dfc3825ded54ddda55324abe026a66526cf44)</span></li>

 <li>plugins/subversion/svnmovewidgets.h <span style="color: grey">(fb020ab042ea07f30b95fa232d862209cd96b3c9)</span></li>

 <li>plugins/subversion/svnmovewidgets.cpp <span style="color: grey">(443268bb82108672bd9daeb34ce74cae3f26de7b)</span></li>

 <li>plugins/subversion/svnremovejob.h <span style="color: grey">(09a75459141b99575c2f8cab2e1cd62eb3e63a41)</span></li>

 <li>plugins/subversion/svnremovejob.cpp <span style="color: grey">(81a69dcd6f7f9ca3138794b99efdc9223b394d1d)</span></li>

 <li>plugins/subversion/svnremovejob_p.h <span style="color: grey">(c9dfa3451dd5827c0121784c8c2d22e102230214)</span></li>

 <li>plugins/subversion/svnrevertjob.h <span style="color: grey">(9f537f8a090c6c6d1335ac31b120f1e82d8110eb)</span></li>

 <li>plugins/subversion/svnrevertjob.cpp <span style="color: grey">(991a3d62da270bf5dff9c42805485bd31538b79a)</span></li>

 <li>plugins/subversion/svnrevertjob_p.h <span style="color: grey">(404f1ecbfa059db23f19f585e68ba7822124f4a1)</span></li>

 <li>plugins/subversion/svnrevertwidgets.h <span style="color: grey">(8c9019e239bb50dec5becf734447ac87301c974e)</span></li>

 <li>plugins/subversion/svnrevertwidgets.cpp <span style="color: grey">(dab38dd42e7d52adc3d96a6b69f40b91a14ae6d6)</span></li>

 <li>plugins/subversion/svnstatusjob.h <span style="color: grey">(549990b02490d4d18f5bae20e49bdadf6efc4513)</span></li>

 <li>plugins/subversion/svnstatusjob.cpp <span style="color: grey">(e9af2ce0d3771efc7c58561fdb3081628b4362d8)</span></li>

 <li>plugins/subversion/svnstatusjob_p.h <span style="color: grey">(6d8789efac54e178c16596fc37679e027fcbfb84)</span></li>

 <li>plugins/subversion/svnstatuswidgets.h <span style="color: grey">(b1088a577b60d668b7b365386b3ae50c23426186)</span></li>

 <li>plugins/subversion/svnstatuswidgets.cpp <span style="color: grey">(7e02d5893050f05c02cd2b0a72303a9106ec4838)</span></li>

 <li>plugins/subversion/svnupdatejob.h <span style="color: grey">(8a283ac280de20a16d1569803275892c2d18c11e)</span></li>

 <li>plugins/subversion/svnupdatejob.cpp <span style="color: grey">(e7eb475935c544c2e095ae356b08a7f147217424)</span></li>

 <li>plugins/subversion/svnupdatejob_p.h <span style="color: grey">(e0d388628f0831d3f1e83f21d2be8ff5317bb669)</span></li>

 <li>plugins/subversion/svnupdatewidget.cpp <span style="color: grey">(802d102cc367ebe6dba445c4fabadec285db30ea)</span></li>

 <li>plugins/subversion/tests/svnimport.cpp <span style="color: grey">(a60455bc9d64e7eeffe21b892f728cbe6cd6da09)</span></li>

 <li>plugins/subversion/tests/svnrecursiveadd.cpp <span style="color: grey">(bcd5cf253d59da2207f2479c076b98741d1e0476)</span></li>

 <li>plugins/switchtobuddy/switchtobuddyplugin.h <span style="color: grey">(16adcdeb5c43782f5a8085a72ce3c6b81c0b13b0)</span></li>

 <li>plugins/switchtobuddy/switchtobuddyplugin.cpp <span style="color: grey">(bad7dbba8c56c87ce23a5ea5b513ca30160c0ecf)</span></li>

 <li>plugins/templatemanager/templatepage.cpp <span style="color: grey">(888b420936f9055cf152370c9baf7bf2f7266ae8)</span></li>

 <li>plugins/testview/testview.cpp <span style="color: grey">(6510a906440f3e3874ab7cc9021c280b54055a4b)</span></li>

 <li>plugins/vcschangesview/vcschangesview.h <span style="color: grey">(83317b9a4bb3a5d7119111872234a411c9fd32e8)</span></li>

 <li>plugins/vcschangesview/vcschangesview.cpp <span style="color: grey">(11764ffae7a86f2dd12925535fa4749bda8e0db4)</span></li>

 <li>plugins/vcschangesview/vcschangesviewplugin.h <span style="color: grey">(6fc3d7876c793260b20e912ba7edef624e79b057)</span></li>

 <li>plugins/vcschangesview/vcschangesviewplugin.cpp <span style="color: grey">(465635fbdd7ab10ca1b35a9d506a6336e0e5a388)</span></li>

 <li>plugins/welcomepage/sessionsmodel.cpp <span style="color: grey">(cd8e77dcd0be2a517f48cd9c77b431c5f9ff69d2)</span></li>

 <li>plugins/welcomepage/welcomepagedocument.h <span style="color: grey">(443f57af8d390696448e2a0ad9bd7fde5227e7b7)</span></li>

 <li>plugins/welcomepage/welcomepagedocument.cpp <span style="color: grey">(ddea7e1bf0a416b3f4069c0307e6981328eb9c9f)</span></li>

 <li>plugins/welcomepage/welcomepageplugin.cpp <span style="color: grey">(d24317e7767600d2774972ace8a4f1f708c565d1)</span></li>

 <li>project/abstractfilemanagerplugin.cpp <span style="color: grey">(94331e9a916721850a4df6d990d9e7f1953e9661)</span></li>

 <li>project/helper.h <span style="color: grey">(ac4dbb02d779f7926122de5ab5c2a856b4a1b419)</span></li>

 <li>project/helper.cpp <span style="color: grey">(21f0261351fcacaaeba2c94fd33cfe30aacd4c29)</span></li>

 <li>project/projectbuildsetmodel.cpp <span style="color: grey">(d44a6b1658f6083cda900d9275ef1a9b98c9a02f)</span></li>

 <li>project/projectconfigskeleton.h <span style="color: grey">(f12eaf2bd90f4d490ab74af575976c46a92bf71b)</span></li>

 <li>project/projectmodel.h <span style="color: grey">(5d77958b08d288a79e9f23bf4d248c3cb3945f7d)</span></li>

 <li>project/tests/projectmodelperformancetest.cpp <span style="color: grey">(9d8476caef837ac098c1cef4862f85eff6613a5a)</span></li>

 <li>project/tests/test_projectmodel.cpp <span style="color: grey">(70c60da797798cf004817e5a1080b00569c83013)</span></li>

 <li>serialization/indexedstring.h <span style="color: grey">(182e4b51d37951af517639cd269af5666a23837c)</span></li>

 <li>serialization/indexedstring.cpp <span style="color: grey">(e7786e7f2c38eff3aca744c526ef9c1742c3a334)</span></li>

 <li>serialization/tests/serialization/tst_indexedstring.cpp <span style="color: grey">(30488807e64a5ff522f3b60a6e2cc1b0ddec70d4)</span></li>

 <li>shell/debugcontroller.cpp <span style="color: grey">(d27aee5bbeb1ab44e8e0c321259bf6b134a83b82)</span></li>

 <li>shell/documentcontroller.h <span style="color: grey">(c18c4b47de3fe5bed2e3210fbbf952ba85a95a2e)</span></li>

 <li>shell/documentcontroller.cpp <span style="color: grey">(d5e7c3b1c58cc389e1c9fb887e24c5a745efe73a)</span></li>

 <li>shell/languagecontroller.h <span style="color: grey">(57a617cc44c0915e8abc4556f1373f09d9693451)</span></li>

 <li>shell/languagecontroller.cpp <span style="color: grey">(6dbc805b2ce6815b4c374ec6868f01e42526b6bc)</span></li>

 <li>shell/mainwindow.cpp <span style="color: grey">(6741a16a42958161ce0d5c0239fc580838648da3)</span></li>

 <li>shell/openprojectdialog.h <span style="color: grey">(7aa124fcab1dc9962741593e1dc9af68b6794830)</span></li>

 <li>shell/openprojectdialog.cpp <span style="color: grey">(4301304f288a88e354e235e178fcd2968f99099b)</span></li>

 <li>shell/openprojectpage.h <span style="color: grey">(4732294413667dcdaef8f0b12cb4261e3124f8a1)</span></li>

 <li>shell/openprojectpage.cpp <span style="color: grey">(33fb333e4d03259cfc31e93151f09887169e0f5e)</span></li>

 <li>shell/partcontroller.h <span style="color: grey">(75ad6bb9256284c3ca79f703d95b4b12f0455d9e)</span></li>

 <li>shell/partcontroller.cpp <span style="color: grey">(edf476dc1e1a83a408d83d84c46528c1f8dab023)</span></li>

 <li>shell/partdocument.h <span style="color: grey">(adb3f9bc1ee4b8e96803f2a1871533d01c2bcbd0)</span></li>

 <li>shell/partdocument.cpp <span style="color: grey">(8d2fdf931eaf770920ddb56f5dd04645910f6781)</span></li>

 <li>shell/plugincontroller.h <span style="color: grey">(956f641696cd02fb5479ad2f4560c49cc69ff42a)</span></li>

 <li>shell/project.h <span style="color: grey">(59aac113fcfe30b4429313c1dae4352b1e8a8c1f)</span></li>

 <li>shell/project.cpp <span style="color: grey">(1fbd904f8619debdf0bebd6759fea1fbbe846925)</span></li>

 <li>shell/projectcontroller.h <span style="color: grey">(a3f827b6890d7254a6b1630709602a613657fb40)</span></li>

 <li>shell/projectcontroller.cpp <span style="color: grey">(1677e01a10d45c546a562f780cd37a7d73709a85)</span></li>

 <li>shell/projectinfopage.h <span style="color: grey">(8f6cd0eebc46b18ec5bfb3ef42889605720c10b6)</span></li>

 <li>shell/projectsourcepage.h <span style="color: grey">(261632e63abe5cd57cb3b4723726450470051841)</span></li>

 <li>shell/projectsourcepage.cpp <span style="color: grey">(5769e4a49c2772443744b2bec48bb48e6a655904)</span></li>

 <li>shell/savedialog.cpp <span style="color: grey">(531a8749e4a3d7a43113d7b335d323485b941be6)</span></li>

 <li>shell/session.h <span style="color: grey">(64a1e77e0b083c0735eef52bcb127a9bac0f0843)</span></li>

 <li>shell/session.cpp <span style="color: grey">(b779a791fb7bcb748d9cea93ccd8bcc202d89d2a)</span></li>

 <li>shell/sessioncontroller.cpp <span style="color: grey">(4d96aa44050396e18bedf3bf13bde9f08ea58293)</span></li>

 <li>shell/settings/bgpreferences.h <span style="color: grey">(277917a4e96db6177307ad233efbd9a5624ff595)</span></li>

 <li>shell/settings/ccpreferences.h <span style="color: grey">(f83f9e2c7c21f30d9181d0a65e716d906e0ec026)</span></li>

 <li>shell/settings/editstyledialog.cpp <span style="color: grey">(ecff30a03699b8e795ba36a39f2db7c5333d0c09)</span></li>

 <li>shell/settings/environmentpreferences.h <span style="color: grey">(88813d912b44abf40d3049ad9f9eb4cf4eeb463e)</span></li>

 <li>shell/settings/pluginpreferences.h <span style="color: grey">(af48c5332b626ac56b44a442ee6f2811cbf3256b)</span></li>

 <li>shell/settings/projectpreferences.h <span style="color: grey">(b34a506ef7b1b1ac91ad4a9b23dc28ec029f08c0)</span></li>

 <li>shell/settings/sourceformattersettings.cpp <span style="color: grey">(31d5efec5f4512eb6b9a06453038df8f0b89849d)</span></li>

 <li>shell/sourceformattercontroller.h <span style="color: grey">(a45008c9b90d0d6dd8c3910acb9ed3f3d88be0db)</span></li>

 <li>shell/sourceformattercontroller.cpp <span style="color: grey">(0ad0ffa4dea45c5be7dec0037262074637cf3404)</span></li>

 <li>shell/testcontroller.cpp <span style="color: grey">(baa1fa9ef0d1acd170bdab494c2a3b885af881ce)</span></li>

 <li>shell/tests/test_documentcontroller.h <span style="color: grey">(4530a2d7258502e2f7c2d77970421d99eb0f3647)</span></li>

 <li>shell/tests/test_documentcontroller.cpp <span style="color: grey">(6f3fb01efb6182721cea5afd7c70359d012fc5cc)</span></li>

 <li>shell/tests/test_projectcontroller.cpp <span style="color: grey">(489b7960ba4ed5889c379432f64325f89fe16149)</span></li>

 <li>shell/tests/test_shellbuddy.cpp <span style="color: grey">(76c941e0d47ca87a43e9c5a0dc214701ba13bae5)</span></li>

 <li>shell/textdocument.h <span style="color: grey">(2b7932cc1b429666232b8a66686c44ee9df25958)</span></li>

 <li>shell/textdocument.cpp <span style="color: grey">(2e3722db1776a7d7063573e67c3adc3549c35be1)</span></li>

 <li>shell/workingsets/workingsettooltipwidget.cpp <span style="color: grey">(cbb274ef4b67e9b6204ccf5dd8441b7b5502c985)</span></li>

 <li>sublime/container.cpp <span style="color: grey">(304f1871801898021f6d500cd38556b5b281c56c)</span></li>

 <li>sublime/examples/example1main.cpp <span style="color: grey">(e168333da1cb379a0dc507d037f851913227e9e7)</span></li>

 <li>sublime/examples/example2.cpp <span style="color: grey">(679d1dcbca0348e044cbbb02bcc074223954451d)</span></li>

 <li>sublime/tests/test_areaoperation.cpp <span style="color: grey">(ef545329b42ae77820541431ec7dc53295f1f869)</span></li>

 <li>sublime/tests/test_areawalker.cpp <span style="color: grey">(07777c032241942d6d9052bd9731255d7628030a)</span></li>

 <li>sublime/tests/test_controller.cpp <span style="color: grey">(d377cf0ffbff79a18267cb05395eb97e4f472392)</span></li>

 <li>sublime/tests/test_document.cpp <span style="color: grey">(87b1ac06d6489e0f1ecd55525762badeda72704b)</span></li>

 <li>sublime/tests/test_view.cpp <span style="color: grey">(8e415f614a35d5e9eb56f9f8897c4c421bd915ed)</span></li>

 <li>sublime/urldocument.h <span style="color: grey">(29e686b505095141bb3d746d2e5f8f6d3beab7a8)</span></li>

 <li>sublime/urldocument.cpp <span style="color: grey">(f8ebcec212ab67adde9d6158f9cdc2eec4f5f77b)</span></li>

 <li>tests/testcore.cpp <span style="color: grey">(a3e4c945b265c9bd1de440d8059862d62b68276e)</span></li>

 <li>util/duchainify/main.h <span style="color: grey">(14b3fad0c228047033f24f0d11e26a0d26434f50)</span></li>

 <li>util/duchainify/main.cpp <span style="color: grey">(d7a8eaaf6ac847becb09a209bbaeb4a69927ec89)</span></li>

 <li>vcs/dvcs/dvcsjob.h <span style="color: grey">(f7010fc4c5e3e6f599bc12e5c19319bac8c5e63d)</span></li>

 <li>vcs/dvcs/dvcsjob.cpp <span style="color: grey">(d2bd90e3b9cbf54ba0cb2ea73531082732f9f112)</span></li>

 <li>vcs/dvcs/dvcsplugin.h <span style="color: grey">(3d7e3a44675aa36268d6bff4090c66c7b0e5e06a)</span></li>

 <li>vcs/dvcs/dvcsplugin.cpp <span style="color: grey">(a273653edb393984b9e836f05b7ca47ed348bc90)</span></li>

 <li>vcs/dvcs/tests/test_dvcsjob.cpp <span style="color: grey">(98d7ac46bd86e0dc5ac28d5168036fca716c9b96)</span></li>

 <li>vcs/interfaces/ibasicversioncontrol.h <span style="color: grey">(de3ef6ebfa901f4a89cdf67b26dbc908cd0223e2)</span></li>

 <li>vcs/interfaces/ibasicversioncontrol.cpp <span style="color: grey">(02e06a93cd41eec9a46634bf4b3b694744dde038)</span></li>

 <li>vcs/interfaces/ibranchingversioncontrol.h <span style="color: grey">(4bddc46b42db25628966edd6967b24a28d6c3da0)</span></li>

 <li>vcs/interfaces/ibrowsableversioncontrol.h <span style="color: grey">(807b135b53355da11e8524a3c5b76511e1961369)</span></li>

 <li>vcs/interfaces/icentralizedversioncontrol.h <span style="color: grey">(49a6193013e48fe8775de5c7255331d1ae2d1f3d)</span></li>

 <li>vcs/interfaces/icontentawareversioncontrol.h <span style="color: grey">(a5643810a4840aab0672e7bb22ce334a32f3d1d4)</span></li>

 <li>vcs/interfaces/idistributedversioncontrol.h <span style="color: grey">(b36f74323fd1215520ee9412f2558116ba3d0fb6)</span></li>

 <li>vcs/interfaces/ipatchdocument.h <span style="color: grey">(af8eb9a944656fbd474d559d5bf8473930133c1f)</span></li>

 <li>vcs/interfaces/ipatchsource.h <span style="color: grey">(f8fb245d02e4f835d8a324cd3d091ba1a29abcff)</span></li>

 <li>vcs/interfaces/ipatchsource.cpp <span style="color: grey">(a4a1a6477bdb00ff80b4d5f29da7b7287f5e5b03)</span></li>

 <li>vcs/models/brancheslistmodel.h <span style="color: grey">(dae5fc8c3602be8bb53d03544c789c1321560986)</span></li>

 <li>vcs/models/brancheslistmodel.cpp <span style="color: grey">(f2fbe0dda21deff587575ba4d350762037449529)</span></li>

 <li>vcs/models/projectchangesmodel.h <span style="color: grey">(ae6eec5ae26a49fa492dbd9ddf04fdb3e85c7d43)</span></li>

 <li>vcs/models/projectchangesmodel.cpp <span style="color: grey">(1308b8b12208ab94f0c536af8ee77a91966061bb)</span></li>

 <li>vcs/models/tests/test_models.cpp <span style="color: grey">(fce698135bb32d58836fa0d747593f2a3c2dfc07)</span></li>

 <li>vcs/models/vcsannotationmodel.h <span style="color: grey">(0cab18bfc44cc3b127cd47b9863f97e2719f7bde)</span></li>

 <li>vcs/models/vcsannotationmodel.cpp <span style="color: grey">(54d7e014298171d3e311f16cac019ebb950406dc)</span></li>

 <li>vcs/models/vcseventmodel.h <span style="color: grey">(4b2d0871b5b428ec02ca5f4118e44d5de4ce907f)</span></li>

 <li>vcs/models/vcseventmodel.cpp <span style="color: grey">(4a93778f859b50f540176776764f9ab5a99aa198)</span></li>

 <li>vcs/models/vcsfilechangesmodel.h <span style="color: grey">(e740daaa81635b4d298cd5637d5bff01838f4abc)</span></li>

 <li>vcs/models/vcsfilechangesmodel.cpp <span style="color: grey">(9e29b0bd94cef1a791c67d84de6446b2d803b60c)</span></li>

 <li>vcs/vcsannotation.h <span style="color: grey">(0956904dc94b8200f04ea4710d5b9a1526761207)</span></li>

 <li>vcs/vcsannotation.cpp <span style="color: grey">(235206b3312bb4cd93bdc15f7d7b254d5ccfa756)</span></li>

 <li>vcs/vcsdiff.h <span style="color: grey">(573ec1b92262019291acaf3e0f65bea9bc079716)</span></li>

 <li>vcs/vcsdiff.cpp <span style="color: grey">(01eb73cfd496d86bb7984f62ed084304e7bcc195)</span></li>

 <li>vcs/vcsjob.h <span style="color: grey">(c1b7100171ce1bd6cba4311bb174a191a163d2c9)</span></li>

 <li>vcs/vcslocation.h <span style="color: grey">(4de490bd522c1f7245e1bbdb9cea689ceeadad5a)</span></li>

 <li>vcs/vcslocation.cpp <span style="color: grey">(55729595c7915dbd79df0c8805176333fb8332e1)</span></li>

 <li>vcs/vcspluginhelper.h <span style="color: grey">(7e660163225181869d7f9dffe83285de6e94dfdc)</span></li>

 <li>vcs/vcspluginhelper.cpp <span style="color: grey">(e1dffa82bd4ab7f28e91c811dfe9242c3e6dca96)</span></li>

 <li>vcs/vcsstatusinfo.h <span style="color: grey">(c5eecc01fe598d282fa5ba2420263c45d618bad9)</span></li>

 <li>vcs/vcsstatusinfo.cpp <span style="color: grey">(0f8be97ee796c801a6b0bac7d6f742ac62733850)</span></li>

 <li>vcs/widgets/standardvcslocationwidget.h <span style="color: grey">(68b73a6eab778debb93017b405241a2fb018adc2)</span></li>

 <li>vcs/widgets/standardvcslocationwidget.cpp <span style="color: grey">(91a538a4fb3501200507f10e008c2c9dfd9fd2e2)</span></li>

 <li>vcs/widgets/vcscommitdialog.h <span style="color: grey">(e2df40bcd2ae7edc58b5e15706a630ed37eb5cd8)</span></li>

 <li>vcs/widgets/vcsdiffpatchsources.h <span style="color: grey">(ea2799c890083fd29c5bb661fcd639805e7ca235)</span></li>

 <li>vcs/widgets/vcsdiffpatchsources.cpp <span style="color: grey">(4fce7e486f6e97f59f2b11edd08abad69fa6c280)</span></li>

 <li>vcs/widgets/vcseventwidget.h <span style="color: grey">(b6ef012dc4397a16f1b3a875268df865104950e7)</span></li>

 <li>vcs/widgets/vcseventwidget.cpp <span style="color: grey">(69aa17eac3dd25e9984dc5e09ab25dea647adf77)</span></li>

 <li>vcs/widgets/vcsimportmetadatawidget.h <span style="color: grey">(844b397b80ae0d074113e017fe95ebcfd7b456a2)</span></li>

 <li>language/duchain/duchain.cpp <span style="color: grey">(4387ae8808a41bb2c67122cec59331bf89cd7f20)</span></li>

 <li>language/duchain/duchainutils.h <span style="color: grey">(9d925f3efd1b7164f973ce894a74698c8a5f3157)</span></li>

 <li>language/duchain/duchainutils.cpp <span style="color: grey">(9d6a8b792b7d520ffdb24a588687d1c9e9ce50ac)</span></li>

 <li>language/duchain/dumpdotgraph.h <span style="color: grey">(22a379e278080a7ec2a6754fa5cea5bcb6ab277a)</span></li>

 <li>language/duchain/dumpdotgraph.cpp <span style="color: grey">(6a1acc1a0a4504fb9f14ada4ce3d79b91576859e)</span></li>

 <li>language/duchain/navigation/abstractdeclarationnavigationcontext.cpp <span style="color: grey">(b1f88c41236fe36750bd9fd240bcaa50faf9c2e7)</span></li>

 <li>language/duchain/navigation/abstractincludenavigationcontext.cpp <span style="color: grey">(6477b9c9dfaeabf2d446080dfd54bbea3f6c0419)</span></li>

 <li>language/duchain/navigation/abstractnavigationcontext.cpp <span style="color: grey">(05143a1b3095e11e998e199cd6426db0339bf167)</span></li>

 <li>language/duchain/navigation/navigationaction.h <span style="color: grey">(c64f1a6d6b48d42d4baa92ed75b30902268f2304)</span></li>

 <li>language/duchain/navigation/useswidget.cpp <span style="color: grey">(e0ff561db0b2cca24d7174b52f4cbd791592ee09)</span></li>

 <li>language/interfaces/codecontext.cpp <span style="color: grey">(f3bec651f71ad803d6de071e2a2fbbac039ae30e)</span></li>

 <li>language/interfaces/editorcontext.h <span style="color: grey">(4e10c69cbf79fd4ed73d720fee3b0859386711b1)</span></li>

 <li>language/interfaces/editorcontext.cpp <span style="color: grey">(8e3e2f723734c67643e6cc11b45e3558dbd986ef)</span></li>

 <li>language/interfaces/icodecompletion.h <span style="color: grey">(f59f27765765a8ba31f3b0fc552a460877c48d37)</span></li>

 <li>language/interfaces/icreateclasshelper.h <span style="color: grey">(28b86985d05366fd824edc10783e1052dcdad111)</span></li>

 <li>language/interfaces/ilanguagesupport.h <span style="color: grey">(c4d3e2ccc7b7b8c840da28ab0e82ecfc3877b929)</span></li>

 <li>language/interfaces/ilanguagesupport.cpp <span style="color: grey">(66eda8655a3f800dff7d7666fcefa3af47bd8518)</span></li>

 <li>language/interfaces/iquickopen.h <span style="color: grey">(a2883b544c45a410acbaba597bb26911571cbccd)</span></li>

 <li>language/interfaces/quickopendataprovider.h <span style="color: grey">(6fccb6c0251853ad914d2c10cc719c4b016a7e8f)</span></li>

 <li>language/util/includeitem.h <span style="color: grey">(44f691edfee4af3d43c9212717cb686c82e29cb5)</span></li>

 <li>language/util/includeitem.cpp <span style="color: grey">(5a4f0a33ace9a819faef24ba888e15716f7c14a6)</span></li>

 <li>outputview/filtereditem.h <span style="color: grey">(925cb833bb81962be2ce13d9f422bedf3fe6332a)</span></li>

 <li>outputview/outputexecutejob.h <span style="color: grey">(61b6d05f7c5c9e27a306d5f5868adea4d95bbaa1)</span></li>

 <li>outputview/outputexecutejob.cpp <span style="color: grey">(5551f9af7a2896476f6452bdce79fe34103c1a73)</span></li>

 <li>outputview/outputfilteringstrategies.h <span style="color: grey">(0f63cd532652b04d2a6b18b45efbcb81ced5ee6b)</span></li>

 <li>outputview/outputfilteringstrategies.cpp <span style="color: grey">(f82420f8e1ebbb97507dbeb32f37c5629bf0f826)</span></li>

 <li>outputview/outputmodel.h <span style="color: grey">(fedeeec5b318f4e57ae681111fd31ecc470f3188)</span></li>

 <li>outputview/outputmodel.cpp <span style="color: grey">(667f33d5e0f6f7e2cda7821afda647edf3940f73)</span></li>

 <li>outputview/tests/filteringstrategytest.cpp <span style="color: grey">(f6c7f7eedcdb3c85d230f37f54ef2de2cdf4a1d7)</span></li>

 <li>outputview/tests/outputmodeltest.cpp <span style="color: grey">(3851670a306311e60ef0df3a630efd19623bbaec)</span></li>

 <li>outputview/tests/testlinebuilderfunctions.h <span style="color: grey">(653e484f6e7f9d1340515af5dda031271e09bb54)</span></li>

 <li>plugins/appwizard/appwizarddialog.h <span style="color: grey">(5b43a2053a83fb0b25abe84fc7f907534537bc30)</span></li>

 <li>plugins/appwizard/appwizardplugin.h <span style="color: grey">(64d6144e723bd982deab0be1777c5eaa54ba3d47)</span></li>

 <li>plugins/appwizard/appwizardplugin.cpp <span style="color: grey">(e14b140e9ba4fb195c3d2df214cfc01bb3248a21)</span></li>

 <li>plugins/appwizard/projectselectionpage.h <span style="color: grey">(fd6ad1b8f9a0f421f9f5348efb59ce98b8c329df)</span></li>

 <li>plugins/appwizard/projectselectionpage.cpp <span style="color: grey">(b43b9152730b11354a50aff60e1dbdc6afbaf1e7)</span></li>

 <li>plugins/appwizard/projecttemplatesmodel.cpp <span style="color: grey">(717c99fa2e96bb081831ef9becf882402215d0fc)</span></li>

 <li>plugins/appwizard/projectvcspage.h <span style="color: grey">(836f3d1431d38007e30c2107a90c7d3805a09086)</span></li>

 <li>plugins/appwizard/projectvcspage.cpp <span style="color: grey">(520a87ac0997de2e5fced8a334f5e21955bf48e5)</span></li>

 <li>plugins/bazaar/bazaarplugin.h <span style="color: grey">(6f0a3eb2e8f34f7a8c970a309e1b965511b2e8a3)</span></li>

 <li>plugins/bazaar/bazaarplugin.cpp <span style="color: grey">(c94612cb41453295d16a9500586a256606c6fdc5)</span></li>

 <li>plugins/bazaar/bazaarutils.h <span style="color: grey">(c92532962e18a7cfcfe9d01b6e4e2b69db10c27f)</span></li>

 <li>plugins/bazaar/bazaarutils.cpp <span style="color: grey">(525f96f0f5b3953533d31331e10ee07b173c185a)</span></li>

 <li>plugins/bazaar/bzrannotatejob.h <span style="color: grey">(dbc5b448c7eafc6db602f8e63d11e9b324c0a2e0)</span></li>

 <li>plugins/bazaar/bzrannotatejob.cpp <span style="color: grey">(438640a311cf895682842de218190a866dcaf073)</span></li>

 <li>plugins/bazaar/copyjob.h <span style="color: grey">(57630548021675b1d308271965868de9daa7d0f9)</span></li>

 <li>plugins/bazaar/copyjob.cpp <span style="color: grey">(e3cdd37601a280d3202bec2d366bbe81edafd9fc)</span></li>

 <li>plugins/bazaar/diffjob.h <span style="color: grey">(edf4b78f40772342ad6911689a1d416c5ac95df4)</span></li>

 <li>plugins/bazaar/diffjob.cpp <span style="color: grey">(c64902f6e8ff9301d8dce596f5999b01ed15a1e4)</span></li>

 <li>plugins/bazaar/tests/test_bazaar.cpp <span style="color: grey">(2a1e49a294f814ac0192f8727d9b1e31daa2fe2d)</span></li>

 <li>plugins/classbrowser/classbrowserplugin.cpp <span style="color: grey">(13416c6325d8e282df492e4eee20ef4fbfca6f9e)</span></li>

 <li>plugins/codeutils/codeutilsplugin.cpp <span style="color: grey">(bf21766fad6a5cb634604bb00c91dd66c3f83425)</span></li>

 <li>plugins/codeutils/tests/testgenerationtest.h <span style="color: grey">(9cc01f86e26da2003e4538beef9a1b0304129a05)</span></li>

 <li>plugins/codeutils/tests/testgenerationtest.cpp <span style="color: grey">(80d6a52f63aef326a5eebb5b516f30aee99f1b4a)</span></li>

 <li>plugins/contextbrowser/browsemanager.cpp <span style="color: grey">(8d229caf5e7cf00825c62d894484d8daad11e635)</span></li>

 <li>plugins/contextbrowser/contextbrowser.h <span style="color: grey">(da89de05f5143b42b8b16a7dd6ee1e508d3f313a)</span></li>

 <li>plugins/contextbrowser/contextbrowser.cpp <span style="color: grey">(155da65df82d538f5cf443e782c4bd6cd25a278e)</span></li>

 <li>plugins/cvs/checkoutdialog.h <span style="color: grey">(f1ddba0de8dc81fe8f13fff8a6313c63f490eabf)</span></li>

 <li>plugins/cvs/cvsannotatejob.cpp <span style="color: grey">(a19d2af5160ab6d00b2551fb64e72b24c46a959a)</span></li>

 <li>plugins/cvs/cvsplugin.h <span style="color: grey">(feebcef7fc14cd24e2b6bdb7ffbd077f3e4a6da2)</span></li>

 <li>plugins/cvs/cvsplugin.cpp <span style="color: grey">(efd763415812553a91b8a2827a447a407a8f73ce)</span></li>

 <li>plugins/cvs/cvsproxy.h <span style="color: grey">(2c33c1fd00c0569a40191916e1a1354d8b4f3a99)</span></li>

 <li>plugins/cvs/cvsproxy.cpp <span style="color: grey">(23f7956d3b80e7923321e5e479248891a06232d0)</span></li>

 <li>plugins/cvs/cvsstatusjob.cpp <span style="color: grey">(425e349186517eccf6a686b5529ab000eeaa3c12)</span></li>

 <li>plugins/cvs/importdialog.h <span style="color: grey">(8d15a5a343c63c1d7551d12a46ba70c5a0ba0802)</span></li>

 <li>plugins/cvs/importdialog.cpp <span style="color: grey">(284bf2aef4b425d4902dcf05423be529608c0782)</span></li>

 <li>plugins/cvs/tests/cvstest.cpp <span style="color: grey">(cd153da4f750327f105e3a63895eb6dc81129532)</span></li>

 <li>plugins/dashboard/dashboarddocument.h <span style="color: grey">(1d8f826b94b5c9bd8c1dde2e5f1510025033fd23)</span></li>

 <li>plugins/dashboard/dashboardview.cpp <span style="color: grey">(11233433fb71c804a298ae3947f80cf48504cc2b)</span></li>

 <li>plugins/dashboard/kdevprojectdashboard.cpp <span style="color: grey">(e08b4b4e86265413cda67da0b932763f0d258dd3)</span></li>

 <li>plugins/dashboard/plasmoids/projectfileplasmoid/projectfileelement.cpp <span style="color: grey">(af8efb9e1890a00da8ba02d85f6dc8affacdaef6)</span></li>

 <li>plugins/documentview/kdevdocumentmodel.h <span style="color: grey">(2a4c2232879553130d525dd6bb1c7d9ed92a22fc)</span></li>

 <li>plugins/documentview/kdevdocumentmodel.cpp <span style="color: grey">(65fd448b06b399c9f43935d5ec4d5cde9532c023)</span></li>

 <li>plugins/documentview/kdevdocumentview.h <span style="color: grey">(87b91e129bd23783d0a7bafe6f62ac90e4a975fb)</span></li>

 <li>plugins/documentview/kdevdocumentview.cpp <span style="color: grey">(e8754e418cbbee998cfb8c43552e02935b0deceb)</span></li>

 <li>plugins/documentview/settings/preferences.h <span style="color: grey">(1f6e7f66adb27fd48d004e8e56a5d2929f1b6b32)</span></li>

 <li>plugins/execute/executeplugin.h <span style="color: grey">(acf9d51765a18072ce6949f3e3fd2af692581585)</span></li>

 <li>plugins/execute/executeplugin.cpp <span style="color: grey">(6a1c30f1792cb094f2f06ca03d64981ed90f97cd)</span></li>

 <li>plugins/execute/iexecuteplugin.h <span style="color: grey">(3ac3a37102a3715b67e647fd0cba257b85e71016)</span></li>

 <li>plugins/execute/nativeappconfig.h <span style="color: grey">(de16535acad5c87834ce9da5ed626b2d0913882a)</span></li>

 <li>plugins/execute/nativeappconfig.cpp <span style="color: grey">(ab406e3bb71a53a122d2c9566b0fb8c958b15db7)</span></li>

 <li>plugins/execute/nativeappjob.cpp <span style="color: grey">(06f58112f943d4c790e34f6c0b70402ff71a521d)</span></li>

 <li>plugins/executescript/executescriptplugin.h <span style="color: grey">(dd3e94b096e86987e255bb93e5e082e3ed26a9ca)</span></li>

 <li>plugins/executescript/executescriptplugin.cpp <span style="color: grey">(a170439a20e85fa660ecd705f1dd0022bd1b7625)</span></li>

 <li>plugins/executescript/iexecutescriptplugin.h <span style="color: grey">(327bd0f91139b731c81b737c07f9f70505118c20)</span></li>

 <li>plugins/executescript/scriptappconfig.h <span style="color: grey">(5a293b96719939e8198338b73db560154c906a77)</span></li>

 <li>plugins/executescript/scriptappconfig.cpp <span style="color: grey">(e4e7fbdb13d76ddb524a80dd2ff45c1a30e8ffb4)</span></li>

 <li>plugins/executescript/scriptappjob.cpp <span style="color: grey">(718beb1414dd3e57440793ed40e6d0c3fbe6ae10)</span></li>

 <li>plugins/externalscript/externalscriptjob.h <span style="color: grey">(4bcfb452be71fb6d760c207a79e4d073c692f30d)</span></li>

 <li>plugins/externalscript/externalscriptjob.cpp <span style="color: grey">(aaef1b3e7ad0b3cc10bfc122ff7bfed54158479a)</span></li>

 <li>plugins/externalscript/externalscriptplugin.h <span style="color: grey">(05f213cb16599cd807939b44376c12529db8969b)</span></li>

 <li>plugins/externalscript/externalscriptplugin.cpp <span style="color: grey">(3d5c8fa3c8c748e5d64c31079c1848bbd2da851e)</span></li>

 <li>plugins/filemanager/bookmarkhandler.h <span style="color: grey">(59b6bba87485625517068c9fb48fc0b6b1089ae2)</span></li>

 <li>plugins/filemanager/bookmarkhandler.cpp <span style="color: grey">(92feb317770f265e669c94091d60f63bd3c16630)</span></li>

 <li>plugins/filemanager/filemanager.cpp <span style="color: grey">(160178b204db47bbcf383c097bb12fb10351a4a6)</span></li>

 <li>plugins/filetemplates/defaultcreateclasshelper.h <span style="color: grey">(bac36979c39faa93631b341f3b595fd215048c3a)</span></li>

 <li>plugins/filetemplates/defaultcreateclasshelper.cpp <span style="color: grey">(ba45667f49ad12c24e36557c1899f2a98ce9c48d)</span></li>

 <li>plugins/filetemplates/filetemplatesplugin.h <span style="color: grey">(3ba2af8ac9cd7573465b0877a732ce5f6cd8a018)</span></li>

 <li>plugins/filetemplates/filetemplatesplugin.cpp <span style="color: grey">(4fa5a2cb1b65d2822505020c7d7e378d58fec3d8)</span></li>

 <li>plugins/filetemplates/main.cpp <span style="color: grey">(a4e57f54d1910741f325652fb34ec0ca2cc95b84)</span></li>

 <li>plugins/filetemplates/outputpage.h <span style="color: grey">(5cf5b1e36f3d9dbe3bd7db03dec5d930253330dc)</span></li>

 <li>plugins/filetemplates/outputpage.cpp <span style="color: grey">(f479fd43832679326bd7b6972dac443b5b8d825c)</span></li>

 <li>plugins/filetemplates/templateclassassistant.h <span style="color: grey">(c11e7e037fd1dc951e04fe5b8ee6923cf83e44dc)</span></li>

 <li>plugins/filetemplates/templateclassassistant.cpp <span style="color: grey">(4e8604513d48f3170bc4cdf91578a58722e1cfa1)</span></li>

 <li>plugins/filetemplates/templateselectionpage.cpp <span style="color: grey">(b67e353bc3cb78f2f094e7da12fbfb7e86a878f5)</span></li>

 <li>plugins/genericprojectmanager/test/reloadtest.cpp <span style="color: grey">(e09c238537af15c7217d70a09d117c82b4d03bdd)</span></li>

 <li>plugins/git/gitjob.h <span style="color: grey">(fec3347ac342e382510bc754973c37250c49292a)</span></li>

 <li>plugins/git/gitplugin.h <span style="color: grey">(e93042378d9c24824df087d74b42516e0da4959a)</span></li>

 <li>plugins/git/gitplugin.cpp <span style="color: grey">(9fe04a0c7485371959a476bea0168aba69705c9c)</span></li>

 <li>plugins/git/stashpatchsource.h <span style="color: grey">(2ea502236ff688faa1f61036e252002d9818714e)</span></li>

 <li>plugins/git/stashpatchsource.cpp <span style="color: grey">(a5eebbde7d9fc306e05c119c6621abf57c3688f0)</span></li>

 <li>plugins/git/tests/test_git.cpp <span style="color: grey">(a35c61ce4976a4f551198d251d0d3c36c1dff871)</span></li>

 <li>plugins/grepview/grepdialog.h <span style="color: grey">(726ffbecd7012f29e405ac209e3121f6e086ca2d)</span></li>

 <li>plugins/grepview/grepdialog.cpp <span style="color: grey">(6034191c4257fdbb6a2d6311f07503bb3931f0e2)</span></li>

 <li>plugins/grepview/grepfindthread.h <span style="color: grey">(8c5d5a2e04ec03673d3d50ac0e3c0760682af006)</span></li>

 <li>plugins/grepview/grepfindthread.cpp <span style="color: grey">(19286f392a2395caab4674ece57d61561ab7e3ec)</span></li>

 <li>plugins/grepview/grepjob.h <span style="color: grey">(4bf87f55ddfe21eab6418169d122a5410e0cfdeb)</span></li>

 <li>plugins/grepview/grepjob.cpp <span style="color: grey">(5eb3493eba67da8dbc3c545679ee02c7eb32a8f8)</span></li>

 <li>plugins/grepview/grepoutputmodel.cpp <span style="color: grey">(f35c9dc735bb08522cb8884e5c89f8a437dbc31a)</span></li>

 <li>plugins/grepview/tests/test_findreplace.cpp <span style="color: grey">(c0c20ae751fc4045db13fe1acf14b6847748fe60)</span></li>

 <li>plugins/konsole/kdevkonsoleview.h <span style="color: grey">(3652497295fb3dc59c82e9b344e5625566992b9a)</span></li>

 <li>plugins/konsole/kdevkonsoleview.cpp <span style="color: grey">(248a4041a0f48814c33f026b422593b0fe04a695)</span></li>

 <li>plugins/openwith/iopenwith.h <span style="color: grey">(95f119c9c1ef3eec5ca63ec9cfa861e82b7538a0)</span></li>

 <li>plugins/openwith/openwithplugin.h <span style="color: grey">(1a3c7c701fdda28c5a3635e1d8c930ba601243f4)</span></li>

 <li>plugins/openwith/openwithplugin.cpp <span style="color: grey">(b80916232ab451fe0cdcbae3c4c2283444270318)</span></li>

 <li>plugins/pastebin/pastebinplugin.cpp <span style="color: grey">(1a53d744ea28fb3b2f60c98b6a6b3a820aacf3b3)</span></li>

 <li>plugins/patchreview/localpatchsource.h <span style="color: grey">(20f4b7ee5cddefac810b26ae7aeaeb4de6cefc9e)</span></li>

 <li>plugins/patchreview/localpatchsource.cpp <span style="color: grey">(2f590cb70c3de69cb5a72b6f1dd68584d73c4ff2)</span></li>

 <li>plugins/patchreview/patchreview.h <span style="color: grey">(59761a787ac810bd6230bc57bc7c67fe652165ba)</span></li>

 <li>plugins/patchreview/patchreview.cpp <span style="color: grey">(0195d372d59571fd8714988bbea73d1ac87c9783)</span></li>

 <li>plugins/patchreview/patchreviewtoolview.h <span style="color: grey">(26d6a977f9b9cc487c4a5df0953dd00a81c4edee)</span></li>

 <li>plugins/patchreview/patchreviewtoolview.cpp <span style="color: grey">(57b46070cdc142799b5b81ca0efd22bd129ff99b)</span></li>

 <li>plugins/patchreview/standardpatchexport.cpp <span style="color: grey">(8f656e5f8bbdc5ed5b61e763ae6b30b5a9366ef9)</span></li>

 <li>plugins/problemreporter/problemmodel.h <span style="color: grey">(edf8fbb99db9cd4efe9b2c8815c3fca435f9370e)</span></li>

 <li>plugins/problemreporter/problemmodel.cpp <span style="color: grey">(9e0758a03a9d84481ceca85e65141fd840ab7ddb)</span></li>

 <li>plugins/problemreporter/problemreporterplugin.cpp <span style="color: grey">(2c44cca3bd76e23333a90f6799042e989e27cb82)</span></li>

 <li>interfaces/context.h <span style="color: grey">(835affae8994cdbd1299392162f317d4ed66df98)</span></li>

 <li>interfaces/context.cpp <span style="color: grey">(cb22b05ec5152fd515bff683a47edc747ac8bb07)</span></li>

 <li>interfaces/ibuddydocumentfinder.h <span style="color: grey">(f15eab1bbc50904f463fe107919c70e1f6d454e3)</span></li>

 <li>interfaces/ibuddydocumentfinder.cpp <span style="color: grey">(56511d5ac5e638e99df79bc47de7b12bd859f3a6)</span></li>

 <li>interfaces/idocument.h <span style="color: grey">(a89100f19ecb76589e647bd344d921e704aa1629)</span></li>

 <li>interfaces/idocumentcontroller.h <span style="color: grey">(23cc9fdf9a7155bc34b4fa760c22fce1b5f85f41)</span></li>

 <li>interfaces/idocumentcontroller.cpp <span style="color: grey">(6029fb0b8b245ecc845a62c9a0c4c91f46a8724a)</span></li>

 <li>interfaces/ilanguage.h <span style="color: grey">(95da8189e08ba643131413e1831ec4018f2ffb5c)</span></li>

 <li>interfaces/ilanguagecheck.h <span style="color: grey">(9c3af25e4fecb45f90d07c8977dc179829f093d8)</span></li>

 <li>interfaces/ilanguagecontroller.h <span style="color: grey">(4f3a63462c14ce64b0f62ae354fe6eb383b244c3)</span></li>

 <li>interfaces/iplugincontroller.h <span style="color: grey">(0a8bc44593e513882bb4bffc743e1195f374ca46)</span></li>

 <li>interfaces/iprojectcontroller.h <span style="color: grey">(3ec061e8872238209b329bc73be8412e62155f44)</span></li>

 <li>interfaces/iprojectprovider.h <span style="color: grey">(8af82507c2933cbc2ba37186858ae5557a6d4eb7)</span></li>

 <li>interfaces/isession.h <span style="color: grey">(a5a80772a6a9cd7140bcb6f2d571e7b92125cbac)</span></li>

 <li>interfaces/isourceformatter.h <span style="color: grey">(3642c0e69c3bdf9dc5d45c7b62ddcf2a6385b09b)</span></li>

 <li>interfaces/isourceformattercontroller.h <span style="color: grey">(2163ab8186c605a397869f4f61e52b6b321b381c)</span></li>

 <li>interfaces/itestsuite.h <span style="color: grey">(f91a2450610d2a0a8bc8b9b48d3bef16469690f5)</span></li>

 <li>interfaces/launchconfigurationtype.h <span style="color: grey">(c8f53c0ae4a986d7caed5f5f093e7089905a533c)</span></li>

 <li>language/codecompletion/codecompletionmodel.cpp <span style="color: grey">(d95e8eddb7b23e59ae368bff27c72ec0862c74aa)</span></li>

 <li>language/codegen/applychangeswidget.cpp <span style="color: grey">(1c49dea9f3b76226e62387b58e6e0ecc389c7333)</span></li>

 <li>language/assistant/renamefileaction.cpp <span style="color: grey">(2585510de58f25662db8245f5b4b9888d37be04d)</span></li>

 <li>language/backgroundparser/backgroundparser.cpp <span style="color: grey">(fcd2ca6faee6031f01a9aebabf382e62da87c441)</span></li>

 <li>language/backgroundparser/parsejob.h <span style="color: grey">(c3029304daa1df987f4f67f0e612e6c10f8f86f7)</span></li>

 <li>language/backgroundparser/tests/test_backgroundparser.h <span style="color: grey">(d2f43a19a1ae7ae8c12f1e3f2cf659c4e892500a)</span></li>

 <li>language/backgroundparser/tests/test_backgroundparser.cpp <span style="color: grey">(29ec4db9f8510cd9dcb59047c7d4a58c2af8fd40)</span></li>

 <li>language/codecompletion/codecompletionmodel.h <span style="color: grey">(c495c3a5479ad05230895b52c984ab74959d2328)</span></li>

 <li>plugins/subversion/svncatjob.cpp <span style="color: grey">(997eecb3c827e9a3ee3fb1cf657cad29390fd51c)</span></li>

 <li>plugins/subversion/svncatwidgets.h <span style="color: grey">(8dca73c22dcb66e95ea97fef7220ed844c20579e)</span></li>

 <li>plugins/subversion/svncatwidgets.cpp <span style="color: grey">(1b24eb23881c56d6d8675b9ca749837e10c1d846)</span></li>

 <li>plugins/subversion/svncheckoutjob.h <span style="color: grey">(8fae3562bd41a8196d4bc72cb8747c719273798a)</span></li>

 <li>plugins/subversion/svncheckoutjob.cpp <span style="color: grey">(9baff5cff96e1cf1e9158cf714525bf4d65a3785)</span></li>

 <li>plugins/subversion/svncheckoutjob_p.h <span style="color: grey">(3ff4908d0e15fb559be79132464d2886beb1da14)</span></li>

 <li>plugins/subversion/svncheckoutmetadatawidget.h <span style="color: grey">(5c99da247ed12594da4f6cd681e9a4456ddd1df8)</span></li>

 <li>plugins/subversion/svncheckoutmetadatawidget.cpp <span style="color: grey">(5a35f8789fdabef250d457dee0a72beef556738c)</span></li>

 <li>plugins/subversion/svncommitjob.h <span style="color: grey">(a740e37541027f332454495182bbc6f1d9bcc19a)</span></li>

 <li>plugins/subversion/svncommitjob.cpp <span style="color: grey">(c2534bf4afcfde9572fee2af6a52ce5381099a04)</span></li>

 <li>plugins/subversion/svncommitjob_p.h <span style="color: grey">(5afb6c065fa909a8c43620533326a6a7f56997d3)</span></li>

 <li>plugins/subversion/svncopyjob.h <span style="color: grey">(245fb15f70b718a3d0c7a7eec928a69f729ffe91)</span></li>

 <li>plugins/subversion/svncopyjob.cpp <span style="color: grey">(fc5086d0f3df40149d4feb9d28c636d76ad235dc)</span></li>

 <li>language/codegen/templateclassgenerator.cpp <span style="color: grey">(c13297388bff0f0aa07c98344005a567cc83641a)</span></li>

 <li>language/codegen/templaterenderer.h <span style="color: grey">(662f30ea98277ed7d217b6c6ef66243f6934359b)</span></li>

 <li>language/codegen/templaterenderer.cpp <span style="color: grey">(71cc61fef603f2c7b0f3e0d71247bff0232c97be)</span></li>

 <li>language/codegen/templatesmodel.cpp <span style="color: grey">(1f47323389148d95dc1942508da259983e6b2e56)</span></li>

 <li>language/codegen/tests/test_templateclassgenerator.h <span style="color: grey">(5a43534c97089b914ce4b88469b807f2b050cd98)</span></li>

 <li>language/codegen/tests/test_templateclassgenerator.cpp <span style="color: grey">(fadd107396300f06e11f9a3ecffb31914fa944ce)</span></li>

 <li>language/codegen/utilities.cpp <span style="color: grey">(53195fd72637e11f5fc4a0586c925a5084921af6)</span></li>

 <li>language/codegen/basicrefactoring.h <span style="color: grey">(c1fa0853821f46714e93f32ef4e45bc3c807b92a)</span></li>

 <li>language/codegen/basicrefactoring.cpp <span style="color: grey">(e00f202b88d1625b5e15e5360d34230677be075d)</span></li>

 <li>language/codegen/codegenerator.cpp <span style="color: grey">(81894eb97be91fbcd68798885aa5d720af890ea0)</span></li>

 <li>language/codegen/coderepresentation.cpp <span style="color: grey">(5074f7d37535fc3ddf27e143cfa644d5d8edafa5)</span></li>

 <li>language/codegen/documentchangeset.h <span style="color: grey">(43e7735a1ea1f095db44c79e37fa94d14e55dcb0)</span></li>

 <li>language/codegen/documentchangeset.cpp <span style="color: grey">(1937be5eb64d32f87e574a376a41b72fb0b63a74)</span></li>

 <li>language/codegen/templateclassgenerator.h <span style="color: grey">(025d6770059868aac91d846efb44ed062d2c30ce)</span></li>

 <li>plugins/subversion/svncopywidgets.cpp <span style="color: grey">(e0b7696968e8929e41217f2f13370115585da748)</span></li>

 <li>plugins/subversion/svndiffjob.h <span style="color: grey">(a823d527d1dcf0d30ccc3d4c0c43ca1e55d86bf0)</span></li>

 <li>plugins/subversion/svndiffjob.cpp <span style="color: grey">(633f7e1f80a83f34ce72dc25ea20392c2f1bedfe)</span></li>

 <li>plugins/subversion/svnimportjob.h <span style="color: grey">(d551b37be41cede9d45589659e4b46f251a8221c)</span></li>

 <li>plugins/subversion/svnimportjob.cpp <span style="color: grey">(a40d7440919503b5ebbfa8fae4f2202ba39347c4)</span></li>

 <li>plugins/subversion/svnimportjob_p.h <span style="color: grey">(29134b3ad7268688e7d0efa880c8b2152bfe46ad)</span></li>

 <li>plugins/subversion/svnimportmetadatawidget.h <span style="color: grey">(71fc89c4b771fbc7cddbb4604ca11755f0d6df10)</span></li>

 <li>plugins/subversion/svnimportmetadatawidget.cpp <span style="color: grey">(130b6b9249f66138ff9017f5784380be6455b263)</span></li>

 <li>plugins/subversion/svncopyjob_p.h <span style="color: grey">(b8a8aa75bfaf42b5eeae063cc91c0e3e2741e1ef)</span></li>

 <li>plugins/subversion/svncopywidgets.h <span style="color: grey">(2f52c27d086d800f75f3d87db3c84038f39fbbed)</span></li>

 <li>language/assistant/renameassistant.cpp <span style="color: grey">(65f53db9d4ae9abaad7c37401b3115a83e414cab)</span></li>

 <li>language/assistant/renamefileaction.h <span style="color: grey">(f8515bc7a33b627f79d2e50f56e75c04ff22edcf)</span></li>

</ul>

<p><a href="https://git.reviewboard.kde.org/r/120123/diff/" style="margin-left: 3em;">View Diff</a></p>






  </td>
 </tr>
</table>








  </div>
 </body>
</html>