Feed Advanced Search

Sep 25 2018

amhndu requested review of D15743: Fix removal of external scripts.
Sep 25 2018, 10:20 AM · KDevelop
kfunk added a comment to D15605: kdev-astyle : upgrade libastyle to v3.1.

Note: Reported as https://bugs.kde.org/show_bug.cgi?id=399048 -- @Rene: Please push your fix(?) -- looks legit.

Sep 25 2018, 9:12 AM · KDevelop
amhndu updated the summary of D15625: Sublime: Fix crash when changing areas.
Sep 25 2018, 7:13 AM · KDevelop
amhndu updated the summary of D15625: Sublime: Fix crash when changing areas.
Sep 25 2018, 7:09 AM · KDevelop
amhndu updated the diff for D15625: Sublime: Fix crash when changing areas.

Some styling fixes.

Sep 25 2018, 4:10 AM · KDevelop

Sep 24 2018

rjvbb accepted D15625: Sublime: Fix crash when changing areas.

Looks like you nailed it this time.

Sep 24 2018, 7:40 PM · KDevelop
amhndu updated the diff for D15625: Sublime: Fix crash when changing areas.

Forgot to update one qCWarning into qCDebug.

Sep 24 2018, 7:04 PM · KDevelop
amhndu updated the diff for D15625: Sublime: Fix crash when changing areas.

Re-implemented Ideal Layout's minimumSize which accumulates the newly added
minimumSize in Ideal Button.
The previous buggy implementation of minimumSize in the Ideal Layout called the doVerticalLayout
with a zero rect, although the height is passed from a property, but it is never set to anything
non-zero, which is what caused problems with some QtCurve configs.

Sep 24 2018, 7:00 PM · KDevelop
rjvbb added a comment to D15625: Sublime: Fix crash when changing areas.
Then I don't understand the question.
Sep 24 2018, 6:38 PM · KDevelop
amhndu added a comment to D15625: Sublime: Fix crash when changing areas.

It appears this bug is because minimumSize calls doVerticalLayout with a zero rect

Sep 24 2018, 5:24 PM · KDevelop
amhndu added a comment to D15625: Sublime: Fix crash when changing areas.

Then I don't understand the question.

Sep 24 2018, 5:12 PM · KDevelop
rjvbb added a comment to D15625: Sublime: Fix crash when changing areas.

I don't see how that answers my question?

Sep 24 2018, 5:10 PM · KDevelop
amhndu added a comment to D15625: Sublime: Fix crash when changing areas.

If I may: can someone please tell me why it should be impossible that only small items are found, IOW why there would also have to be something to shrink?

Ideally, Layout::sizeHint should tell us the total space the buttons would occupy (given that it sums up the button size hints), comparing that to the rect should make it make it possible to predict.
I've been assuming if the buttons were to all fit, rect.height() should be equal to sizeHint().height()

Sep 24 2018, 5:01 PM · KDevelop
rjvbb added a comment to D15625: Sublime: Fix crash when changing areas.

If I may: can someone please tell me why it should be impossible that only small items are found, IOW why there would also have to be something to shrink?

Sep 24 2018, 4:43 PM · KDevelop
rjvbb added a comment to D15625: Sublime: Fix crash when changing areas.

The reasoning was that Items that have maximumWidth size needn't be shrinked, as that's the maximum size that's allowable.

Sep 24 2018, 4:11 PM · KDevelop
rjvbb added a comment to D15625: Sublime: Fix crash when changing areas.

See also https://bugs.kde.org/show_bug.cgi?id=399025

Sep 24 2018, 3:59 PM · KDevelop
kfunk added a comment to D15450: Sublime: Fix window growing larger by making tool view buttons shrinkable.

Note: Seems to cause https://bugs.kde.org/show_bug.cgi?id=399025

Sep 24 2018, 3:33 PM · KDevelop
rjvbb added a comment to D15625: Sublime: Fix crash when changing areas.

Can you guarantee that rect.width (height) will never be equal to the RHS in the equation from my previous reply?

Sep 24 2018, 2:51 PM · KDevelop
amhndu added a comment to D15625: Sublime: Fix crash when changing areas.

are you sure the comparison should be itemWidth <= maximumWidth and not a simple < instead?

The reasoning was that Items that have maximumWidth size needn't be shrinked, as that's the maximum size that's allowable.

Sep 24 2018, 1:25 PM · KDevelop
rjvbb added a comment to D15625: Sublime: Fix crash when changing areas.

