- 27 Jan, 2019 4 commits
-
-
Milian Wolff authored
-
Milian Wolff authored
-
Milian Wolff authored
Previously there was some space wasted due to padding. By reordering the members, the size goes down from 80byte to 72byte per instance of this class.
-
Milian Wolff authored
This is a generic method that can apply to all our project items, not just file items.
-
- 26 Jan, 2019 2 commits
-
-
Christoph Roick authored
Summary: Adapts the DBus call to the change in DrKonqi commit 9f3cfcff960c. Test Plan: Use the debug button in DrKonqi to attach a crashed application to a debugger in KDevelop. Reviewers: #kdevelop, mwolff Reviewed By: #kdevelop, mwolff Subscribers: mwolff, kdevelop-devel Tags: #kdevelop Differential Revision: https://phabricator.kde.org/D18511
-
Script Kiddy authored
-
- 24 Jan, 2019 3 commits
-
-
Miroslaw Stein authored
Summary: This change adds --indent-after-parens and --indent-continuation support in the custom astyle formatter config. (see: http://astyle.sourceforge.net/astyle.html#_indent-after-parens) Reviewers: #kdevelop, mwolff Reviewed By: #kdevelop, mwolff Subscribers: mwolff, kdevelop-devel Tags: #kdevelop Maniphest Tasks: T10373 Differential Revision: https://phabricator.kde.org/D18371
-
Anton Anikin authored
Summary: Old version has wrong logic - we should always use "kdevexecute" plugin instead any IExecutePlugin instance. New version also checks launch configuration type and starts analysis only for native applications. BUG: 389060 Reviewers: #kdevelop, mwolff Reviewed By: #kdevelop, mwolff Subscribers: mwolff, arrowd, kfunk, kossebau, kdevelop-devel Tags: #kdevelop Differential Revision: https://phabricator.kde.org/D15565
-
Script Kiddy authored
-
- 22 Jan, 2019 1 commit
-
-
Script Kiddy authored
-
- 21 Jan, 2019 3 commits
-
-
Thomas Schöps authored
Without this patch, if both a problem and a declaration are available for a given cursor location, KDevelop would only show the problem tooltip. This makes the declaration tooltip inaccessible, which can be an annoyance. This patch makes it show a combined tooltip instead in this case, allowing to access both the problem(s) and the declaration. Test Plan: Tested manually. Reviewers: #kdevelop, mwolff Reviewed By: #kdevelop, mwolff Subscribers: mwolff, kdevelop-devel Tags: #kdevelop Differential Revision: https://phabricator.kde.org/D18229
-
Thomas Schöps authored
When hovering over a C++ template function, the function argument names were shown incorrectly. For example, for the following function definition: template <int a> void foo(char b, char c) {} The function would be displayed like this in the tooltip: void foo(char a, char b) This is because argument names, different from argument types, are fetched from argumentContext->localDeclarations() for display. In case of template functions, both the template arguments and the function arguments are in this list, which was not accounted for. This diff changes the behavior to count the function arguments from the end of the local declarations instead of the start, which fixes the bug. (Note: I am not sure whether it is possible that the local declarations list also contains other entries. I did not observe this during some short testing. Also, not sure what the situation is for other languages than C++.) Test Plan: Some manual testing. Reviewers: #kdevelop, mwolff Reviewed By: #kdevelop, mwolff Subscribers: aacid, mwolff, kdevelop-devel Tags: #kdevelop Differential Revision: https://phabricator.kde.org/D18218
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 20 Jan, 2019 6 commits
-
-
Friedrich W. H. Kossebau authored
-
Friedrich W. H. Kossebau authored
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
Script Kiddy authored
-
Friedrich W. H. Kossebau authored
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 16 Jan, 2019 4 commits
-
-
Pino Toscano authored
-
Script Kiddy authored
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
Script Kiddy authored
-
- 15 Jan, 2019 11 commits
-
-
René J.V. Bertin authored
CMake already has a default install prefix itself which will be used when KDevelop does not specify one (and which could be non-standard e.g. when CMake is called through a wrapper). Differential Revision: https://phabricator.kde.org/D17255
-
Daniel Mensinger authored
-
Daniel Mensinger authored
-
Daniel Mensinger authored
-
Daniel Mensinger authored
-
Daniel Mensinger authored
-
Daniel Mensinger authored
Summary: This adds basic meson introspection support based on the meson API for 0.50.0 (current meson master branch). This patch also adds a GUI for changing all build options for a build directory. Test Plan: For a new build directory: - Use the development version of meson - Make a new build directory and set the meson executable in the advanced options - The default build options should load after this - Play around with the options - Click OK and manually check with meson configure that the build options are correct For an existing build directory: - Open the meson project configuration - The current options should be complete and match the actual values from meson configure - Changing and aplying changes should also update the meson configuration - Nothing should segfault :) Reviewers: apol Reviewed By: apol Subscribers: apol, flherne, kdevelop-devel Tags: #kdevelop Differential Revision: https://phabricator.kde.org/D18202
-
Script Kiddy authored
-
Aleix Pol Gonzalez authored
-
Aleix Pol Gonzalez authored
Don't start using the sharedpointer at some random point in the lifetime of the object. Make sure we don't parent it, as QSharedPointer will try to delete it eventually as well.
-
Script Kiddy authored
-
- 14 Jan, 2019 3 commits
-
-
Amish Naidu authored
Summary: Activate actions when opening context menu before directly selecting any scratch. Reviewers: #kdevelop, arrowd Reviewed By: arrowd Subscribers: kdevelop-devel Tags: #kdevelop Differential Revision: https://phabricator.kde.org/D18216
-
Kevin Funk authored
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 13 Jan, 2019 2 commits
-
-
Script Kiddy authored
-
Script Kiddy authored
-
- 12 Jan, 2019 1 commit
-
-
Amish Naidu authored
Summary: Add "Run Scratch" action to main window and thus allow configuring it. Reviewers: kfunk Reviewed By: kfunk Subscribers: arrowd, kdevelop-devel Tags: #kdevelop Differential Revision: https://phabricator.kde.org/D17569
-