ozone10
779db128ac
GUI Enhancement: Go to Line dialog
...
- optimize dark mode
- simplify code
- fix override warnings
Fix #13665 , close #13666
2023-05-22 13:38:21 +02:00
Don Ho
785453147b
Inialize all memebers of struct (instead of its 1st member) to zero
...
The curly brace initiator in C/C++ is quite confusing (at least to me).
The C style array uses {0} for initializing all the array to 0,
whereas C++ struct uses {0} for initializing only the 1st member's value to 0.
If we want to set all members' value in a struct to 0, we should use {} instread of {0}.
This commit fix the error which initialize only the 1st member's value to 0 in the structures.
Ref:
1. https://docs.microsoft.com/en-us/cpp/cpp/initializing-classes-and-structs-without-constructors-cpp?view=msvc-170
2. https://en.cppreference.com/w/c/language/struct_initialization
2022-02-09 16:41:56 +01:00
Don Ho
961a133a60
Remove 2GB file open restriction for x64 binary
...
Fix #10921 , close #11047
2022-01-25 18:08:05 +01:00
ozone10
f412a2d6f7
Apply dark mode on go to line dialog
...
Fix #10245 , close #10246
2021-07-25 23:36:08 +02:00
mere-human
3cf65ade81
Fix typo in ScitillaComponent directory name
...
Rename ScitillaComponent -> ScintillaComponent.
Git history should be kept because `git mv` was used.
Also change paths in source code.
This was noted in scope of #9403
Close #9450
2021-01-27 05:39:55 +01:00