Another thought: are you sure the comparison should be itemWidth <= maximumWidth and not a simple < instead? That ought to address the situation I run into, though I still don't believe it'd be a guarantee that there will never be other situations where all items are considered to be small items.

Sep 24 2018, 12:53 PM · KDevelop
rjvbb added a comment to D15625: Sublime: Fix crash when changing areas.

Interestingly, I'm getting the same issue on Linux (with the same QtCurve style though a slightly different font selection).
Only here it's maximumHeight that is concerned, not the width.

Sep 24 2018, 12:47 PM · KDevelop
amhndu added a comment to D15625: Sublime: Fix crash when changing areas.

if you want to bite in deeper I can share my settings

Sep 24 2018, 12:33 PM · KDevelop
kossebau added a comment to D15625: Sublime: Fix crash when changing areas.
How exactly is maximumWidth calculated to be 0?

How would I know?

Sep 24 2018, 12:04 PM · KDevelop
rjvbb added a comment to D15625: Sublime: Fix crash when changing areas.
How exactly is maximumWidth calculated to be 0?
Sep 24 2018, 11:57 AM · KDevelop
kossebau added a comment to D15625: Sublime: Fix crash when changing areas.

It works and can go in with just one minor change request.

I still need the fallback protection though. I added some additional debug output (see below) which shows what is really going on for me: maximumWidth is calculated to be 0. I haven't tried to figure out if that's an anomaly, but it explains why I'm getting only small items.

This happens only with my QtCurve style; if you want to bite in deeper I can share my settings (and fonts, if needed).

Sep 24 2018, 11:42 AM · KDevelop
rjvbb requested changes to D15625: Sublime: Fix crash when changing areas.

It works and can go in with just one minor change request.

Sep 24 2018, 11:25 AM · KDevelop
kossebau added a comment to D15625: Sublime: Fix crash when changing areas.

Looks good at first glance. The failsafe should work evidently but I'll have to test to be certain if the other fix prevents the situation I ran into. Maybe this afternoon, otherwise tomorrow.

Sep 24 2018, 8:45 AM · KDevelop
rjvbb added a comment to D15694: Make implicit fallthroughs a compiler error, remove unneeded breaks.
As discussed earlier, switch statements do have a weird syntax and I'm completely with you if you don't like it. They are basically a glorified `goto` cascade. The case labels actually behave like `goto` labels in a lot of ways, which is the basis of oddities like Duff's device
Sep 24 2018, 8:27 AM · KDevelop
rjvbb added a comment to D15694: Make implicit fallthroughs a compiler error, remove unneeded breaks.
When it comes to no `break;` after a `return;`, that also matches the idea to not have an `else` after an `return` in the branch before.
Sep 24 2018, 7:48 AM · KDevelop
rjvbb added a comment to D15530: kdev-clang : somewhat more complete ObjC(++) support.
Sure, I am mainly interested here that we use MIME type ids which also accepted elsewhere, and not invent our own here and ignore the rest of the world :)
Once e.g. shared-mime-info has some version accepted, we can then provide fall-back variants in the kdevelop s-m-i files installed.
Sep 24 2018, 7:40 AM · KDevelop

Sep 23 2018

aaronpuchert added a comment to D15694: Make implicit fallthroughs a compiler error, remove unneeded breaks.

After testing the GitHub provider and the QmlJS code completion I'm somewhat confident that these changes are correct, but I want to give the experts on that code a chance to weigh in before I merge this. Now onto the discussion.

Sep 23 2018, 9:21 PM · KDevelop
kossebau added a comment to D15530: kdev-clang : somewhat more complete ObjC(++) support.

