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





<blockquote style="margin-left: 1em; border-left: 2px solid #d0d0d0; padding-left: 10px;">
 <p style="margin-top: 0;">On March 28th, 2013, 12:26 p.m. CET, <b>Milian Wolff</b> wrote:</p>
 <blockquote style="margin-left: 1em; border-left: 2px solid #d0d0d0; padding-left: 10px;">
  <pre style="white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;">Please also include the script you used to do this change so we can use it again in the future or on different code bases. Just put it into the base folder of kdevplatform and call it e.g. cleanup_includeguards.sh</pre>
 </blockquote>







</blockquote>

<pre style="white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;">I can add the script, which basically is just a : find . -name '*.h' -print | xargs sed -i 's/[A-Z].*_H$/KDEVPLATFORM_&/'
but it's far from perfect and can even be dangerous.

I've worked in 3 passes,
- the first is a cleaning of *_H in $FILENAME_H (mainly done by hand)
- second is : find plugins/ -name '*.h' -print | xargs sed -i 's/[A-Z].*_H$/PLUGIN_&/'
  to add PLUGIN_ prefix to all .h under plugings/
- third is find . -name '*.h' -print | xargs sed -i 's/[A-Z].*_H$/KDEVPLATFORM_&/'
  to add KDEVPLATFORM_ prefix to all .h

and then a careful review because it can have missed ones or false positives.
e.g, if there is trailing whitespace after _H, or #define FOO_H 1, in these cases, the pattern won't match.

there is also false positives like #undef HAVE_STDINT_H that we don't want to prefix in any case !!

let me know if you really wan't this included in kdevplatform tree,

regards,</pre>
<br />










<p>- Laurent</p>


<br />
<p>On March 27th, 2013, 12:14 p.m. CET, Laurent Navet wrote:</p>








<table bgcolor="#fefadf" width="100%" cellspacing="0" cellpadding="8" style="background-image: url('http://git.reviewboard.kde.org/static/rb/images/review_request_box_top_bg.ab6f3b1072c9.png'); background-position: left top; background-repeat: repeat-x; border: 1px black solid;">
 <tr>
  <td>

<div>Review request for KDevelop.</div>
<div>By Laurent Navet.</div>


<p style="color: grey;"><i>Updated March 27, 2013, 12:14 p.m.</i></p>






<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;">clean headers guards naming scheme.

before : FOO_H, KDEVFOO_H, KDEVELOPFOOH_H, Foo_H
after : KDEVPLATFORM_FOO_H or KDEVPLATFORM_PLUGIN_FOO_H for files under plugins/ directory

maybe the same should be done in kdevelop git tree
close bug #281688</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;">kdevplatform rebuild seems ok</pre>
  </td>
 </tr>
</table>



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


 <a href="http://bugs.kde.org/show_bug.cgi?id=281688">281688</a>


