diff --git a/Coding-Style.md b/Coding-Style.md index 020400e..5dbf291 100644 --- a/Coding-Style.md +++ b/Coding-Style.md @@ -6,6 +6,8 @@ The coding style of the project is based on the coding style of [QT](https://www - [QT Coding Conventions](https://wiki.qt.io/Coding_Conventions) - [QT Coding Style](https://wiki.qt.io/Qt_Coding_Style) +**Important:** Note that like the [KDE Frameworks Coding Style](https://community.kde.org/Policies/Frameworks_Coding_Style) we have one exception on top of the Qt one: we use curly braces even when the body of a conditional statement contains only one line. + ## Variable names Member variables should be prefixed with a underscore. For example write `_myClassVariable` instead of `myClassVariable`.