Doesn't KDevelop already add (install) a few mimetypes of its own? I think I mentioned before that I do have a .xml file for SMI, adding the x-objc++src definition and I presume that's why I am not seeing mimetype warnings about ObC (I'm seeing others though.)

Installing our own is the best way to be certain the definition is there - cf. the discussion around the astyle library and e.g. Debian Stable.

Sep 23 2018, 8:59 PM · KDevelop
kossebau added a comment to D15694: Make implicit fallthroughs a compiler error, remove unneeded breaks.

I'll point out that we're no longer living with Q_FOREACH and that nothing forbids anyone to provide a less conspicuous pattern than Q_FALLTHROUGH.

Sep 23 2018, 8:25 PM · KDevelop
rjvbb added a comment to D15694: Make implicit fallthroughs a compiler error, remove unneeded breaks.
Can you explain in more detail how an unreachable `break` after a `return` statement makes the code more readable?
Sep 23 2018, 7:33 PM · KDevelop
aaronpuchert added a comment to D15694: Make implicit fallthroughs a compiler error, remove unneeded breaks.

As mentioned on another ticket, I don't like the idea of not putting breaks, no matter how clever the compiler and hard-coded choice of compiler options.

Sep 23 2018, 6:04 PM · KDevelop
rjvbb added a comment to D15694: Make implicit fallthroughs a compiler error, remove unneeded breaks.

As mentioned on another ticket, I don't like the idea of not putting breaks, no matter how clever the compiler and hard-coded choice of compiler options; I don't think you gain anything from it, and it doesn't improve code readability either for me (esp. when switch cases aren't indented w.r.t the switch context, as in the last hunk in plugins/qmljs/codecompletion/context.cpp.
Making it obligatory to add a token confirming that fallthrough is intended is a good idea, though using a largish term in all-caps like Q_FALLTHROUGH also doesn't improve readibilty. And what about the most common type of fallthrough, are we really going to have to write something like the following?

Sep 23 2018, 5:31 PM · KDevelop
aaronpuchert updated the diff for D15694: Make implicit fallthroughs a compiler error, remove unneeded breaks.

Remove comment in plugins/ghprovider/ghproviderwidget.cpp, as the fallthrough is probably intended, and add break in plugins/qmljs/codecompletion/context.cpp, as it is probably not intended. Now the code completion doesn't suggest variables of the same type as the last parameter in functions calls, which seems about right.

Sep 23 2018, 4:58 PM · KDevelop
aaronpuchert updated subscribers of D15694: Make implicit fallthroughs a compiler error, remove unneeded breaks.
Sep 23 2018, 4:42 PM · KDevelop
rjvbb added a comment to D15530: kdev-clang : somewhat more complete ObjC(++) support.

Doesn't KDevelop already add (install) a few mimetypes of its own? I think I mentioned before that I do have a .xml file for SMI, adding the x-objc++src definition and I presume that's why I am not seeing mimetype warnings about ObC (I'm seeing others though.)

Sep 23 2018, 3:59 PM · KDevelop
aaronpuchert added a comment to D15694: Make implicit fallthroughs a compiler error, remove unneeded breaks.

Yes, needs to be included for such source file, because the min Qt dependency version is still 5.5, and Q_FALLTHROUGH was only introduced in 5.8 (see note at http://doc.qt.io/qt-5/qtglobal.html#Q_FALLTHROUGH)

Sep 23 2018, 2:24 PM · KDevelop
kossebau added a comment to D15530: kdev-clang : somewhat more complete ObjC(++) support.

As mentioned on https://phabricator.kde.org/D15532#330528, text/x-objchdr & text/x-objc++src are MIME types no-where defined from what I saw. Which makes things irritating for future code readers, as well as resulting in annpying warnings in the runtime log.
Please keep those MIME types out of this patch, until that has been resolved.

Sep 23 2018, 11:58 AM · KDevelop
kossebau abandoned D14710: Inject default environment group variables into debug process environment..

Closing this, as patch has been abandoned in favour of (landed) D14870

Sep 23 2018, 11:53 AM · KDevelop
kossebau commandeered D14710: Inject default environment group variables into debug process environment..
Sep 23 2018, 11:52 AM · KDevelop
kossebau added a comment to D15532: [Astyle] Add Objective C to list of languages with formatters.

Thanks. Learned about ObjC++ this way... the world is full of strange things :)

Sep 23 2018, 11:12 AM · KDevelop
kossebau added a comment to D15565: Fix bug 389060 (Heaptrack analysis keeps firing /usr/bin/plasmoidviewer).

New version also checks launch configuration type and starts analysis only for native applications.

Sep 23 2018, 10:52 AM · KDevelop
kossebau added a comment to D15694: Make implicit fallthroughs a compiler error, remove unneeded breaks.

@kossebau It seems you did something similar in D6301, maybe you can review this change. Should I also include qtcompat_p.h when Q_FALLTHROUGH is used?

Sep 23 2018, 10:35 AM · KDevelop

Sep 22 2018

aaronpuchert added a comment to D15532: [Astyle] Add Objective C to list of languages with formatters.

I have no (big) problems with a fallthrough attribute, but if it's going to be obligatory I'd want the complementary attribute (the break) to be obligatory too...

Sep 22 2018, 8:39 PM · KDevelop
rjvbb added a comment to D15532: [Astyle] Add Objective C to list of languages with formatters.

I have no (big) problems with a fallthrough attribute, but if it's going to be obligatory I'd want the complementary attribute (the break) to be obligatory too...

Sep 22 2018, 7:05 PM · KDevelop
aaronpuchert updated subscribers of D15694: Make implicit fallthroughs a compiler error, remove unneeded breaks.

@kossebau It seems you did something similar in D6301, maybe you can review this change. Should I also include qtcompat_p.h when Q_FALLTHROUGH is used?

Sep 22 2018, 5:06 PM · KDevelop
aaronpuchert added a comment to D15694: Make implicit fallthroughs a compiler error, remove unneeded breaks.

There are two suspicious fallthroughs, maybe someone with a better understanding than me can comment on that.

Sep 22 2018, 4:52 PM · KDevelop
aaronpuchert requested review of D15694: Make implicit fallthroughs a compiler error, remove unneeded breaks.
Sep 22 2018, 4:50 PM · KDevelop
aaronpuchert added a comment to D15532: [Astyle] Add Objective C to list of languages with formatters.

I prefer to remind myself of such things and that I'm putting it there anyway (because the compiler won't be able to tell me I really forgot to use one, not unless you make some kind of "no break here" statement obligatory).

Sep 22 2018, 2:37 PM · KDevelop
rjvbb added a comment to D15530: kdev-clang : somewhat more complete ObjC(++) support.

You should probably also add a few lines to the custom-definesandincludes plugin.

Sep 22 2018, 8:20 AM · KDevelop
rjvbb added a comment to D15532: [Astyle] Add Objective C to list of languages with formatters.
Eventually we have to compile our code anyway, so aren't we all dependent on the compiler?
Sep 22 2018, 8:14 AM · KDevelop

Sep 21 2018

aaronpuchert added a comment to D15530: kdev-clang : somewhat more complete ObjC(++) support.

You should probably also add a few lines to the custom-definesandincludes plugin.

In a different review I presume?

Sep 21 2018, 9:49 PM · KDevelop
aaronpuchert added a comment to D15532: [Astyle] Add Objective C to list of languages with formatters.

We could activate -Wunreachable-code so the compiler tells you where break isn't needed.

Evidently I was talking about a general principle, not about introducing a dependency on the compiler telling you what (not) to do. If I wanted that I'd be coding in Modula-2 ...

Sep 21 2018, 9:45 PM · KDevelop
kossebau updated the diff for D15606: Fix calling qdbus by using qt5-current name qdbus-qt5.
  • use custom explicit checkToolsInPath code for qdbus variants
  • avoid error print from "which" in kdevelop!
Sep 21 2018, 4:19 PM · KDevelop
kossebau added a comment to D15606: Fix calling qdbus by using qt5-current name qdbus-qt5.

IMO it should just check for both and prefer qdbus-qt5 if available.

Yes, that was my starting patch, but then I got unsure about the great picture.
If going this route, any shell script wizard proposal how to change checkToolsInPath in kdevplatform_shell_environment.sh to check for both variants, without adding too much boilerplate code?

What about this:

qdbus_exe=$(which qdbus-qt5 qdbus 2>/dev/null | head -n1)

if [ -z "${qdbus_exe}" ]; then checkToolsInPath qdbus-qt5; fi

$qdbus_exe $KDEV_DBUS_ID etc.
Sep 21 2018, 4:18 PM · KDevelop
amhndu updated the diff for D15625: Sublime: Fix crash when changing areas.

Oh yes, sorry about that, they say misleading documentation is worse than no documentation :D

Sep 21 2018, 4:10 PM · KDevelop
rjvbb set the repository for D7930: Kdevelop CMake plugin : use canonical paths to build.dir to R32 KDevelop.
Sep 21 2018, 3:32 PM · KDevelop
rjvbb updated the diff for D7930: Kdevelop CMake plugin : use canonical paths to build.dir.

Refactored for the 5.3 branch + completed.

Sep 21 2018, 3:30 PM · KDevelop
kossebau added inline comments to D15625: Sublime: Fix crash when changing areas.
Sep 21 2018, 3:13 PM · KDevelop
kossebau accepted D15625: Sublime: Fix crash when changing areas.

Thanks. Patch fine with me, feature still works.
(and now that I know about it I also see the unused modulo pixels from the maxheight calculation ;) something to be solved on a boring day in need for entertainment)

