https://bugs.kde.org/show_bug.cgi?id=365437
Piotr Mierzwinski <piotr.mierzwin...@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|5.0.0 |5.1.1 --- Comment #2 from Piotr Mierzwinski <piotr.mierzwin...@gmail.com> --- This also happens after using refactoring function ("Rename declaration Ctrl+ Shift+R"), so is possible that refactoring will break the code :/. Sometimes inside of function is put closing curly bracket when not exists matching opening bracket - "lost closing curly bracket". For example such code: if (condition) one_line_of_code; else different one_line_of_code; } renamed_member; couple lines above might be block of code with curly bracket like: if (condition) { one_line_of_code; second_line_of_code; } Lonely curly bracket above is "lost closing curly bracket". Additionally this curly bracket has indention made by spaces where in code all are made by tabs. Of course mentioned curly bracket is not necessary, only breaks code. -- You are receiving this mail because: You are watching all bug changes.