Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | [CORE] - Silence annoying compiler warnings because wrong pointer assignation, dedicated to 'fxm' in FreeBASIC forums. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
49b5f3d0973f0451d2af97ee96f2fc86 |
User & Date: | julcar 2021-10-09 08:38:01.062 |
Context
2021-10-12
| ||
08:25 | [LANGUAGES] - Add module_publisher_post_read_more for publisher module. check-in: fa1c61d1bc user: julcar tags: trunk | |
2021-10-09
| ||
08:38 | [CORE] - Silence annoying compiler warnings because wrong pointer assignation, dedicated to 'fxm' in FreeBASIC forums. check-in: 49b5f3d097 user: julcar tags: trunk | |
2021-10-08
| ||
09:17 | [CORE] - Addendum to last commit: don't forget the widgets. check-in: b4dc66e177 user: julcar tags: trunk | |
Changes
Changes to core/modules.bas.
︙ | |||
21 22 23 24 25 26 27 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | - + - + | SUB LoadModule(ModuleName AS STRING) DIM ModuleFrontEnd AS SUB() DIM ModuleIndex AS LONG = UBOUND(CompiledModules) IF ModuleIndex >= 0 THEN FOR i AS LONG = 0 TO ModuleIndex IF ModuleName = CompiledModules(i).Name THEN |
︙ | |||
63 64 65 66 67 68 69 | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | - + | SubKey = MID(Key, INSTR(Key, "_") + 1, LEN(Key)) ModuleRequest = LEFT(Key, INSTR(Key, "_") - 1) END IF DIM ModuleIndex AS LONG = UBOUND(CompiledModules) IF ModuleIndex >= 0 THEN FOR i AS LONG = 0 TO ModuleIndex IF ModuleRequest = CompiledModules(i).Name THEN |
︙ | |||
89 90 91 92 93 94 95 | 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | - + | END SUB SUB RunLoaders() DIM LoaderEntry AS SUB() DIM LoaderIndex AS LONG = UBOUND(ArrayLoaders) IF LoaderIndex >= 0 THEN FOR i AS LONG = 0 TO LoaderIndex |
Changes to core/widgets.bas.
︙ | |||
10 11 12 13 14 15 16 | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | - + | FUNCTION LoadWidget(WidgetName AS STRING) AS STRING DIM WidgetLoader AS FUNCTION() AS STRING DIM WidgetIndex AS LONG = UBOUND(ArrayWidgets) + 1 IF WidgetIndex >= 0 THEN FOR i AS LONG = 0 TO WidgetIndex IF WidgetName = ArrayWidgets(i).Name THEN |
︙ |