Sep 21 2018, 3:01 PM · KDevelop
amhndu updated the diff for D15625: Sublime: Fix crash when changing areas.

Add requested comments and warning

Sep 21 2018, 2:22 PM · KDevelop
kossebau added inline comments to D15625: Sublime: Fix crash when changing areas.
Sep 21 2018, 1:06 PM · KDevelop
rjvbb added a comment to D15605: kdev-astyle : upgrade libastyle to v3.1.
"If you have inherited this class to access the formatter, you will need to add a method similar to getPeekStart() in the ASStreamIterator class in astyle_main.h." from http://astyle.sourceforge.net/news.html is the only info I have, which leaves lots of room.
Have you seen any docs for that method?
Sep 21 2018, 12:36 PM · KDevelop
kossebau added a comment to D15605: kdev-astyle : upgrade libastyle to v3.1.

Would this be OK as a fix?

Sep 21 2018, 11:59 AM · KDevelop
rjvbb set the repository for D15530: kdev-clang : somewhat more complete ObjC(++) support to R32 KDevelop.
Sep 21 2018, 10:33 AM · KDevelop
rjvbb updated the diff for D15530: kdev-clang : somewhat more complete ObjC(++) support.

Updated as suggested. No switch yet but a layout that looks more like one.

Sep 21 2018, 10:33 AM · KDevelop
rjvbb added a comment to D15625: Sublime: Fix crash when changing areas.

