1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 10:12:10 +02:00
falkonOfficial/src
nowrep 6874df57d7 [Coding Style] Edited coding style (use linux style brackets)
Linux style brackets are now used also for source files.
One line blocks can now be without brackets.

Example:

if (test)
    foo();

Multi-line if statements are now written with conditionals (||, &&, ...)
at the end of line. The last line of if body does not ends with closing
bracket, instead the closing bracket is written on separate line.
One line blocks in multi-line if statements should not be without brackets.

Example:

if (test ||
    test2 &&
    test3
   ) {
    foo();
}

[ci skip]
2014-04-05 14:53:45 +02:00
..
lib [Coding Style] Edited coding style (use linux style brackets) 2014-04-05 14:53:45 +02:00
main [Cleanup] Split src/lib/webview into tabwidget, webkit and webtab folders 2014-03-31 14:54:08 +02:00
plugins [Coding Style] Edited coding style (use linux style brackets) 2014-04-05 14:53:45 +02:00
defines.pri [Building] Include defines.pri after Qt modules are added 2014-03-05 19:00:53 +01:00
install.pri [Building] Use QZ_DESTDIR variable for $SRC/bin directory 2014-03-04 15:14:19 +01:00
plugins.pri [Cleanup] Split src/lib/webview into tabwidget, webkit and webtab folders 2014-03-31 14:54:08 +02:00