KDE/kdevplatform
Andreas Pakulat
apaku at gmx.de
Sat Aug 2 00:12:45 UTC 2008
SVN commit 840849 by apaku:
Uff. Unify #include's across libs and plugins.
The #include's now follow these rules:
For libraries
- #include <foo.h> / #include <Foo> for anything outside kdevplatform - i.e.
other libraries
- #include "foo.h" or #include "../foo.h" or #include "bar/foo.h" or #include
"../bar/foo.h" for headers that are inside the same library
- #include <bar/foo.h> for any library bar in kdevplatform
For plugins
- #include "foo.h" only for files inside the plugin
- #include <bar/foo.h> for any kdevplatform library bar
- #include <foo.h> / #include <Foo> for any other libs
This allows us to remove all include_directories() calls, so we're only have -I
switches for "external" libs (like KDE/Qt) and the top-level source/binary dir
as well as the "current" source/binary dir.
This is also supposed to make our header safer against include-problems, like
using #include <icore.h> and that picks up a header of similar name from some
other lib.
We've had a discussion about this quite a while back. Still if anybody feels
like this still has problem please speak up.
CCMAIL:kdevelop-devel at kdevelop.org
M +1 -1 CMakeLists.txt
M +0 -5 interfaces/CMakeLists.txt
M +1 -1 interfaces/idocument.h
M +2 -1 interfaces/iproject.h
M +3 -2 interfaces/scripting/scriptdocument.cpp
M +1 -1 interfaces/scripting/scriptingmanager.cpp
M +1 -1 interfaces/scripting/scriptingmanager.h
M +0 -2 interfaces/scripting/scripttools.cpp
M +2 -2 interfaces/scripting/scripttools.h
M +0 -6 interfaces/tests/CMakeLists.txt
M +3 -3 interfaces/tests/script_document.cpp
M +2 -2 interfaces/tests/script_documentcontroller.cpp
M +1 -1 interfaces/tests/scriptingtest.cpp
M +2 -2 kross/dvcsadaptors.h
M +3 -3 kross/krossbuildsystemmanager.cpp
M +3 -3 kross/krossbuildsystemmanager.h
M +6 -6 kross/krossdistributedversioncontrol.cpp
M +2 -2 kross/krossdistributedversioncontrol.h
M +8 -8 kross/krossplugin.cpp
M +1 -1 kross/krossplugin.h
M +2 -2 kross/krosstoolviewfactory.h
M +2 -2 kross/krossvcsjob.h
M +1 -1 kross/projectitemadaptors.h
M +1 -1 kross/wrappers/krosscontext.cpp
M +1 -1 kross/wrappers/krosscontext.h
M +1 -1 kross/wrappers/krosscontextmenuextension.cpp
M +1 -1 kross/wrappers/krosscontextmenuextension.h
M +1 -1 kross/wrappers/krossidocument.cpp
M +1 -1 kross/wrappers/krossidocument.h
M +1 -1 kross/wrappers/krossiuicontroller.cpp
M +1 -1 kross/wrappers/krossiuicontroller.h
M +1 -1 kross/wrappers/krossprojectmodel.cpp
M +1 -1 kross/wrappers/krossprojectmodel.h
M +1 -1 kross/wrappers/krossvcslocation.cpp
M +1 -1 kross/wrappers/krossvcslocation.h
M +1 -1 kross/wrappers/krossvcsrevision.cpp
M +1 -1 kross/wrappers/krossvcsrevision.h
M +0 -11 language/CMakeLists.txt
M +8 -7 language/backgroundparser/backgroundparser.cpp
M +1 -1 language/backgroundparser/documentchangetracker.h
M +2 -2 language/backgroundparser/parsejob.cpp
M +3 -3 language/backgroundparser/parsejob.h
M +1 -1 language/backgroundparser/parserdependencypolicy.h
M +5 -5 language/codecompletion/codecompletion.cpp
M +1 -1 language/codecompletion/codecompletion.h
M +1 -1 language/codecompletion/codecompletioncontext.cpp
M +2 -2 language/codecompletion/codecompletioncontext.h
M +6 -6 language/codecompletion/codecompletionitem.cpp
M +2 -2 language/codecompletion/codecompletionitem.h
M +14 -13 language/codecompletion/codecompletionmodel.cpp
M +4 -4 language/codecompletion/codecompletionmodel.h
M +1 -1 language/codecompletion/codecompletionworker.cpp
M +2 -2 language/codecompletion/codecompletionworker.h
M +1 -1 language/duchain/abstractfunctiondeclaration.h
M +3 -3 language/duchain/appendedlist.h
M +1 -1 language/duchain/appendedlist_static.h
M +2 -2 language/duchain/arrayhelpers.h
M +10 -10 language/duchain/builders/abstractcontextbuilder.h
M +5 -5 language/duchain/builders/abstractdeclarationbuilder.h
M +2 -2 language/duchain/builders/abstracttypebuilder.h
M +5 -5 language/duchain/builders/abstractusebuilder.h
M +1 -1 language/duchain/classfunctiondeclaration.cpp
M +2 -2 language/duchain/classfunctiondeclaration.h
M +1 -1 language/duchain/classmemberdeclaration.h
M +2 -2 language/duchain/declaration.cpp
M +4 -4 language/duchain/declaration.h
M +2 -2 language/duchain/declarationdata.h
M +2 -2 language/duchain/declarationid.cpp
M +3 -3 language/duchain/declarationid.h
M +2 -2 language/duchain/definitions.h
M +9 -8 language/duchain/duchain.cpp
M +2 -2 language/duchain/duchain.h
M +3 -3 language/duchain/duchainbase.h
M +2 -2 language/duchain/duchainobserver.h
M +1 -6 language/duchain/duchainpointer.h
M +2 -2 language/duchain/duchainregister.h
M +8 -5 language/duchain/duchainutils.cpp
M +1 -1 language/duchain/duchainutils.h
M +6 -4 language/duchain/ducontext.cpp
M +5 -5 language/duchain/ducontext.h
M +5 -4 language/duchain/ducontextdata.h
M +6 -7 language/duchain/dumpchain.cpp
M +2 -2 language/duchain/dumpchain.h
M +6 -6 language/duchain/dumpdotgraph.cpp
M +1 -1 language/duchain/dumpdotgraph.h
M +1 -1 language/duchain/forwarddeclaration.cpp
M +1 -1 language/duchain/forwarddeclaration.h
M +1 -1 language/duchain/functiondeclaration.cpp
M +2 -2 language/duchain/functiondeclaration.h
M +1 -1 language/duchain/identifier.h
M +2 -2 language/duchain/indexedstring.h
M +1 -1 language/duchain/namespacealiasdeclaration.h
M +3 -3 language/duchain/parsingenvironment.h
M +4 -2 language/duchain/persistentsymboltable.cpp
M +2 -2 language/duchain/persistentsymboltable.h
M +8 -4 language/duchain/repositories/itemrepository.cpp
M +9 -9 language/duchain/repositories/itemrepository.h
M +3 -1 language/duchain/repositories/stringrepository.h
M +3 -3 language/duchain/repositories/typerepository.cpp
M +1 -1 language/duchain/repositories/typerepository.h
M +2 -2 language/duchain/smartconverter.cpp
M +1 -1 language/duchain/smartconverter.h
M +1 -1 language/duchain/stringhelpers.h
M +1 -1 language/duchain/symboltable.cpp
M +1 -1 language/duchain/symboltable.h
M +7 -5 language/duchain/topducontext.cpp
M +1 -1 language/duchain/topducontext.h
M +5 -4 language/duchain/topducontextdynamicdata.cpp
M +3 -3 language/duchain/topducontextdynamicdata.h
M +2 -2 language/duchain/types/abstracttype.cpp
M +2 -2 language/duchain/types/abstracttype.h
M +7 -7 language/duchain/types/alltypes.h
M +2 -2 language/duchain/types/arraytype.cpp
M +1 -1 language/duchain/types/arraytype.h
M +2 -2 language/duchain/types/constantintegraltype.h
M +2 -2 language/duchain/types/delayedtype.cpp
M +2 -2 language/duchain/types/delayedtype.h
M +2 -2 language/duchain/types/enumerationtype.h
M +2 -2 language/duchain/types/enumeratortype.h
M +2 -2 language/duchain/types/functiontype.cpp
M +3 -3 language/duchain/types/identifiedtype.cpp
M +2 -2 language/duchain/types/identifiedtype.h
M +1 -1 language/duchain/types/indexedtype.cpp
M +1 -1 language/duchain/types/integraltype.cpp
M +1 -1 language/duchain/types/integraltype.h
M +2 -2 language/duchain/types/pointertype.cpp
M +1 -1 language/duchain/types/pointertype.h
M +2 -2 language/duchain/types/referencetype.cpp
M +1 -1 language/duchain/types/referencetype.h
M +2 -2 language/duchain/types/structuretype.cpp
M +1 -1 language/duchain/types/structuretype.h
M +1 -1 language/duchain/types/typeregister.h
M +2 -2 language/duchain/types/typesystem.cpp
M +2 -2 language/duchain/types/typesystem.h
M +4 -4 language/duchain/types/typesystemdata.h
M +3 -3 language/duchain/use.h
M +3 -2 language/duchain/uses.cpp
M +3 -3 language/duchain/uses.h
M +2 -2 language/editor/documentrangeobject.cpp
M +1 -1 language/editor/documentrangeobject_p.h
M +1 -1 language/editor/editorintegratorstatic.h
M +1 -1 language/editor/editorrevisiontracker.cpp
M +1 -1 language/editor/editorrevisiontracker.h
M +6 -3 language/editor/modificationrevision.cpp
M +1 -1 language/editor/modificationrevision.h
M +2 -2 language/interfaces/codecontext.h
M +2 -2 language/interfaces/ilanguagesupport.cpp
M +1 -1 language/interfaces/ilanguagesupport.h
M +2 -2 language/interfaces/iproblem.h
M +0 -7 outputview/CMakeLists.txt
M +5 -5 outputview/outputjob.h
M +0 -11 plugins/bazaar/CMakeLists.txt
M +2 -2 plugins/bazaar/bzrexecutor.cpp
M +2 -2 plugins/bazaar/bzrexecutor.h
M +2 -2 plugins/bazaar/bzrplugin.cpp
M +1 -1 plugins/bazaar/bzrplugin.h
M +1 -11 plugins/bazaar/tests/CMakeLists.txt
M +4 -6 plugins/bazaar/tests/initTest.cpp
M +0 -7 plugins/classbrowser/CMakeLists.txt
M +0 -9 plugins/contextbrowser/CMakeLists.txt
M +13 -13 plugins/contextbrowser/contextbrowser.cpp
M +4 -4 plugins/contextbrowser/contextbrowser.h
M +7 -7 plugins/contextbrowser/contextbrowserview.cpp
M +3 -3 plugins/contextbrowser/contextbrowserview.h
M +0 -9 plugins/cvs/CMakeLists.txt
M +1 -1 plugins/cvs/annotateview.cpp
M +1 -1 plugins/cvs/annotateview.h
M +2 -2 plugins/cvs/checkoutdialog.cpp
M +0 -2 plugins/cvs/cvsfileinfoprovider.h
M +2 -2 plugins/cvs/cvsjob.cpp
M +1 -1 plugins/cvs/cvsjob.h
M +6 -6 plugins/cvs/cvsplugin.cpp
M +2 -2 plugins/cvs/cvsplugin.h
M +1 -1 plugins/cvs/cvsproxy.cpp
M +1 -1 plugins/cvs/cvsproxy.h
M +1 -1 plugins/cvs/diffoptionsdialog.h
M +2 -2 plugins/cvs/importdialog.cpp
M +1 -1 plugins/cvs/updateoptionsdialog.h
M +0 -10 plugins/duchainviewer/CMakeLists.txt
M +15 -14 plugins/duchainviewer/duchainmodel.cpp
M +2 -2 plugins/duchainviewer/duchainmodel.h
M +4 -4 plugins/duchainviewer/duchaintree.cpp
M +2 -2 plugins/duchainviewer/duchaintree.h
M +3 -3 plugins/duchainviewer/duchainviewplugin.cpp
M +1 -1 plugins/duchainviewer/duchainviewplugin.h
M +0 -8 plugins/execute/CMakeLists.txt
M +1 -1 plugins/execute/executeplugin.cpp
M +2 -2 plugins/execute/executeplugin.h
M +0 -5 plugins/filemanager/CMakeLists.txt
M +2 -2 plugins/filemanager/kdevfilemanagerplugin.cpp
M +1 -1 plugins/filemanager/kdevfilemanagerplugin.h
M +0 -6 plugins/genericprojectmanager/CMakeLists.txt
M +4 -4 plugins/genericprojectmanager/genericmanager.cpp
M +2 -2 plugins/genericprojectmanager/genericmanager.h
M +1 -1 plugins/genericprojectmanager/genericprojectmanagerpreferences.h
M +1 -1 plugins/genericprojectmanager/genericprojectmanagersettings.kcfgc
M +0 -11 plugins/git/CMakeLists.txt
M +2 -2 plugins/git/gitexecutor.cpp
M +2 -2 plugins/git/gitexecutor.h
M +5 -5 plugins/git/gitplugin.cpp
M +1 -1 plugins/git/gitplugin.h
M +1 -9 plugins/git/tests/CMakeLists.txt
M +2 -2 plugins/git/tests/initTest.cpp
M +0 -5 plugins/konsole/CMakeLists.txt
M +2 -2 plugins/konsole/kdevkonsoleview.cpp
M +2 -2 plugins/konsole/kdevkonsoleviewplugin.cpp
M +1 -1 plugins/konsole/kdevkonsoleviewplugin.h
M +0 -11 plugins/mercurial/CMakeLists.txt
M +2 -2 plugins/mercurial/hgexecutor.cpp
M +2 -2 plugins/mercurial/hgexecutor.h
M +2 -2 plugins/mercurial/hgplugin.cpp
M +1 -1 plugins/mercurial/hgplugin.h
M +2 -2 plugins/mercurial/tests/initTest.cpp
M +0 -10 plugins/problemreporter/CMakeLists.txt
M +3 -3 plugins/problemreporter/problemhighlighter.cpp
M +3 -3 plugins/problemreporter/problemmodel.cpp
M +1 -1 plugins/problemreporter/problemmodel.h
M +9 -9 plugins/problemreporter/problemreporterplugin.cpp
M +2 -2 plugins/problemreporter/problemreporterplugin.h
M +9 -9 plugins/problemreporter/problemwidget.cpp
M +1 -1 plugins/problemreporter/problemwidget.h
M +0 -9 plugins/projectmanagerview/CMakeLists.txt
M +1 -2 plugins/projectmanagerview/projectbuildsetmodel.cpp
M +2 -2 plugins/projectmanagerview/projectbuildsetwidget.cpp
M +9 -9 plugins/projectmanagerview/projectmanagerview.cpp
M +12 -12 plugins/projectmanagerview/projectmanagerviewplugin.cpp
M +1 -1 plugins/projectmanagerview/projectmanagerviewplugin.h
M +1 -1 plugins/projectmanagerview/projectproxymodel.cpp
M +6 -5 plugins/projectmanagerview/projecttreeview.cpp
M +0 -11 plugins/quickopen/CMakeLists.txt
M +2 -2 plugins/quickopen/customlistquickopen.cpp
M +3 -3 plugins/quickopen/customlistquickopen.h
M +9 -9 plugins/quickopen/duchainitemquickopen.cpp
M +3 -3 plugins/quickopen/duchainitemquickopen.h
M +8 -8 plugins/quickopen/projectfilequickopen.cpp
M +2 -2 plugins/quickopen/projectfilequickopen.h
M +9 -9 plugins/quickopen/projectitemquickopen.cpp
M +1 -1 plugins/quickopen/quickopenmodel.cpp
M +2 -2 plugins/quickopen/quickopenmodel.h
M +14 -14 plugins/quickopen/quickopenplugin.cpp
M +3 -3 plugins/quickopen/quickopenplugin.h
M +0 -5 plugins/snippet/CMakeLists.txt
M +2 -2 plugins/snippet/snippetplugin.cpp
M +1 -1 plugins/snippet/snippetplugin.h
M +0 -6 plugins/standardoutputview/CMakeLists.txt
M +2 -1 plugins/standardoutputview/outputwidget.cpp
M +3 -3 plugins/standardoutputview/standardoutputview.cpp
M +2 -2 plugins/standardoutputview/standardoutputview.h
M +1 -1 plugins/subversion/kdevsvnplugin.cpp
M +2 -2 plugins/subversion/svnaddjob.cpp
M +2 -2 plugins/subversion/svncatjob.cpp
M +2 -2 plugins/subversion/svncheckoutjob.cpp
M +2 -2 plugins/subversion/svnclient.cpp
M +3 -3 plugins/subversion/svnclient.h
M +3 -3 plugins/subversion/svncommitjob.cpp
M +2 -2 plugins/subversion/svncopyjob.cpp
M +2 -2 plugins/subversion/svndiffjob.cpp
M +2 -2 plugins/subversion/svnimportjob.cpp
M +2 -2 plugins/subversion/svninfojob.cpp
M +3 -3 plugins/subversion/svninternaljobbase.cpp
M +1 -1 plugins/subversion/svninternaljobbase.h
M +1 -1 plugins/subversion/svnjobbase.h
M +2 -2 plugins/subversion/svnmovejob.cpp
M +3 -3 plugins/subversion/svnremovejob.cpp
M +3 -3 plugins/subversion/svnrevertjob.cpp
M +2 -2 plugins/subversion/svnstatusjob.cpp
M +3 -3 plugins/subversion/svnupdatejob.cpp
M +0 -3 plugins/teamwork/CMakeLists.txt
M +1 -1 plugins/teamwork/collaborationmanager.cpp
M +1 -1 plugins/teamwork/collaborationmanager.h
M +4 -4 plugins/teamwork/conversationmanager.cpp
M +1 -1 plugins/teamwork/conversationmanager.h
M +9 -9 plugins/teamwork/documentwrapper.cpp
M +4 -4 plugins/teamwork/documentwrapper.h
M +8 -8 plugins/teamwork/editpatch.cpp
M +1 -1 plugins/teamwork/editpatch.h
M +3 -3 plugins/teamwork/filecollaboration.cpp
M +4 -4 plugins/teamwork/filecollaboration.h
M +5 -5 plugins/teamwork/filecollaborationmanager.cpp
M +4 -4 plugins/teamwork/filecollaborationmanager.h
M +2 -2 plugins/teamwork/filecollaborationmessages.cpp
M +3 -3 plugins/teamwork/filecollaborationmessages.h
M +5 -5 plugins/teamwork/filecollaborationsession.cpp
M +4 -4 plugins/teamwork/filecollaborationsession.h
M +1 -1 plugins/teamwork/filesynchronizemessage.cpp
M +3 -3 plugins/teamwork/helpers.cpp
M +1 -1 plugins/teamwork/indocumentmessage.cpp
M +1 -1 plugins/teamwork/indocumentreference.h
M +5 -5 plugins/teamwork/kdevteamwork.cpp
M +2 -2 plugins/teamwork/kdevteamwork.h
M +3 -3 plugins/teamwork/kdevteamwork_client.cpp
M +2 -2 plugins/teamwork/kdevteamwork_client.h
M +1 -1 plugins/teamwork/kdevteamwork_helpers.cpp
M +1 -1 plugins/teamwork/kdevteamwork_helpers.h
M +2 -2 plugins/teamwork/kdevteamwork_messages.cpp
M +5 -5 plugins/teamwork/kdevteamwork_messages.h
M +1 -1 plugins/teamwork/kdevteamwork_messageshower.h
M +2 -2 plugins/teamwork/kdevteamwork_user.cpp
M +2 -2 plugins/teamwork/kdevteamwork_user.h
M +4 -4 plugins/teamwork/kdevteamworkplugin.cpp
M +1 -1 plugins/teamwork/kdevteamworkplugin.h
M +2 -2 plugins/teamwork/kdevutils.cpp
M +0 -4 plugins/teamwork/lib/dynamictext/CMakeLists.txt
M +1 -1 plugins/teamwork/lib/dynamictext/dynamictext.cpp
M +3 -3 plugins/teamwork/lib/dynamictext/dynamictext.h
M +2 -2 plugins/teamwork/lib/dynamictext/dynamictexthelpers.h
M +2 -2 plugins/teamwork/lib/dynamictext/sumtree.h
M +0 -5 plugins/teamwork/lib/network/CMakeLists.txt
M +2 -2 plugins/teamwork/messagehistorymanager.cpp
M +1 -1 plugins/teamwork/messagehistorymanager.h
M +1 -1 plugins/teamwork/messagemanager.cpp
M +3 -3 plugins/teamwork/messagesendmanager.cpp
M +1 -1 plugins/teamwork/messageusertab.h
M +5 -5 plugins/teamwork/patchesmanager.cpp
M +4 -4 plugins/teamwork/patchesmanager.h
M +1 -1 plugins/teamwork/patchmessage.cpp
M +4 -4 plugins/teamwork/patchmessage.h
M +1 -1 plugins/teamwork/qdynamictext.cpp
M +1 -1 plugins/teamwork/qdynamictext.h
M +1 -1 plugins/teamwork/qtserialization.h
M +2 -2 plugins/teamwork/safelogger.h
M +1 -1 plugins/teamwork/safesignaller.cpp
M +2 -2 plugins/teamwork/safesignaller.h
M +1 -1 plugins/teamwork/teamworkfoldermanager.cpp
M +1 -1 plugins/teamwork/teamworkfwd.h
M +1 -1 plugins/teamwork/test.cpp
M +3 -3 plugins/teamwork/vectortimestampeditor.h
M +0 -5 project/CMakeLists.txt
M +1 -1 project/importprojectjob.cpp
M +1 -1 project/projectconfigskeleton.cpp
M +1 -1 project/projectmodel.cpp
M +0 -14 shell/CMakeLists.txt
M +4 -2 shell/core.cpp
M +1 -1 shell/core.h
M +2 -2 shell/documentcontroller.cpp
M +1 -1 shell/documentcontroller.h
M +1 -1 shell/language.cpp
M +1 -1 shell/language.h
M +6 -6 shell/languagecontroller.cpp
M +1 -1 shell/languagecontroller.h
M +1 -1 shell/mainwindow_p.cpp
M +2 -1 shell/partcontroller.cpp
M +2 -1 shell/partcontroller.h
M +1 -1 shell/partdocument.h
M +5 -5 shell/plugincontroller.cpp
M +2 -1 shell/plugincontroller.h
M +1 -1 shell/profileengine.cpp
M +6 -6 shell/project.cpp
M +2 -2 shell/project.h
M +5 -5 shell/projectcontroller.cpp
M +1 -1 shell/projectcontroller.h
M +8 -8 shell/runcontroller.cpp
M +4 -4 shell/runcontroller.h
M +1 -1 shell/savedialog.cpp
M +3 -3 shell/settings/bgpreferences.cpp
M +3 -3 shell/settings/ccpreferences.cpp
M +2 -1 shell/settings/environmentpreferences.cpp
M +0 -1 shell/settings/environmentwidget.h
M +2 -2 shell/settings/projectpreferences.cpp
M +3 -3 shell/settings/runpreferences.cpp
M +1 -1 shell/settings/runpreferences.h
M +2 -2 shell/settings/uipreferences.cpp
M +4 -4 shell/statusbar.cpp
M +9 -7 shell/tests/projectcontrollertest.cpp
M +3 -3 shell/tests/shelldocumentoperationtest.cpp
M +2 -2 shell/textdocument.h
M +1 -1 shell/uicontroller.h
M +0 -2 sublime/CMakeLists.txt
M +0 -5 sublime/examples/CMakeLists.txt
M +0 -4 sublime/tests/CMakeLists.txt
M +2 -2 tests/common/autotestshell.h
M +0 -6 util/CMakeLists.txt
M +0 -7 vcs/CMakeLists.txt
M +2 -2 vcs/dvcs/dvcsjob.cpp
M +2 -1 vcs/dvcs/dvcsjob.h
M +8 -9 vcs/dvcs/dvcsplugin.cpp
M +3 -1 vcs/dvcs/dvcsplugin.h
M +1 -1 vcs/dvcs/idvcsexecutor.h
M +1 -1 vcs/interfaces/icentralizedversioncontrol.h
M +2 -3 vcs/interfaces/idistributedversioncontrol.h
M +2 -5 vcs/models/vcsannotationmodel.cpp
M +2 -1 vcs/vcsannotation.cpp
M +1 -1 vcs/vcsdiff.cpp
M +4 -1 vcs/vcsdiff.h
M +1 -1 vcs/vcsevent.cpp
M +1 -0 vcs/vcslocation.cpp
M +2 -2 vcs/vcsmapping.cpp
M +5 -5 vcs/widgets/vcsannotationwidget.cpp
M +3 -2 vcs/widgets/vcsdiffwidget.cpp
M +5 -4 vcs/widgets/vcseventwidget.cpp
M +0 -6 veritas/CMakeLists.txt
M +0 -6 veritas/coverage/CMakeLists.txt
M +10 -8 veritas/coverage/coverageplugin.cpp
M +1 -1 veritas/coverage/outputview/covoutputdelegate.cpp
M +6 -6 veritas/coverage/outputview/covoutputjob.cpp
M +2 -2 veritas/coverage/outputview/covoutputjob.h
M +1 -1 veritas/coverage/outputview/covoutputmodel.cpp
M +0 -3 veritas/coverage/tests/CMakeLists.txt
M +0 -6 veritas/tests/CMakeLists.txt
M +3 -3 veritas/tests/modelcreation.h
M +1 -1 veritas/tests/proxymodelcommontest.cpp
M +7 -5 veritas/tests/resultsmodeltest.cpp
M +5 -3 veritas/tests/resultsproxymodeltest.cpp
M +5 -4 veritas/tests/runnermodeltest.cpp
M +4 -3 veritas/tests/runnerproxymodeltest.cpp
M +7 -5 veritas/tests/runnerwindowtest.cpp
M +1 -1 veritas/tests/runnerwindowtest.h
M +5 -3 veritas/tests/testexecutortest.cpp
M +4 -2 veritas/tests/testtest.cpp
M +2 -2 veritas/tests/utilstest.cpp
M +2 -2 veritas/tests/viewcontrollercommontest.cpp
More information about the KDevelop-devel
mailing list