Looks good at first glance. The failsafe should work evidently but I'll have to test to be certain if the other fix prevents the situation I ran into. Maybe this afternoon, otherwise tomorrow.

Sep 21 2018, 10:30 AM · KDevelop
rjvbb added a comment to D15530: kdev-clang : somewhat more complete ObjC(++) support.

You should probably also add a few lines to the custom-definesandincludes plugin.

Sep 21 2018, 10:02 AM · KDevelop
rjvbb reopened D15605: kdev-astyle : upgrade libastyle to v3.1.

Would this be OK as a fix?

Sep 21 2018, 9:50 AM · KDevelop
rjvbb added a comment to D15605: kdev-astyle : upgrade libastyle to v3.1.

Is there some API dox what one should implement for getPeekStart(), especially which values are valid?

Sep 21 2018, 8:58 AM · KDevelop
rjvbb added a comment to D15532: [Astyle] Add Objective C to list of languages with formatters.

We could activate -Wunreachable-code so the compiler tells you where break isn't needed.

Sep 21 2018, 8:53 AM · KDevelop
kossebau added a comment to D15605: kdev-astyle : upgrade libastyle to v3.1.

With asserts enabled, I get a crash with this on opening the settings or sometimes only when selecting Objective-C in the formatting settings

kdevelop: /home/koder/Kode/kdegit/kf5/extragear/kdevelop/kdevelop/plugins/astyle/3rdparty/libastyle/ASFormatter.cpp:3841: std::__cxx11::string astyle::ASFormatter::peekNextText(const string&, bool, std::shared_ptr<astyle::ASPeekStream>) const: Assertion `sourceIterator->getPeekStart() == 0 || streamArg != nullptr' failed.
Sep 21 2018, 4:25 AM · KDevelop
kossebau added inline comments to D15532: [Astyle] Add Objective C to list of languages with formatters.
Sep 21 2018, 4:16 AM · KDevelop
kossebau added a comment to D15532: [Astyle] Add Objective C to list of languages with formatters.
C is not a subset of C++ (let me point to Mr. Stroustrup who should know it :)

I wouldn't call it that either (it'd be degrading for C ;)), but C++ does inherit from C (and was a layer on top of C in its early days, IIRC with a sort of preprocessor).

In fact, Mr Stroustrup does say basically the same thing:

Except for a few examples [...], C++ is a superset of C.
Sep 21 2018, 4:12 AM · KDevelop
aaronpuchert added a comment to D15530: kdev-clang : somewhat more complete ObjC(++) support.

You should probably also add a few lines to the custom-definesandincludes plugin.

Sep 21 2018, 12:32 AM · KDevelop
aaronpuchert added inline comments to D15532: [Astyle] Add Objective C to list of languages with formatters.
Sep 21 2018, 12:09 AM · KDevelop

Sep 20 2018

rjvbb set the repository for D15530: kdev-clang : somewhat more complete ObjC(++) support to R32 KDevelop.
Sep 20 2018, 8:52 PM · KDevelop
rjvbb updated the diff for D15530: kdev-clang : somewhat more complete ObjC(++) support.

A small additional change to the plugin json, and a request for a bit of help.

Sep 20 2018, 8:51 PM · KDevelop
amhndu updated the diff for D15625: Sublime: Fix crash when changing areas.

Updated diff solves the buttonSpacing issue, but leaving the check for any future edge-cases I might've missed

Sep 20 2018, 7:35 PM · KDevelop
kossebau added a comment to D15625: Sublime: Fix crash when changing areas.

Please also fix the possibly actual bug, which is

const int maximumWidth = rect.width() / _items.size();

and its counterpart not taking the button spacing into account.

Sep 20 2018, 6:24 PM · KDevelop
amhndu added a reviewer for D15625: Sublime: Fix crash when changing areas: KDevelop.
Sep 20 2018, 6:16 PM · KDevelop
amhndu updated subscribers of D15625: Sublime: Fix crash when changing areas.
Sep 20 2018, 6:12 PM · KDevelop
amhndu requested review of D15625: Sublime: Fix crash when changing areas.
Sep 20 2018, 6:11 PM · KDevelop
kossebau closed D15621: Install qtlogo.svg as normal icon, so any QIconEngine can find it.
Sep 20 2018, 2:01 PM · KDevelop
kfunk accepted D15621: Install qtlogo.svg as normal icon, so any QIconEngine can find it.

Thanks for looking into this!

Sep 20 2018, 1:51 PM · KDevelop
kossebau requested review of D15621: Install qtlogo.svg as normal icon, so any QIconEngine can find it.
Sep 20 2018, 1:48 PM · KDevelop
rjvbb added a comment to D15532: [Astyle] Add Objective C to list of languages with formatters.
C is not a subset of C++ (let me point to Mr. Stroustrup who should know it :)
Sep 20 2018, 12:48 PM · KDevelop
kossebau added a comment to D15532: [Astyle] Add Objective C to list of languages with formatters.
... shared-mime-info has this questionable inheritage for C++ and Objective-C from C.

I don't think that's so questionable; doesn't the C++ entry also inherit from C? That would be logical at least historically speaking (and properly written C can still be compiled as C++ AFAIK).

Sep 20 2018, 12:30 PM · KDevelop
rjvbb closed D15532: [Astyle] Add Objective C to list of languages with formatters.
Sep 20 2018, 12:12 PM · KDevelop
rjvbb added a comment to D15532: [Astyle] Add Objective C to list of languages with formatters.
... shared-mime-info has this questionable inheritage for C++ and Objective-C from C.
Sep 20 2018, 12:10 PM · KDevelop
kossebau accepted D15532: [Astyle] Add Objective C to list of languages with formatters.

For some reason the preview uses the "C" highlighting mode for me when ObjC is selected, so the preview has some highlighting issues. That seems a bug with KTextEditor I have to explore more.

Nope, this is actually some bug in KDevelop which should be fixed first, somewhere in`SourceFormatterStyle::modeForMimetype(...)` the wrong mode is chosen. Still digging.

Sep 20 2018, 10:52 AM · KDevelop
rjvbb set the repository for D15532: [Astyle] Add Objective C to list of languages with formatters to R32 KDevelop.
Sep 20 2018, 9:54 AM · KDevelop
rjvbb updated the diff for D15532: [Astyle] Add Objective C to list of languages with formatters.

Updated as requested, waiting for final a-ok.

Sep 20 2018, 9:53 AM · KDevelop
rjvbb added inline comments to D15532: [Astyle] Add Objective C to list of languages with formatters.
Sep 20 2018, 9:52 AM · KDevelop
rjvbb closed D15605: kdev-astyle : upgrade libastyle to v3.1.
Sep 20 2018, 8:34 AM · KDevelop
kfunk requested changes to D15532: [Astyle] Add Objective C to list of languages with formatters.

Please update the Diff according to our requests, then I think this can still go into 5.3 branch. Friedrich, you still agree this could go into 5.3? :)

Sep 20 2018, 6:51 AM · KDevelop
kfunk accepted D15605: kdev-astyle : upgrade libastyle to v3.1.

Go for it, please push to 5.3 branch.

Sep 20 2018, 6:42 AM · KDevelop