1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00
Commit Graph

10 Commits

Author SHA1 Message Date
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
nowrep
5f5cf7417d [Code] Updated coding style with patched Astyle + normalized signals.
Code was formatted with patched astyle that correctly formats
foreach macro.
Normalize tool is now used to normalize all signal/slots signatures
to normalized format. It saves few reallocations on connections.
2013-03-06 09:08:29 +01:00
nowrep
992c7a4de1 Minor changes in scripts. 2013-01-21 22:38:31 +01:00
nowrep
e59241f525 Fixed file permissions from last commit. 2012-09-17 18:03:30 +02:00
stuarch
e942daa7b4 Update Traditional Chinese Translations 2012-09-17 18:32:43 +08:00
nowrep
af7a041714 Added new plugin: Mouse Gestures.
- setting building plugins as default now
- closes #255
2012-02-24 21:03:44 +01:00
nowrep
d8930197cb Updated scripts to play nice with changed directory structure. 2012-02-23 22:07:05 +01:00
nowrep
37f5d1bb6e Improved Plugin API. Plugins can now receive input events.
- mousePress, mouseRelease, mouseMove
- keyPress, keyRelease
- only WebView class is sending these events now
2012-02-22 18:33:44 +01:00
nowrep
8e8e884968 Removed .orig copies of source files
I hope this will be last ...
2011-11-06 19:46:03 +01:00
nowrep
b6f84d648f Fixing previous commit
Sorry for the mistake, it should be fine now.
2011-11-06 17:09:08 +01:00