- 25 Şub, 2018 3 kayıt (commit)
-
-
Enrico Tröger yazdı
-
Enrico Tröger yazdı
-
elextr yazdı
* Mention GTK 3 for the first time in HACKING and say how to select.
-
- 24 Şub, 2018 2 kayıt (commit)
-
-
Frank Lanitz yazdı
-
Frank Lanitz yazdı
-
- 19 Şub, 2018 1 kayıt (commit)
-
-
agdo yazdı
Fixed misspellings
-
- 18 Şub, 2018 3 kayıt (commit)
-
-
柳东原 LIU Dongyuan yazdı
-
Frank Lanitz yazdı
-
Frank Lanitz yazdı
-
- 16 Şub, 2018 1 kayıt (commit)
-
-
Colomban Wendling yazdı
-
- 15 Şub, 2018 2 kayıt (commit)
-
-
Frank Lanitz yazdı
-
Frank Lanitz yazdı
-
- 14 Şub, 2018 1 kayıt (commit)
-
-
Abel Serrano Juste yazdı
-
- 13 Şub, 2018 1 kayıt (commit)
-
-
Andrej Herceg yazdı
-
- 11 Şub, 2018 1 kayıt (commit)
-
-
Frank Lanitz yazdı
-
- 05 Şub, 2018 1 kayıt (commit)
-
-
Skif-off yazdı
-
- 26 Ock, 2018 1 kayıt (commit)
-
-
Matthew Brush yazdı
This fixes minor problem which affected C++ plugins since 3e649ddd where they would have to add a the cast themselves.
-
- 18 Ock, 2018 1 kayıt (commit)
-
-
Frank Lanitz yazdı
-
- 13 Ock, 2018 1 kayıt (commit)
-
-
elextr yazdı
Returning large aggregates as values is a potential performance problem, but preventing all aggregate returns is inappropriate because: 1. returning small aggregates that are mostly handled as complete objects as return values often makes code clearer. 2. Modern (well not so modern actually) ABIs allow for small aggregates to be returned in registers, so forcing all returns to memory is actually likely to be slower. 3. if code review does not notice a large aggregate return and nobody notices a performance issue then it doesn't matter
-
- 12 Ock, 2018 5 kayıt (commit)
-
-
Matthew Brush yazdı
-
Matthew Brush yazdı
This was introduced in 1f71ccd4 because the VTE widget's existing button-press handler didn't return `TRUE` and so the event propogated up to the notebook showing both of their context menus.
-
Matthew Brush yazdı
For some reason the TravisCI build has `-Waggregate-return` enabled as an error even though it's completely valid code. Also constify the input `color_name` argument to `load_color` function.
-
Matthew Brush yazdı
* Improve GTK+3 theme loading - Merge geany-3.0.css into geany.css - Load geany-3.20.css to override if runtime version dictates - Load geany.css from app->configdir if it exists. * Add initial documentation for GTK+ CSS theming * Add geany.css file to the `Tools->Configuration Files` menu Also mark such config files as changed if they don't already exist to force the user to save or discard any newly created config files. * Allow customizing message window using GTK+ themes * Improve GTK+3 CSS docs a bit State which classes are meant to be overridden by themes. * Go back to conditionally loading geany-3.0.css It can't be merged into geany.css since GTK+ CSS parser doesn't ignore invalid properties when prefixed with vendor extension (ie. -Gtk). * Don't mark unedited config files as changed They probably should be marked as changed since they don't exist on disk yet, but for the time being leave it how it was. * Fix misuse of CSS ID vs class in manual * Minor colour value tweaks Based on feedback from @b4n
-
Colomban Wendling yazdı
Show status message on attempt to execute empty context action.
-
- 05 Ock, 2018 1 kayıt (commit)
-
-
LarsDW223 yazdı
If a user selects "context action" from the context menu then now the status message 'No context action set.' will be shown. Closes #1641.
-
- 22 Ara, 2017 1 kayıt (commit)
-
-
Matthew Brush yazdı
-
- 21 Ara, 2017 13 kayıt (commit)
-
-
Matthew Brush yazdı
Simply zero-initializes the variable. Requires -O3 optimization level to trigger.
-
Matthew Brush yazdı
Requires -O3 optimization level to trigger the warning. Discussed in and fixes #1683
-
Matthew Brush yazdı
To document when switch cases fall through intentionally, hiding the warning by GCC at the same time. Moved the break statement outside of the if conditional in keybindings.c as I believe this was an actual bug found by GCC's warnings.
-
Matthew Brush yazdı
Where an enumerator was treated as signed.
-
Matthew Brush yazdı
These were introduced in #1470 and a fix was also provided in #1554.
-
Matthew Brush yazdı
TODO: make sure these are actually meant to fall-through.
-
Matthew Brush yazdı
As per the documentation[0], GCC will silence these warnings when the comments are formatted correctly. [0]: https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html
-
Matthew Brush yazdı
-
Matthew Brush yazdı
This is basically a false-positive by GCC since static variables are unambiguously zeroed-out per the language standard, but the workaround is simple enough.
-
Matthew Brush yazdı
-
Matthew Brush yazdı
-
Colomban Wendling yazdı
Add a note for applying the indent settings in the project preferences
-
Colomban Wendling yazdı
Fix the symbols tree hierarchy when several tags have the same name
-
- 19 Ara, 2017 1 kayıt (commit)
-
-
Piotr Orzechowski yazdı
-