</div>


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

 <li>debugger/breakpoint/breakpoint.h <span style="color: grey">(ebe7367aebd1b333f69685e69c1e7e4c5a1d25ac)</span></li>

 <li>debugger/breakpoint/breakpointdetails.h <span style="color: grey">(b937a9cd4cb84f8e3e20d791490a1c3bf746ef1f)</span></li>

 <li>debugger/breakpoint/breakpointmodel.h <span style="color: grey">(8c3ac695c53ac1cd83f80f1d5560a5320232a6d7)</span></li>

 <li>debugger/breakpoint/breakpointwidget.h <span style="color: grey">(f325f39e6cdfa4ce98dac7ba71b819387f3bf48e)</span></li>

 <li>debugger/framestack/framestackmodel.h <span style="color: grey">(a2b6d8712337c75b43d61a5eec1728f6eeba7f6e)</span></li>

 <li>debugger/framestack/framestackwidget.h <span style="color: grey">(04eb3258931ee446b5d024c878ea5d75b3f71da7)</span></li>

 <li>debugger/interfaces/ibreakpointcontroller.h <span style="color: grey">(33dc98f6baebe4022a9383b5ffc4f9584dd45eef)</span></li>

 <li>debugger/interfaces/idebugsession.h <span style="color: grey">(7310210e8c309582984f695f7889eba875f44077)</span></li>

 <li>debugger/interfaces/iframestackmodel.h <span style="color: grey">(db9b457bc4b00406e1eacb36822117518659ecb6)</span></li>

 <li>debugger/interfaces/ivariablecontroller.h <span style="color: grey">(788dd7f11312ec4d30b403d1da5f6da51b5d6fdd)</span></li>

 <li>debugger/util/pathmappings.h <span style="color: grey">(163c535099771ae59a1895366b5b92aa2f70ea1d)</span></li>

 <li>debugger/util/treeitem.h <span style="color: grey">(5c40fdd8ea596755a373a51581c7565d4248f128)</span></li>

 <li>debugger/util/treemodel.h <span style="color: grey">(7679da0b2e1a18fc2971a5aed2fe8d83fd430843)</span></li>

 <li>debugger/util/treeview.h <span style="color: grey">(80841aaff2deb0ee34f11a212bd318091d4521bc)</span></li>

 <li>debugger/variable/variablecollection.h <span style="color: grey">(add0380d777c5131ee1e70b3858817a99d044bfa)</span></li>

 <li>debugger/variable/variabletooltip.h <span style="color: grey">(1d0e6086d154cb69b116453f39ff88d3bf723918)</span></li>

 <li>debugger/variable/variablewidget.h <span style="color: grey">(2c012e7552c726dc656f01c83b713b343225c741)</span></li>

 <li>documentation/documentationexport.h <span style="color: grey">(acba4fc59acb45a9068a3875ab816304458a2a83)</span></li>

 <li>documentation/documentationfindwidget.h <span style="color: grey">(cde08d6401217bdb5dd65f2901b5558fc2079e70)</span></li>

 <li>documentation/documentationview.h <span style="color: grey">(e577b2fe7c65868b926f25d33456ed52ba87b1f9)</span></li>

 <li>documentation/standarddocumentationview.h <span style="color: grey">(6fb6d6a15dea8c766a8bdff097f043c5e3ba1415)</span></li>

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

 <li>interfaces/contextmenuextension.h <span style="color: grey">(35198f853d8535b4b23904fad3fcb36011fd8cd8)</span></li>

 <li>interfaces/foregroundlock.h <span style="color: grey">(04dfad77b79084679d8063476f74220713992e2c)</span></li>

 <li>interfaces/iassistant.h <span style="color: grey">(48cd3aa2423897476a0e43ee78b16f15932123ab)</span></li>

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

 <li>interfaces/icompletionsettings.h <span style="color: grey">(29753dc1bccd892a833da6594465ebb55956b8aa)</span></li>

 <li>interfaces/icore.h <span style="color: grey">(874d6a9fe71f2b7a29168967687daef1c95139d3)</span></li>

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

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

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

 <li>interfaces/idocumentationcontroller.h <span style="color: grey">(937def921e8470a9aa3dffcaede07c1f196c0761)</span></li>

 <li>interfaces/idocumentationprovider.h <span style="color: grey">(50e034f4220d2fc016ec6c71300bb38f14dc268d)</span></li>

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

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

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

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

 <li>interfaces/ilanguagecheckprovider.h <span style="color: grey">(58dcd45fc7aa66151f86f718bcce1e8abb883bc0)</span></li>

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

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

 <li>interfaces/ilauncher.h <span style="color: grey">(7ab51b980ea3a8e3481b0796f9d72ed385228180)</span></li>

 <li>interfaces/ilaunchmode.h <span style="color: grey">(33b4c00b2e646644abd06d7c0ccabc9f9f91374c)</span></li>

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

 <li>interfaces/ipartcontroller.h <span style="color: grey">(4420ff81bda9190ebef857056bfa192d361400a4)</span></li>

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

 <li>interfaces/ipatchexporter.h <span style="color: grey">(16a2bfd1e3ca09fe37851e06add1315f245764c0)</span></li>

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

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

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

 <li>interfaces/iproject.h <span style="color: grey">(7b757c96f270234108581ccb9236eaad3a657671)</span></li>

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

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

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

 <li>interfaces/iselectioncontroller.h <span style="color: grey">(77f4960ce1737c24267f9540c95b01ad94ae63da)</span></li>

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

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

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

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

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

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

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

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

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

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

 <li>interfaces/tests/test_foregroundlock.h <span style="color: grey">(b76dac214e73becbf12cb0d9622a16b699f91db5)</span></li>

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

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

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

 <li>language/backgroundparser/parseprojectjob.h <span style="color: grey">(413ffe227d84b919ee26e232f6f618ad8bcc8757)</span></li>

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

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

 <li>language/backgroundparser/tests/testlanguagesupport.h <span style="color: grey">(539f0ecb691d898bc9d90f23f5ad33bafa942025)</span></li>

 <li>language/backgroundparser/tests/testparsejob.h <span style="color: grey">(3ede3834f723c7eedbe94c1fcb07f93bf663f86a)</span></li>

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

 <li>language/checks/controlflowgraph.h <span style="color: grey">(7c54fefa3fc4a906943752cd28dadf8bce3a9905)</span></li>

 <li>language/checks/controlflownode.h <span style="color: grey">(88d3fb214c483b152dc6f0a9f2da1fef51cf543d)</span></li>

 <li>language/checks/dataaccess.h <span style="color: grey">(c5ff2b817bbbca8d3aaa400f170fdf07614a6675)</span></li>

 <li>language/checks/dataaccessrepository.h <span style="color: grey">(5b9986e419605509e6572bdd9a66dcbfa8940d48)</span></li>

 <li>language/codecompletion/abstractincludefilecompletionitem.h <span style="color: grey">(225cc4ef17320bed404a6903a3af969c0a81b7c4)</span></li>

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

 <li>language/codecompletion/codecompletioncontext.h <span style="color: grey">(150b29b3a67d8fec5b98c1876507575d03675273)</span></li>

 <li>language/codecompletion/codecompletionhelper.h <span style="color: grey">(9498df2f5f8532cdf0d68e02b6cb30aa2431d354)</span></li>

 <li>language/codecompletion/codecompletionitem.h <span style="color: grey">(63a6b0b2c67e0058ab4141ed76084252b3234e1a)</span></li>

 <li>language/codecompletion/codecompletionitemgrouper.h <span style="color: grey">(688dc61cb57a8339280770d65131955fa1e8a452)</span></li>

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

 <li>language/codecompletion/codecompletiontesthelper.h <span style="color: grey">(23e9f0734ffd578a3f3e0f9d6aea2f0a9f74fd96)</span></li>

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

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

 <li>language/codegen/applychangeswidget.h <span style="color: grey">(6a39ac57d5b2c4e2c64725e1b94f55f37e3e3e8f)</span></li>

 <li>language/codegen/archivetemplateloader.h <span style="color: grey">(9dba856751a26c65b5d56bc66bdef543f0bf41c9)</span></li>

 <li>language/codegen/astchangeset.h <span style="color: grey">(9a609699841e5fe55be779fffeb2d312ee3881ef)</span></li>

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

 <li>language/codegen/codedescriptionmetatypes.h <span style="color: grey">(1258a60cfd97532ffd418b582d50d6073fe91fb8)</span></li>

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

 <li>language/codegen/coderepresentation.h <span style="color: grey">(41ffcb19c0d3fb1e01aa5fa0e86e3264dd871350)</span></li>

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

 <li>language/codegen/duchainchangeset.h <span style="color: grey">(0c265d0487b7ae5b935b6922f656b85386cb57d0)</span></li>

 <li>language/codegen/komparesupport.h <span style="color: grey">(5ea6824295d26f9c2bceedc9fe4687de9cb6ddf2)</span></li>

 <li>language/codegen/sourcefiletemplate.h <span style="color: grey">(453893480feb8360aa1ea6c73bcb9bba320ddd2c)</span></li>

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

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

 <li>language/codegen/templateengine_p.h <span style="color: grey">(625f18239bbc897986c831ad62f85d522903a0c5)</span></li>

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

 <li>language/codegen/templatesmodel.h <span style="color: grey">(281e2a6fdef56a25c5b3f46039ca6f466570236e)</span></li>

 <li>language/codegen/tests/expected/classname.h <span style="color: grey">(14adb208b422c92c57e91f56471c9b606cab1faa)</span></li>

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

 <li>language/codegen/tests/test_templaterenderer.h <span style="color: grey">(30d1cdfe11ace525694679c30d270e3ac6529390)</span></li>

 <li>language/codegen/tests/test_templatesmodel.h <span style="color: grey">(cca911f92980dde925f82d8477fd2cb23b78b90a)</span></li>

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

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

 <li>language/duchain/aliasdeclaration.h <span style="color: grey">(76a8f2221fd6fbce5bfef86cf2be1412aeb2f678)</span></li>

 <li>language/duchain/appendedlist.h <span style="color: grey">(6acf4e7947edcc697b61f305cf359433eb726049)</span></li>

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

 <li>language/duchain/builders/abstractcontextbuilder.h <span style="color: grey">(0e1b02744e8766d738308619206a9c62f73dc6d3)</span></li>

 <li>language/duchain/builders/abstractdeclarationbuilder.h <span style="color: grey">(8d8bf2a5fe368e4968aa5d6e37cc1605219e7637)</span></li>

 <li>language/duchain/builders/abstracttypebuilder.h <span style="color: grey">(044b68cb1c09c622cd16b38641954d1e6d3ca52e)</span></li>

 <li>language/duchain/builders/abstractusebuilder.h <span style="color: grey">(aa1edf3f029eccce8f7439d27d1dfdd55ca3a33c)</span></li>

 <li>language/duchain/classdeclaration.h <span style="color: grey">(96c869e0b07441dfe65bc961e77806797897901f)</span></li>

 <li>language/duchain/classfunctiondeclaration.h <span style="color: grey">(3bb2d6a11fd4562132363b535b4883552aaac799)</span></li>

 <li>language/duchain/classmemberdeclaration.h <span style="color: grey">(7b71f93050870e4b3629f43bc0830e9819cf4a93)</span></li>

 <li>language/duchain/classmemberdeclarationdata.h <span style="color: grey">(403808d1b903330f3cddc14582d57e40aa2032d6)</span></li>

 <li>language/duchain/codemodel.h <span style="color: grey">(7d4e07b4fb8296688f55e88333d0c7fceb6e1c59)</span></li>

 <li>language/duchain/declaration.h <span style="color: grey">(8b3fb8b64df582ca43dd1b8402f9d5c205ca881a)</span></li>

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

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

 <li>language/duchain/definitions.h <span style="color: grey">(23a06af9bf0215130ea055e326049ad1c4e37efe)</span></li>

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

 <li>language/duchain/duchainbase.h <span style="color: grey">(14ba539014cc2afe225a65c76289c3bf65a2c345)</span></li>

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

 <li>language/duchain/duchainobserver.h <span style="color: grey">(88509d501f8d41e88ed977e3a552245c543002b5)</span></li>

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

 <li>language/duchain/duchainregister.h <span style="color: grey">(805b3871a7e55429097d92d88c9b040e6544d96a)</span></li>

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

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

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

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

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

 <li>language/duchain/functiondeclaration.h <span style="color: grey">(7f084a965b86127152517e788224484d93e3938d)</span></li>

 <li>language/duchain/functiondefinition.h <span style="color: grey">(98140b0024a7659dec0a27f731f5285c0a49c18a)</span></li>

 <li>language/duchain/identifier.h <span style="color: grey">(2990aac94d0e9fa05c612f86077c10273a04e429)</span></li>

 <li>language/duchain/importers.h <span style="color: grey">(36400ab7c0dbf6a39f40d7d0529f459761d39ac0)</span></li>

 <li>language/duchain/indexeddeclaration.h <span style="color: grey">(0dc25188aef986c478c7090e22916a528cae651e)</span></li>

 <li>language/duchain/indexedducontext.h <span style="color: grey">(2220fd14b8f38cb9ce5570e26dc1b7293fafb7ef)</span></li>

 <li>language/duchain/indexedstring.h <span style="color: grey">(2b01009fcfc87fbbf61e131e0e6417d01dd9024c)</span></li>

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

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

 <li>language/duchain/localindexeddeclaration.h <span style="color: grey">(53957aafd557b7c60ee20bb1c6315b4463132d84)</span></li>

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

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

 <li>language/duchain/navigation/abstractdeclarationnavigationcontext.h <span style="color: grey">(6083abaa007fa9d8b795fb0c001641a26418cd3e)</span></li>

 <li>language/duchain/navigation/abstractincludenavigationcontext.h <span style="color: grey">(1443ef7f1c624d9dad0b0fdacb3fa4dae846542d)</span></li>

 <li>language/duchain/navigation/abstractnavigationcontext.h <span style="color: grey">(894a96628c570b98b4ef04b426fb58f45f0d9506)</span></li>

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

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

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

 <li>language/duchain/navigation/usescollector.h <span style="color: grey">(302040a949b3adb36f57b33a63162c12cc955a55)</span></li>

 <li>language/duchain/navigation/usesnavigationcontext.h <span style="color: grey">(5b1fa7df80bf01cea2cacaaa009817ad1898f7d5)</span></li>

 <li>language/duchain/navigation/useswidget.h <span style="color: grey">(54f2440b10adcec0ad592030e707a324f8526c30)</span></li>

 <li>language/duchain/parsingenvironment.h <span style="color: grey">(81681e8dac9f557f3fe0030bbd87f8e28b4c919a)</span></li>

 <li>language/duchain/persistentsetmap.h <span style="color: grey">(3b14a5c6f7dbb00826278ee82b5565eec2d84f52)</span></li>

 <li>language/duchain/persistentsymboltable.h <span style="color: grey">(61d6c8b9f45873623cfb5ec343ebed1db599b451)</span></li>

 <li>language/duchain/referencecounting.h <span style="color: grey">(13272f0f91107497cbffb935254994e5744e26b0)</span></li>

 <li>language/duchain/repositories/itemrepository.h <span style="color: grey">(c96e916f2bf4566bb2ee36371c27d017bfaf6f83)</span></li>

 <li>language/duchain/repositories/stringrepository.h <span style="color: grey">(43297459d14d22d7469231354ee9d9eba0a62ec6)</span></li>

 <li>language/duchain/repositories/typerepository.h <span style="color: grey">(039ba3e744f67d6e555166dc1b54860120dec98d)</span></li>

 <li>language/duchain/specializationstore.h <span style="color: grey">(0f214fe5e20f306862d342c55d76c9f40b68deb3)</span></li>

 <li>language/duchain/tests/benchhashes.h <span style="color: grey">(47f5d07d9cb44c8f255f697e5615fa2f553d0732)</span></li>

 <li>language/duchain/tests/benchmarks.h <span style="color: grey">(223660f448b698633227c89c0ba918e336337cd8)</span></li>

 <li>language/duchain/tests/test_duchain.h <span style="color: grey">(bfd63b4d7cb61777090884a5f9d4611f264f7bd8)</span></li>

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

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

 <li>language/duchain/topducontextdynamicdata.h <span style="color: grey">(3fbb9ae5bbf2e6ed4173827b5ba53bf88944dbb1)</span></li>

 <li>language/duchain/topducontextutils.h <span style="color: grey">(2243cf8d9763d6a4727a7a9f134ababebd7485eb)</span></li>

 <li>language/duchain/types/abstracttype.h <span style="color: grey">(de3c9ceba98a5c92c2bc56c6e435a9e3d922e3be)</span></li>

 <li>language/duchain/types/alltypes.h <span style="color: grey">(e2339859809a079716459d641f7e0113c12dfb2b)</span></li>

 <li>language/duchain/types/arraytype.h <span style="color: grey">(bba76465ef45d0bf48a3b9fae758399a1b45f4e6)</span></li>

 <li>language/duchain/types/constantintegraltype.h <span style="color: grey">(3221559f300cd8d973a31e28d0a192d3b8be0e29)</span></li>

 <li>language/duchain/types/delayedtype.h <span style="color: grey">(252e865c101a79e9a35b082f03d48327ca22c430)</span></li>

 <li>language/duchain/types/enumerationtype.h <span style="color: grey">(7fb031333deafce1213729b8dc6191120f3d5a1a)</span></li>

 <li>language/duchain/types/enumeratortype.h <span style="color: grey">(edfe3dcdd3bed59ffdb83ed142a4d8a2cb4296bc)</span></li>

 <li>language/duchain/types/functiontype.h <span style="color: grey">(c9d17980736780d48d6b5a1f32d48fcb8769d8e5)</span></li>

 <li>language/duchain/types/identifiedtype.h <span style="color: grey">(52479c3410482402e89506ad690a4bf6a660dcaa)</span></li>

 <li>language/duchain/types/indexedtype.h <span style="color: grey">(e41b36db875e87864462f92bdf933abf75fbe7d0)</span></li>

 <li>language/duchain/types/integraltype.h <span style="color: grey">(346593d0582ff49eaa352ac180c2a0c3c593e06b)</span></li>

 <li>language/duchain/types/pointertype.h <span style="color: grey">(deb40edf4ff2555e7e9645d98f48f82065a92343)</span></li>

 <li>language/duchain/types/referencetype.h <span style="color: grey">(9c130804db9a280ff7021fd251fa2663b09b37ab)</span></li>

 <li>language/duchain/types/structuretype.h <span style="color: grey">(97fed98436d6bb6f505fab5bd9792d7eeee55c45)</span></li>

 <li>language/duchain/types/typealiastype.h <span style="color: grey">(a695dece0147adfb03f5988a124fafcf6073c528)</span></li>

 <li>language/duchain/types/typepointer.h <span style="color: grey">(707d0890699990b2ce23f30d532633fe63da043f)</span></li>

 <li>language/duchain/types/typeregister.h <span style="color: grey">(342fae5335b7ee3b3b3c406e85144a853968397f)</span></li>

 <li>language/duchain/types/typesystem.h <span style="color: grey">(3e3b860ed789558c5176effa1c5fbb6460d6b626)</span></li>

 <li>language/duchain/types/typesystemdata.h <span style="color: grey">(7ca11ea18ca6428a050726cd9fd4efa5186db99c)</span></li>

 <li>language/duchain/types/typeutils.h <span style="color: grey">(d696eef2374070b279142c40918da00048c05bed)</span></li>

 <li>language/duchain/types/unsuretype.h <span style="color: grey">(fa2cfe0f682ea4c74e6ed7dff47e8d34aeb089b5)</span></li>

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

 <li>language/duchain/useconditioneddeclaration.h <span style="color: grey">(007ce15de48ab25f00ebec0b8b82b00a3fd4f24e)</span></li>

 <li>language/duchain/uses.h <span style="color: grey">(07acdd45a3371b129830fe9cf4dd725b9bdd0a14)</span></li>

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

 <li>language/editor/cursorinrevision.h <span style="color: grey">(a286cfb28e6abd969424d55a06b28619ee9fb9a1)</span></li>

 <li>language/editor/documentcursor.h <span style="color: grey">(1fb2404d287a1330a1c753a7c8ae6d956c37bbd2)</span></li>

 <li>language/editor/documentrange.h <span style="color: grey">(4218acdf0dbd6baa3cdc5fbebd99f0680295cca7)</span></li>

 <li>language/editor/editorintegratorstatic.h <span style="color: grey">(3505efa05dd20ccac92061314615fe9a5df51ae8)</span></li>

 <li>language/editor/modificationrevision.h <span style="color: grey">(8828fded447ccd86e63afe695a91201f2346d303)</span></li>

 <li>language/editor/modificationrevisionset.h <span style="color: grey">(56277416eb567b91c00c4e35c7a9fb43b122ac78)</span></li>

 <li>language/editor/persistentmovingrange.h <span style="color: grey">(e131a0fd7de7e04ae53018458c5bec6c1ace6262)</span></li>

 <li>language/editor/persistentmovingrangeprivate.h <span style="color: grey">(c2233a2006af3941288d91ac5deccee0ab7dbdd1)</span></li>

 <li>language/editor/rangeinrevision.h <span style="color: grey">(e6e3c9bf8077769ce3a4ac0c89f705500bb67ff9)</span></li>

 <li>language/editor/simplecursor.h <span style="color: grey">(118a7ffbdba6f51c23a5e8b707ffa55343be7fcb)</span></li>

 <li>language/editor/simplerange.h <span style="color: grey">(040a407b6428b129e7a7e5b4543cc2c268cd5475)</span></li>

 <li>language/highlighting/codehighlighting.h <span style="color: grey">(e940568852a63f3ab8043432a7f8e21ed2bee561)</span></li>

 <li>language/highlighting/colorcache.h <span style="color: grey">(400f974420c79f8ee0c8a23982dab3dec14263bb)</span></li>

 <li>language/highlighting/configurablecolors.h <span style="color: grey">(5aeef3e6b56bf1b604cddb8824da09e1da91b9dd)</span></li>

 <li>language/highlighting/tests/test_highlighting.h <span style="color: grey">(28d681e3d66370d97b98f3788219fde9242060a0)</span></li>

 <li>language/interfaces/codecontext.h <span style="color: grey">(992c47788d8372b93d55b721e508bf5b0d3ff3d5)</span></li>

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

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

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

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

 <li>language/interfaces/icontextbrowser.h <span style="color: grey">(648702c8d658a6a731554b034834923d68416ea5)</span></li>

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

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

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

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

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

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

 <li>language/util/basicsetrepository.h <span style="color: grey">(32a28e050d9ec7696aa8ebe4c8209a11466cca32)</span></li>

 <li>language/util/debuglanguageparserhelper.h <span style="color: grey">(e851b0b677c589078c2a3e74233997a0a4fb442c)</span></li>

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

 <li>language/util/kdevhash.h <span style="color: grey">(b549334386cf91d5c22f9a30a22e82e75f89d739)</span></li>

 <li>language/util/navigationtooltip.h <span style="color: grey">(2969c3c501e24dc99584b5a51ab0220ff139bae2)</span></li>

 <li>language/util/setrepository.h <span style="color: grey">(98eb155004019dfcd556904e8af791f6e7429225)</span></li>

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

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

 <li>outputview/ioutputview.h <span style="color: grey">(45f16c9aca667d37d67f428d7465bf793e42dd2b)</span></li>

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

 <li>outputview/outputdelegate.h <span style="color: grey">(261a4e6849fb0b4acfb87931093860fe5220fdc7)</span></li>

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

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

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

 <li>outputview/outputjob.h <span style="color: grey">(7c0b7b92bb8261f31d44cf48d4afbfb18b0ea983)</span></li>

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

 <li>outputview/outputviewexport.h <span style="color: grey">(47cdc4e6ad55f3ef2e86064aaa4121475361f825)</span></li>

 <li>outputview/tests/filteringstrategytest.h <span style="color: grey">(9f04503ac07074d695e3aafc95c7ff80a3206546)</span></li>

 <li>outputview/tests/outputmodeltest.h <span style="color: grey">(cc652f9f25f6e8304c9a41187c40dd3f7ab9272e)</span></li>

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

 <li>plugins/appwizard/appwizardpagewidget.h <span style="color: grey">(6e16aecf36fe781943155734a305892c4332cee4)</span></li>

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

 <li>plugins/classbrowser/allclassesfolder.h <span style="color: grey">(e30ad92b7c93645090ed5b1d55d5e5fa99c756ca)</span></li>

 <li>plugins/classbrowser/classbrowserplugin.h <span style="color: grey">(abe10de1015b14beb929484594f28986a8e13d9d)</span></li>

 <li>plugins/classbrowser/classmodel.h <span style="color: grey">(fd1eed5e9683d4aeabb74f32d09c0994867b6a88)</span></li>

 <li>plugins/classbrowser/classmodelnode.h <span style="color: grey">(739868b5b2d135369c23287263222cb8333f0fd2)</span></li>

 <li>plugins/classbrowser/classmodelnodescontroller.h <span style="color: grey">(7933517d60a843bf0a44307ec52f2f7cb49bb719)</span></li>

 <li>plugins/classbrowser/classtree.h <span style="color: grey">(ff16090bea6dbf865b348bf8905d233e4c88fefa)</span></li>

 <li>plugins/classbrowser/classwidget.h <span style="color: grey">(1e1ed58e012f776f495fb7db447de45ed04902b4)</span></li>

 <li>plugins/classbrowser/documentclassesfolder.h <span style="color: grey">(1a402f190d53b3170f67a6f40d0ee43e0709f041)</span></li>

 <li>plugins/classbrowser/projectfolder.h <span style="color: grey">(d951a86dfca6ed3224e0092f9d87e91ff887c8ea)</span></li>

 <li>plugins/codeutils/codeutilsplugin.h <span style="color: grey">(2b840245f96f85261a271b50bb8f678cb71733bd)</span></li>

 <li>plugins/codeutils/tests/expected/testname.h <span style="color: grey">(c07fc6bed9731e302a9a43b59d5f6b18d7ce3210)</span></li>

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

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

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

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

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

 <li>plugins/cvs/commitdialog.h <span style="color: grey">(563f43f2aecce786035d25baff796befcae03c9c)</span></li>

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

 <li>plugins/cvs/cvsdiffjob.h <span style="color: grey">(4920d3f79cc6b29beed02a8e2df824809fb800ed)</span></li>

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

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

 <li>plugins/cvs/cvslogjob.h <span style="color: grey">(74dedb15f8c287283819ec1a64d28c38c0638944)</span></li>

 <li>plugins/cvs/cvsmainview.h <span style="color: grey">(9f8020ac60b84f4fda31359322313458f108d5fe)</span></li>

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

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

 <li>plugins/cvs/cvsstatusjob.h <span style="color: grey">(0ca9737073b4dd3ef999ebb7b9cf536511e40f25)</span></li>

 <li>plugins/cvs/editorsview.h <span style="color: grey">(847cb7abf657a78de8e4c3c98a67203b3fee32b3)</span></li>

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

 <li>plugins/cvs/importmetadatawidget.h <span style="color: grey">(44847273737f5bddd9ceef2470ef3d68d040f125)</span></li>

 <li>plugins/cvs/tests/cvstest.h <span style="color: grey">(4df4776c3502e9092d9aa25ec5bd8f61a1a6a1b8)</span></li>

 <li>plugins/dashboard/appletselector.h <span style="color: grey">(e5c90f1a6e39f9df8166b5d98a51b5f698ebae62)</span></li>

 <li>plugins/dashboard/dashboard.h <span style="color: grey">(25105a68657000489355ff587980c4a2c4216926)</span></li>

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

 <li>plugins/dashboard/dashboarddataengine.h <span style="color: grey">(de5d1e6ae2f332cd61741ff6240460cde3b0d073)</span></li>

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

 <li>plugins/dashboard/dashboardpluginloader.h <span style="color: grey">(7f08bee131b1b68d18928d00f210189c4f3891eb)</span></li>

 <li>plugins/dashboard/dashboardview.h <span style="color: grey">(4e080546e1453531b6189f0bb685b789fc46ef28)</span></li>

 <li>plugins/dashboard/declarative/icoreobject.h <span style="color: grey">(f2fdcca70d240ef331787725c41cc9eb0abfa852)</span></li>

 <li>plugins/dashboard/declarative/kdevelopdashboarddeclarativeplugin.h <span style="color: grey">(2c5009e7bd58ce84dfb83c9039ae03b79acbe398)</span></li>

 <li>plugins/dashboard/kdevprojectdashboard.h <span style="color: grey">(214499e04203f42159bb70541e3076fb1abbb4a3)</span></li>

 <li>plugins/documentswitcher/documentswitcherplugin.h <span style="color: grey">(434a2d54bbb046cc5ff775ce9937d8600c34553f)</span></li>

 <li>plugins/documentswitcher/documentswitchertreeview.h <span style="color: grey">(193794c806a3c0dcb8546ffa72801513ec80bc8e)</span></li>

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

 <li>plugins/documentview/kdevdocumentselection.h <span style="color: grey">(34ffc28ccfcf83ef0368afb6c192a2ff4926639d)</span></li>

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

 <li>plugins/documentview/kdevdocumentviewdelegate.h <span style="color: grey">(bf6c3221109446e8a36cea1dbaf0ddd7e8e9053a)</span></li>

 <li>plugins/documentview/kdevdocumentviewplugin.h <span style="color: grey">(1cf9cfa7d92b044d32e75c349c4fd6ad8da5c303)</span></li>

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

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

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

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

 <li>plugins/execute/nativeappjob.h <span style="color: grey">(84c5335d5f8ef42e7e6efcb880dcf5f4fa3d176a)</span></li>

 <li>plugins/execute/projecttargetscombobox.h <span style="color: grey">(154226844e5a3e7f5c40a09bf86ba47d99f5237f)</span></li>

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

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

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

 <li>plugins/executescript/scriptappjob.h <span style="color: grey">(0fa2a29db8133ab1404f93ff8df508bef787d0c4)</span></li>

 <li>plugins/externalscript/editexternalscript.h <span style="color: grey">(75a438a16d0585f5c09766ab1905cff65e5cc007)</span></li>

 <li>plugins/externalscript/externalscriptdebug.h <span style="color: grey">(c82deb8d92a767c5887c011967f242648a6947e8)</span></li>

 <li>plugins/externalscript/externalscriptitem.h <span style="color: grey">(cd2dba6cd776b99c043524867390992ec84c7218)</span></li>

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

 <li>plugins/externalscript/externalscriptoutputmodel.h <span style="color: grey">(e82d59a97cdacbab3496fcaab5d9a55ff0a1c531)</span></li>

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

 <li>plugins/externalscript/externalscriptview.h <span style="color: grey">(cdd7e5072d97c8cf8edb24379273f01226547c0c)</span></li>

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

 <li>plugins/filemanager/filemanager.h <span style="color: grey">(0d725ae1321189690da9364b61a32aaea7acb03a)</span></li>

 <li>plugins/filemanager/kdevfilemanagerplugin.h <span style="color: grey">(de4c1e333a9f3c2079a9101980b4c735dbf407c1)</span></li>

 <li>plugins/filetemplates/classidentifierpage.h <span style="color: grey">(82504f37b1bb2a81cb160c63d3a0eaedc6501f0c)</span></li>

 <li>plugins/filetemplates/classmemberspage.h <span style="color: grey">(4def041c2a73ea55658a32392f914e43d0919c69)</span></li>

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

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

 <li>plugins/filetemplates/licensepage.h <span style="color: grey">(586c9346a9158438738f723c0046d6c7b9fd4a14)</span></li>

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

 <li>plugins/filetemplates/overridespage.h <span style="color: grey">(9f8113e1b7bbb69eecb4c4520bdc11bfbdd467b8)</span></li>

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

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

 <li>plugins/filetemplates/templatepreview.h <span style="color: grey">(0e4aef055e198475297c7f0a8541c3e9858b847f)</span></li>

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

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

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

 <li>plugins/genericprojectmanager/genericmanager.h <span style="color: grey">(ed74083d1a5c4bcf558c62dae1f67403c70010d0)</span></li>

 <li>plugins/genericprojectmanager/genericprojectmanagerpreferences.h <span style="color: grey">(1cd0842c7117f18d18eafa636649d17315f6582e)</span></li>

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

 <li>plugins/git/gitclonejob.h <span style="color: grey">(3279ba1d085feac7b76274edb605ded97c5828d1)</span></li>

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

 <li>plugins/git/gitmessagehighlighter.h <span style="color: grey">(65049cad20a3aac992b4a692683707b5d3439554)</span></li>

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

 <li>plugins/git/stashmanagerdialog.h <span style="color: grey">(0391e70066a66bb52a531a10a8a88a8d8f5db548)</span></li>

 <li>plugins/git/tests/initTest.h <span style="color: grey">(279cf13357033e3178cf40d445ac9f11906808eb)</span></li>

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

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

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

 <li>plugins/grepview/grepoutputdelegate.h <span style="color: grey">(9973a381cfa4bdcf9ede52eb37a684cdc0483941)</span></li>

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

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

 <li>plugins/grepview/greputil.h <span style="color: grey">(446286e887cc1b78105f834783cd1c75ab932062)</span></li>

 <li>plugins/grepview/tests/findreplacetest.h <span style="color: grey">(4c9715932c6248043e921712ebfa4f48c9d33ad0)</span></li>

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

 <li>plugins/konsole/kdevkonsoleviewplugin.h <span style="color: grey">(2afec51302fd5fafc1511b38f75a8a2af9e48ac3)</span></li>

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

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

 <li>plugins/pastebin/pastebinplugin.h <span style="color: grey">(5884659faf1dd6e517f67bb821bc016195b40d2a)</span></li>

 <li>plugins/patchreview/libdiff2/cvsdiffparser.h <span style="color: grey">(54c7c1e57a0646b7eb3465e146b947b90391caab)</span></li>

 <li>plugins/patchreview/libdiff2/diff2export.h <span style="color: grey">(12135d5a5d1d4a7daabdc22cea7fb58572694597)</span></li>

 <li>plugins/patchreview/libdiff2/difference.h <span style="color: grey">(03ab1e02595f44a92abd6cc1733337d1288f620a)</span></li>

 <li>plugins/patchreview/libdiff2/differencestringpair.h <span style="color: grey">(f1bf8018302432bb93a888c26fbfabd85e190e6b)</span></li>

 <li>plugins/patchreview/libdiff2/diffexport.h <span style="color: grey">(a5c125d6ea934b0d907f510327ac06cb6469938d)</span></li>

 <li>plugins/patchreview/libdiff2/diffhunk.h <span style="color: grey">(ad847f034cfebaefd8bb7beb7f21c70f16ef9b22)</span></li>

 <li>plugins/patchreview/libdiff2/diffmodel.h <span style="color: grey">(45a80ec34543a7eaac0da6ebb5f55d3e691fad15)</span></li>

 <li>plugins/patchreview/libdiff2/diffmodellist.h <span style="color: grey">(edf1d22a83ebf70b4ea0c99d76804aabeb370fab)</span></li>

 <li>plugins/patchreview/libdiff2/diffparser.h <span style="color: grey">(2a389b451f34837bb9a823ba8c3ec49d1a909067)</span></li>

 <li>plugins/patchreview/libdiff2/kompare.h <span style="color: grey">(6fed792593ab82349dfe1e2b646f7cdc5ac079ea)</span></li>

 <li>plugins/patchreview/libdiff2/komparemodellist.h <span style="color: grey">(adcffd234f5d49183a149ce97cfb2f7a837658e3)</span></li>

 <li>plugins/patchreview/libdiff2/kompareprocess.h <span style="color: grey">(288d93996c147d64d741cf5dfb8e2f7ec0f0e0e2)</span></li>

 <li>plugins/patchreview/libdiff2/levenshteintable.h <span style="color: grey">(77d806f1818be57470ccef45e7b7363268389dbc)</span></li>

 <li>plugins/patchreview/libdiff2/marker.h <span style="color: grey">(a8b5661baed65795375d638849910c084a8a609c)</span></li>

 <li>plugins/patchreview/libdiff2/parser.h <span style="color: grey">(5279c1205243a77b17b8fc98bdc4b9103c5230df)</span></li>

 <li>plugins/patchreview/libdiff2/parserbase.h <span style="color: grey">(966f405b52ba55588afda987aefb583947f30741)</span></li>

 <li>plugins/patchreview/libdiff2/perforceparser.h <span style="color: grey">(c19e281b34fdf34eb0d78604898bfc6da0527950)</span></li>

 <li>plugins/patchreview/libdiff2/stringlistpair.h <span style="color: grey">(26c2380b464f7eb0fa7a7b7e06344bd45ae95c86)</span></li>

 <li>plugins/patchreview/libdiff2/tests/interactivedifftest.h <span style="color: grey">(2b4294eb5d355a63e1e79004c976959595e3a707)</span></li>

 <li>plugins/patchreview/libdiff2/tests/levenshteintest.h <span style="color: grey">(ae05db473a44b708b831c84cb2e6804d8a1d513e)</span></li>

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

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

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

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

 <li>plugins/patchreview/settings/diffsettings.h <span style="color: grey">(f9a21bf7ecf943ad2d69f0c4a0cc20bc6711c40a)</span></li>

 <li>plugins/patchreview/settings/settingsbase.h <span style="color: grey">(f5df61dd862096f8a81c9db2638f9ee90733c1d7)</span></li>

 <li>plugins/patchreview/standardpatchexport.h <span style="color: grey">(68dd62d18dc9f684473bee8050ab01143f4435c0)</span></li>

 <li>plugins/problemreporter/problemhighlighter.h <span style="color: grey">(25af5a883c9b47ac4c67e9fef9dbdd7a111dcdec)</span></li>

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

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

 <li>plugins/problemreporter/problemwidget.h <span style="color: grey">(9be7d15ffdef4d89496ae6f56b22a6487047756c)</span></li>

 <li>plugins/problemreporter/watcheddocumentset.h <span style="color: grey">(4503f916f87c8e0234878d46248429a162754aa2)</span></li>

 <li>plugins/projectmanagerview/projectbuildsetwidget.h <span style="color: grey">(0b8439a99723418aeae8961d711a7eae99255d30)</span></li>

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

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

 <li>plugins/projectmanagerview/projectmodelitemdelegate.h <span style="color: grey">(9693018147183ddf987ebd7aeac536c56e993885)</span></li>

 <li>plugins/projectmanagerview/projectmodelsaver.h <span style="color: grey">(29ba7c497a086af381242f90e8f6d633b7484172)</span></li>

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

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

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

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

 <li>plugins/quickopen/expandingtree/expandingdelegate.h <span style="color: grey">(2d4f121e4a8dddc1dcf58427a78ba406c36b1deb)</span></li>

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

 <li>plugins/quickopen/expandingtree/expandingwidgetmodel.h <span style="color: grey">(ab575f2e36f173148700bbaf7491caa11cfaf59b)</span></li>

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

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

 <li>plugins/quickopen/tests/quickopenbench.h <span style="color: grey">(b5e081c171f6482228c364e2828da8099ee019db)</span></li>

 <li>plugins/quickopen/tests/quickopentest.h <span style="color: grey">(6930a030cde79d39d720be27974c4dfc10a5f304)</span></li>

 <li>plugins/quickopen/tests/quickopentestbase.h <span style="color: grey">(b3b0d11131f64155fbd55747ce63e95b5724bee7)</span></li>

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

 <li>plugins/reviewboard/reviewboardplugin.h <span style="color: grey">(e5b71217fe6e867dcb192a0f0f718cbef802ab5e)</span></li>

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

 <li>plugins/snippet/legacy/editrepository.h <span style="color: grey">(065845e9d22967b6bb510a169f971b4b50d08e6f)</span></li>

 <li>plugins/snippet/legacy/editsnippet.h <span style="color: grey">(0e0e1154d2d9dddb6e6f6cdb4b97a0390040bf28)</span></li>

 <li>plugins/snippet/legacy/snippetcompletionitem.h <span style="color: grey">(b2562c36b005a38090491b6674c7e2c157b5d745)</span></li>

 <li>plugins/snippet/legacy/snippetcompletionmodel.h <span style="color: grey">(434702183846876db7f3c4926b2d56c08d0dc99c)</span></li>

 <li>plugins/snippet/legacy/snippetview.h <span style="color: grey">(664c33ba4d514fe1ea9768d1be8cec7b452cda23)</span></li>

 <li>plugins/standardoutputview/outputwidget.h <span style="color: grey">(08876e38b3c010d9e42e9ea3469c09bade6e5e60)</span></li>

 <li>plugins/standardoutputview/standardoutputview.h <span style="color: grey">(3d0a42bebfa45c8a942441b0f240262671f0741e)</span></li>

 <li>plugins/standardoutputview/tests/standardoutputviewtest.h <span style="color: grey">(d900466281ee612c4281a8cf2ed383f3a108fa8f)</span></li>

 <li>plugins/standardoutputview/toolviewdata.h <span style="color: grey">(ed7a1af9b0a865d8fcc366383732aedaa6bbe995)</span></li>

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

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

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

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

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

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

 <li>plugins/subversion/svncatjob_p.h <span style="color: grey">(284f6b89e7d1b4c17b28973ca4d0a127c4b0280e)</span></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 <li>plugins/subversion/svninternaljobbase.h <span style="color: grey">(6710990dc1fa2d4f7838f0140efd7c970e09775b)</span></li>

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

 <li>plugins/subversion/svnlocationwidget.h <span style="color: grey">(0f1ebbfc4f94ca9f7e55ac1df151b6a83ef87693)</span></li>

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

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

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

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

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

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

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

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

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

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

 <li>plugins/subversion/svnrevisionwidget.h <span style="color: grey">(79c32fe9738b86a39e6287ac503a32d21b646ae7)</span></li>

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

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

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

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

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

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

 <li>plugins/subversion/svnupdatewidget.h <span style="color: grey">(361c942306a4a78ab7f818c92e00a33bfdf350a9)</span></li>

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

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

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

 <li>plugins/templatemanager/templateconfig.h <span style="color: grey">(c0886e85b31334117175950e67ebdfd15990dd35)</span></li>

 <li>plugins/templatemanager/templatepage.h <span style="color: grey">(f36c6add708bd5e525da0b66ead41d5c4ada9e3e)</span></li>

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

 <li>plugins/testview/testviewdebug.h <span style="color: grey">(abad0646f61d255de668937b41a35ff5443f5071)</span></li>

 <li>plugins/testview/testviewplugin.h <span style="color: grey">(ebc1f5ce08a855ea4e2c9235edf72764bad4164e)</span></li>

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

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

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

 <li>project/builderjob.h <span style="color: grey">(00d3074dd21290169bac17c32baba2bfe54e7636)</span></li>

 <li>project/filemanagerlistjob.h <span style="color: grey">(54d9ae15777a0ce3921281e8e7a1e8550c9dd8fe)</span></li>

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

 <li>project/importprojectjob.h <span style="color: grey">(02f0f2e59aa7cce7872793bdff11485455e9add2)</span></li>

 <li>project/interfaces/ibuildsystemmanager.h <span style="color: grey">(c0813d8f781b0be29829b9278f191299af823b68)</span></li>

 <li>project/interfaces/iprojectbuilder.h <span style="color: grey">(3b125dd1b5e02531bef109abe635735a4f097b3f)</span></li>

 <li>project/interfaces/iprojectfilemanager.h <span style="color: grey">(19f55861cd7e99065d3b4ae68d7667f79b3022e1)</span></li>

 <li>project/projectbuildsetmodel.h <span style="color: grey">(5417566fda4f4552340332de4fdadfe22aa65bf2)</span></li>

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

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

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

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

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

 <li>project/projectproxymodel.h <span style="color: grey">(279389b5a0118ba46a32ccfb4ab4446771d05a09)</span></li>

 <li>project/projectutils.h <span style="color: grey">(8c4f09a22546ab0d94f43663f9a5d4536ce8e7df)</span></li>

 <li>shell/assistantpopup.h <span style="color: grey">(0e0feb2afd0ee24d97054d671b1593d6c2c5a4bb)</span></li>

 <li>shell/completionsettings.h <span style="color: grey">(4e03de6bc60f233730fa62177b34e6be8e5c2fdb)</span></li>

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

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

 <li>shell/debugcontroller.h <span style="color: grey">(856451c8c3cd61436759d349c28098ec7cd7621c)</span></li>

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

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

 <li>shell/kross/dvcsadaptors.h <span style="color: grey">(1376d765394c516fd9cd413c1cfc2718782326fe)</span></li>

 <li>shell/kross/krossbuildsystemmanager.h <span style="color: grey">(089f8fbe3269aabb833c50d8a7d819f0efaf3037)</span></li>

 <li>shell/kross/krossdistributedversioncontrol.h <span style="color: grey">(331493e0f57d01a4403519340c2c43de0477e8be)</span></li>

 <li>shell/kross/krossplugin.h <span style="color: grey">(f9a12aabd455d2784fde255f810b0bf18d5ef012)</span></li>

 <li>shell/kross/krosstoolviewfactory.h <span style="color: grey">(5d17f7adf8d240308b18dcd2b12cbcf5bc6b5a5d)</span></li>

 <li>shell/kross/krossvcsjob.h <span style="color: grey">(2337f514a01f4f48139c70724255fd37a267d5ed)</span></li>

 <li>shell/kross/projectitemadaptors.h <span style="color: grey">(0d9a488e7ff6a1df779c899ec4bcf65d9adda88d)</span></li>

 <li>shell/kross/wrappers/krosscontext.h <span style="color: grey">(70b8f9ad39d23ec1b8e1dba36b6021525874ddfb)</span></li>

 <li>shell/kross/wrappers/krosscontextmenuextension.h <span style="color: grey">(a18d5bde856634f47f19e61ed8be8de79dab0d74)</span></li>

 <li>shell/kross/wrappers/krossdeclaration.h <span style="color: grey">(2ab14acb0f5f26acd367d5551da9b9b2fd7a8fee)</span></li>

 <li>shell/kross/wrappers/krossduchainlock.h <span style="color: grey">(798c2ca840b71fc5facbd3fc92a6027f61fa8560)</span></li>

 <li>shell/kross/wrappers/krossducontext.h <span style="color: grey">(2cdc093d2db88419abe2479c0df2edd999d65d56)</span></li>

 <li>shell/kross/wrappers/krosseditorcontext.h <span style="color: grey">(27011fd6d167150091f226883a346211faa13b94)</span></li>

 <li>shell/kross/wrappers/krossibuildsystemmanager.h <span style="color: grey">(61ed4f275d3b07dad57a6d5a483930ca5f6efe27)</span></li>

 <li>shell/kross/wrappers/krossidentifier.h <span style="color: grey">(d866f48c5e9ac6ca60d698db3f588ec83e2926ca)</span></li>

 <li>shell/kross/wrappers/krossidocument.h <span style="color: grey">(8067391685a0bfd18e288d4de39b63ce6628cf0c)</span></li>

 <li>shell/kross/wrappers/krossilanguage.h <span style="color: grey">(a670cbf4cd43eedc8703d60c66f697e1e138c2d8)</span></li>

 <li>shell/kross/wrappers/krossiproblem.h <span style="color: grey">(8879b6e728079146bc31d75b83ba824e562068ef)</span></li>

 <li>shell/kross/wrappers/krossiprojectbuilder.h <span style="color: grey">(f73baa6702b286e68cde325f184e73ec09a8ec77)</span></li>

 <li>shell/kross/wrappers/krossiprojectfilemanager.h <span style="color: grey">(254daa9607f24858fe01cd3ce65c51f339b612d9)</span></li>

 <li>shell/kross/wrappers/krossiuicontroller.h <span style="color: grey">(ef1f62e1f18d3a48446b96d4043255593443a978)</span></li>

 <li>shell/kross/wrappers/krossprojectmodel.h <span style="color: grey">(85032076c704f112756401d6376ed73e652379ed)</span></li>

 <li>shell/kross/wrappers/krossqtoolbar.h <span style="color: grey">(30d04a7d75b0d4e5b96b4691610e50178e938787)</span></li>

 <li>shell/kross/wrappers/krosstopducontext.h <span style="color: grey">(77f54bef6b4104dab0c94c81c85871a28f659002)</span></li>

 <li>shell/kross/wrappers/krossuse.h <span style="color: grey">(54b59e4fd51f7d02f2d319158c8a3ff9e36318d6)</span></li>

 <li>shell/kross/wrappers/krossvcslocation.h <span style="color: grey">(f803b407c6dc03962a87793badfeeb9b41f45adc)</span></li>

 <li>shell/kross/wrappers/krossvcsrevision.h <span style="color: grey">(c37551cc1889f99bcce5fb9c162d9681f6cf7f63)</span></li>

 <li>shell/kross/xmltokross/duchainextractor.h <span style="color: grey">(f32543ac35a02ea2dca5eea48913b7f6a117b1c4)</span></li>

 <li>shell/kross/xmltokross/duchainreader.h <span style="color: grey">(faefb0a589ef3f075472d37e156d3dfe5890ec6d)</span></li>

 <li>shell/kross/xmltokross/dummybsm.h <span style="color: grey">(7f9c413b9f1efc50da46a26bb763c5003be16f01)</span></li>

 <li>shell/kross/xmltokross/interfacecreator.h <span style="color: grey">(ead7dd266185327e13967a26b2089845061ee58c)</span></li>

 <li>shell/kross/xmltokross/krossimpl.h <span style="color: grey">(f798da872f3164ba3aea76d3b1811e5760c98ddc)</span></li>

 <li>shell/kross/xmltokross/krosswrapper.h <span style="color: grey">(12d8bcc35ddde02cb1bde3ceb3638858e70097bb)</span></li>

 <li>shell/kross/xmltokross/project.h <span style="color: grey">(722a551097ae92b346d83555d6eb50592dff0842)</span></li>

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

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

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

 <li>shell/launchconfigurationdialog.h <span style="color: grey">(4c0cfa8bbca3160f5add93c655c66dd3ab07569d)</span></li>

 <li>shell/loadedpluginsdialog.h <span style="color: grey">(33f3861887eb5952fbb18a28ad03f97bfaff4b7a)</span></li>

 <li>shell/mainwindow.h <span style="color: grey">(9ceb0f167216a91ca2cd03bef284c769e0125e38)</span></li>

 <li>shell/mainwindow_p.h <span style="color: grey">(2921d14701ff6c278a44c369adf0d7ba9812fd02)</span></li>

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

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

 <li>shell/overlaywidget.h <span style="color: grey">(56cd40e2c2afd83faa87009dc1db2d1f50c75840)</span></li>

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

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

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

 <li>shell/progressdialog.h <span style="color: grey">(8260ca515fc69e5285dba093fee84a0c205e4083)</span></li>

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

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

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

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

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

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

 <li>shell/runcontroller.h <span style="color: grey">(8761452b81d763f66a16d4618d96db2fefc3b4da)</span></li>

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

 <li>shell/selectioncontroller.h <span style="color: grey">(67b3c54ed0ee5579374893903e45ea568447a550)</span></li>

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

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

 <li>shell/sessiondialog.h <span style="color: grey">(76d9c7c9eee36c67d3a346c3db47aa47242993b7)</span></li>

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

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

 <li>shell/settings/editstyledialog.h <span style="color: grey">(426d76203f7b8546dba416715a76cef031d12685)</span></li>

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

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

 <li>shell/settings/environmentwidget.h <span style="color: grey">(0a4434a13cdae706f172d4041cc2ec44ecaf3713)</span></li>

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

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

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

 <li>shell/settings/sourceformattersettings.h <span style="color: grey">(0a1668a8271995dd3b353c3d5aa1ca816adaa33b)</span></li>

 <li>shell/settings/uipreferences.h <span style="color: grey">(0d17cd390c871b6567471a2ea1d5f399382f65ad)</span></li>

 <li>shell/shellexport.h <span style="color: grey">(91af2858dbc009a4c55e3add44fb60f53d762560)</span></li>

 <li>shell/shellextension.h <span style="color: grey">(3d64486c0a0f65efd0e022fee771ada1d40a53ea)</span></li>

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

 <li>shell/statusbar.h <span style="color: grey">(9af4596d4f5bbb5f2495fd66ff687a4f666794dc)</span></li>

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

 <li>shell/tests/documentcontrollertest.h <span style="color: grey">(2494025e4c4d0ce88a816aa143a8cbe53a386c5f)</span></li>

 <li>shell/tests/shellbuddytest.h <span style="color: grey">(47567c8c17954bc2bd244e34365c32f585fd890d)</span></li>

 <li>shell/tests/shelldocumentoperationtest.h <span style="color: grey">(6e35ec2b0d6c7af0f2b6233b88ce545d8c1b7c23)</span></li>

 <li>shell/tests/testcontrollertest.h <span style="color: grey">(828ee553c8cf5875aea11736cfc99501e679cb71)</span></li>

 <li>shell/tests/uicontrollertest.h <span style="color: grey">(600c3c735119b2a8678e237abf6be5c9aae88d62)</span></li>

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

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

 <li>shell/workingsetcontroller.h <span style="color: grey">(9697a99489fb72c53308e32641699fcca556714f)</span></li>

 <li>shell/workingsets/closedworkingsetswidget.h <span style="color: grey">(878730975b1ffbefede902650e893104057ae1d6)</span></li>

 <li>shell/workingsets/workingset.h <span style="color: grey">(ae2aa94f9b080aed4fd5a2552e1585f45a5f4876)</span></li>

 <li>shell/workingsets/workingsetfilelabel.h <span style="color: grey">(a2a1979f81c0f54190ec0d1cbb3cfd6e5dd1ea16)</span></li>

 <li>shell/workingsets/workingsethelpers.h <span style="color: grey">(fa45d5160e40224711c926c8d4ca7f91a0593ba6)</span></li>

 <li>shell/workingsets/workingsettoolbutton.h <span style="color: grey">(ec6253448e93e377720492f95a81b7056f6d2c2b)</span></li>

 <li>shell/workingsets/workingsettooltipwidget.h <span style="color: grey">(2854c84cf9b38b65cbbd6b78c662b62241418d4d)</span></li>

 <li>shell/workingsets/workingsetwidget.h <span style="color: grey">(745c58eee66de8fe8eabfac1ac89757ec19be49e)</span></li>

 <li>sublime/aggregatemodel.h <span style="color: grey">(741ee0489c987e26e717ff37c57db401989c88a4)</span></li>

 <li>sublime/area.h <span style="color: grey">(0c5c36487976df8d756063fc2a8c29ee17022fd2)</span></li>

 <li>sublime/areaindex.h <span style="color: grey">(2271b5a4cb5715609ea86b1c9065644033355d57)</span></li>

 <li>sublime/areawalkers.h <span style="color: grey">(8a647a4a334075fd6af3a0c88034af446dc9a94e)</span></li>

 <li>sublime/blur.h <span style="color: grey">(79f18069660fdace0681f6623b33509df6afee72)</span></li>

 <li>sublime/container.h <span style="color: grey">(7f4ff05512ca4653f33e373b83bd667b49ad656d)</span></li>

 <li>sublime/controller.h <span style="color: grey">(020a28d04bf26b9f9ed52ae9888a5b7d51e4dca9)</span></li>

 <li>sublime/document.h <span style="color: grey">(973040ab0c9dab39facd3eae4a13f86272c1f6e0)</span></li>

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

 <li>sublime/examples/example2main.h <span style="color: grey">(33f2bf58f6b6763b597ef10d446e4ccf56579e29)</span></li>

 <li>sublime/holdupdates.h <span style="color: grey">(e9eeebc2a5b5f4afe44e0a1978912f9e518b215e)</span></li>

 <li>sublime/ideal.h <span style="color: grey">(2e2f288a74bb1b0c6c5d5746fb23850bd6516e6e)</span></li>

 <li>sublime/ideallayout.h <span style="color: grey">(f6cd797dedab2de6f257a5cd46a9edeb27ba9085)</span></li>

 <li>sublime/mainwindow.h <span style="color: grey">(82676baa45b31e3a24fe0c1cc673f1e882648149)</span></li>

 <li>sublime/mainwindow_p.h <span style="color: grey">(a9b634293845175eac1b571b1df63f17f37d5697)</span></li>

 <li>sublime/mainwindowoperator.h <span style="color: grey">(2c8a39274f382d6215334690e1060e27643e97a7)</span></li>

 <li>sublime/sublimedefs.h <span style="color: grey">(0a1ee098b86cd0b5d47f94fd59f1387d2a4d76d2)</span></li>

 <li>sublime/sublimeexport.h <span style="color: grey">(9d951207912635f335c44c68b5f0765c9f3a2bec)</span></li>

 <li>sublime/tests/aggregatemodeltest.h <span style="color: grey">(aeed1dd21168b21ac95c7e939dd8907249dc8853)</span></li>

 <li>sublime/tests/areaoperationtest.h <span style="color: grey">(c5df65e251a3a1fb176aeacde396431acd30c2c2)</span></li>

 <li>sublime/tests/areaprinter.h <span style="color: grey">(e813649ea47050f551727870a0b6758c6120a985)</span></li>

 <li>sublime/tests/areawalkertest.h <span style="color: grey">(f72fe8a649bcc7d0282e810399ab3eabba126e40)</span></li>

 <li>sublime/tests/controllertest.h <span style="color: grey">(7b2d59d97eced81a0780a6296303615d17dfa75c)</span></li>

 <li>sublime/tests/documenttest.h <span style="color: grey">(5c826282c6fcde9c195ca6ffe5e5e4d570909646)</span></li>

 <li>sublime/tests/toolviewtoolbartest.h <span style="color: grey">(cb941b3e1c34f70c738198789fb0773f835c6e74)</span></li>

 <li>sublime/tests/viewactivationtest.h <span style="color: grey">(148bbe71ee69651147780e3c775f8352e0c4cd39)</span></li>

 <li>sublime/tests/viewtest.h <span style="color: grey">(53bf450d48f0c1c4a315562c91e36e3d8101eae7)</span></li>

 <li>sublime/tooldocument.h <span style="color: grey">(aa5f0b2a05bc62b73f221bf94397801c326f06f6)</span></li>

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

 <li>sublime/view.h <span style="color: grey">(69c96e3977db6e3a605e0f234e24840d1894fb6a)</span></li>

 <li>template/filters/kdevfilters.h <span style="color: grey">(a259b63bce7bed454690b52cc7b43c58ff993631)</span></li>

 <li>tests/autotestshell.h <span style="color: grey">(695e1183273a3924cc8c752752c7f482f0dfe492)</span></li>

 <li>tests/json/declarationvalidator.h <span style="color: grey">(5bb2e6ab68ae7368909dc0a971607de3821034ab)</span></li>

 <li>tests/json/delayedoutput.h <span style="color: grey">(32b3dbf89a2074f52e093b1f1e863eefc00402e4)</span></li>

 <li>tests/json/jsondeclarationtests.h <span style="color: grey">(737595a7e3bd2b53fcb14630b3e2ae2112a846b8)</span></li>

 <li>tests/json/jsonducontexttests.h <span style="color: grey">(461fde25331480f7d6e1d0af5af4e0bb4c62c428)</span></li>

 <li>tests/json/jsontesthelpers.h <span style="color: grey">(56c029b80c79bfea453b2b9a00c88c887de03029)</span></li>

 <li>tests/json/jsontypetests.h <span style="color: grey">(354a4657b192e206d7269b329cb7c1a129ea9ed8)</span></li>

 <li>tests/json/kdevplatformjsontestsexport.h <span style="color: grey">(8c0d0f7ce9bd9648e5ccd33f5251667c6540939d)</span></li>

 <li>tests/json/testsuite.h <span style="color: grey">(0e4137f79d571fab60bbde1c4bcf023103be394f)</span></li>

 <li>tests/kdevplatformtestsexport.h <span style="color: grey">(ac1c642d28dbc7bd8a27fc0b8129134dfb13c8e0)</span></li>

 <li>tests/kdevsignalspy.h <span style="color: grey">(23306c1ad2dccfc75a2d85bd98605d84dbb8ba48)</span></li>

 <li>tests/modeltest.h <span style="color: grey">(38b6b2bed3a7e188a69933a83738204acbcd6c26)</span></li>

 <li>tests/testcore.h <span style="color: grey">(6becc2bbfb5f48e47a57f4aac606d3f5e0669872)</span></li>

 <li>tests/testhelpers.h <span style="color: grey">(48bfe4cc7300416ae294f74f3bcd69b7b9f39afe)</span></li>

 <li>tests/testlanguagecontroller.h <span style="color: grey">(b1a4587a4e2819053a8d7cbe01f0323dee49d4ff)</span></li>

 <li>tests/testplugincontroller.h <span style="color: grey">(1687334d1049a116a25a18565a8b1cb8c10e430a)</span></li>

 <li>util/activetooltip.h <span style="color: grey">(686dbd6f0c15f13985d05d5b7208c7df91199189)</span></li>

 <li>util/commandexecutor.h <span style="color: grey">(1cc32c80594e33ef3a9016be576f6489d4352c41)</span></li>

 <li>util/convenientfreelist.h <span style="color: grey">(15a4c361058a3bd97c8f2b69f29a3eb7886cf805)</span></li>

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

 <li>util/environmentconfigurebutton.h <span style="color: grey">(e664b7c33d70b794b5572cba9b1c51aad4599afa)</span></li>

 <li>util/environmentgrouplist.h <span style="color: grey">(ede491aca4d51a46ed7368e4fc45feb31262d0d5)</span></li>

 <li>util/environmentselectionwidget.h <span style="color: grey">(0a69afcf18f75be9109ad3f6e7067c9d6fba3be0)</span></li>

 <li>util/executecompositejob.h <span style="color: grey">(fc677e7dd2d71231cd17c51ddf1bcf4aec6a28ee)</span></li>

 <li>util/fileutils.h <span style="color: grey">(cce8488011b7a4633229d3e0121f18dd5cb5dfc5)</span></li>

 <li>util/focusedtreeview.h <span style="color: grey">(64260ad97e5055ad1e8367b1d2bf7c4b04687dff)</span></li>

 <li>util/formattinghelpers.h <span style="color: grey">(d82d421573a784655cd86caf65c60c37bae8266b)</span></li>

 <li>util/kdevstringhandler.h <span style="color: grey">(cca8e052064169ea1b0023d11daf0f51edccf672)</span></li>

 <li>util/kdevvarlengtharray.h <span style="color: grey">(c6939344986efeb522ea4e4fab0d8b5c68584937)</span></li>

 <li>util/ksharedobject.h <span style="color: grey">(76b2e5eb3ed03d144db89704dbe03526c06f75ac)</span></li>

 <li>util/multilevellistview.h <span style="color: grey">(9ed18707de466dccdd5f0e7b9b7e9482e9e2a9a3)</span></li>

 <li>util/projecttestjob.h <span style="color: grey">(d6793f0d21b425f9f70b1dc8e6c2c21d13a96374)</span></li>

 <li>util/pushvalue.h <span style="color: grey">(86e4ded7a551180002a94add11c76dc41813676b)</span></li>

 <li>util/richtextpushbutton.h <span style="color: grey">(6a91ca0c708474ea132da9f644cd7d968fe37747)</span></li>

 <li>util/richtexttoolbutton.h <span style="color: grey">(e9a20195421be03de0e4bb3dcca1a42d06d2ef99)</span></li>

 <li>util/sequentiallyrunjobs.h <span style="color: grey">(5ba93a129fb70d8cc7f794c28331f08eaf4ed52d)</span></li>

 <li>util/spinlock.h <span style="color: grey">(a3aa45c611a627347fbfda935bd0638682bcbb6d)</span></li>

 <li>util/ssh_client/main.h <span style="color: grey">(446a1a924c7fa4373c05f213d83cd31f1c82c093)</span></li>

 <li>util/utilexport.h <span style="color: grey">(f466510c96de890410611b67fb119b3a5d3fd76b)</span></li>

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

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

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

 <li>vcs/dvcs/tests/dvcsjobTest.h <span style="color: grey">(83bfa1e34fe8d2983f41ba60a1a3d7191a46361c)</span></li>

 <li>vcs/dvcs/ui/branchmanager.h <span style="color: grey">(2dac81104e81895b6edd8e13ed56213913587ead)</span></li>

 <li>vcs/dvcs/ui/importmetadatawidget.h <span style="color: grey">(992db3f3bd4b7edc305d1a677bb6e00b7b5790de)</span></li>

 <li>vcs/dvcs/ui/revhistory/commitView.h <span style="color: grey">(0d2dfefb801fdcce3feeba686304aef28ee7f18e)</span></li>

 <li>vcs/dvcs/ui/revhistory/commitlogmodel.h <span style="color: grey">(e38d51ec7ab1dc65117a4dcbf77642b821237149)</span></li>

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

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

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

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

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

 <li>vcs/interfaces/irepositoryversioncontrol.h <span style="color: grey">(29858640cac8f58bac1c268bac13c3d22c22f070)</span></li>

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

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

 <li>vcs/models/tests/modelstest.h <span style="color: grey">(aabf28511b9f7cd446263e2651c5c4d58a27b63f)</span></li>

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

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

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

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

 <li>vcs/tests/vcsBlackBoxTest.h <span style="color: grey">(92595a2c4fd1ab397ab1550d0f93dbbaeda96aa6)</span></li>

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

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

 <li>vcs/vcsevent.h <span style="color: grey">(34bad70c01a966a4e2df2823b7177850783d04ae)</span></li>

 <li>vcs/vcsexport.h <span style="color: grey">(9ef7b5fb46db1f4327eb64239a5cb682ddb62bbb)</span></li>

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

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

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

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

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

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

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

 <li>vcs/widgets/vcsannotationwidget.h <span style="color: grey">(89d6223b3cd88651120af3fbed5f2cb85a1616fe)</span></li>

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

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

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

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

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

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

</ul>

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







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








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