summaryrefslogtreecommitdiff
path: root/frontends/riscos/hotlist.c
Commit message (Collapse)AuthorAgeFilesLines
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done @@ expression E; @@ -LOG(E); +NSLOG(netsurf, INFO, E); @@ expression E, E1; @@ -LOG(E, E1); +NSLOG(netsurf, INFO, E, E1); @@ expression E, E1, E2; @@ -LOG(E, E1, E2); +NSLOG(netsurf, INFO, E, E1, E2); @@ expression E, E1, E2, E3; @@ -LOG(E, E1, E2, E3); +NSLOG(netsurf, INFO, E, E1, E2, E3); @@ expression E, E1, E2, E3, E4; @@ -LOG(E, E1, E2, E3, E4); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4); @@ expression E, E1, E2, E3, E4, E5; @@ -LOG(E, E1, E2, E3, E4, E5); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5); @@ expression E, E1, E2, E3, E4, E5, E6; @@ -LOG(E, E1, E2, E3, E4, E5, E6); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6); @@ expression E, E1, E2, E3, E4, E5, E6, E7; @@ -LOG(E, E1, E2, E3, E4, E5, E6, E7); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
* RISC OS: Ensure core windows are fully initialised.Michael Drake2017-06-111-1/+1
|
* RISC OS: Update for core hotlist API change.Michael Drake2017-04-251-1/+1
|
* RISC OS: Fix hotlist save.Michael Drake2016-12-291-1/+1
| | | | | | | | | | | The read and write paths for hotlist are different: #define CHOICES_PREFIX "<Choices$Write>.WWW.NetSurf." NSOPTION_STRING(hotlist_path, "NetSurf:Hotlist") NSOPTION_STRING(hotlist_save, CHOICES_PREFIX "Hotlist") This switches to using hotlist_save for writing.
* RISC OS: Update for new hotlist API.Michael Drake2016-12-291-3/+2
| | | | This allows the hotlist backend to work before the hotlist window opens.
* Revert "RISC OS: Squash unused variable."Vincent Sanders2016-12-291-0/+2
| | | | This reverts commit 7aa1dd601e40d0684efbdd53b6ce5109846fcc37.
* Revert "RISC OS: Ensure core's hotlist_init is called on startup."Michael Drake2016-12-291-11/+10
| | | | This reverts commit 743637a8d2105df6ffc464a3cb4753cdc8c1401f.
* RISC OS: Squash unused variable.Michael Drake2016-12-291-2/+0
|
* RISC OS: Ensure core's hotlist_init is called on startup.Michael Drake2016-12-291-10/+11
| | | | | | Until the core hotlist_init is called, it is impossible to add pages to the hotlist. This means we need to ensure it is called on startup, rather than when first showing the hotlist.
* Update RISC OS hotlist to use core window interfaceVincent Sanders2016-12-281-386/+475
|
* move key press enums and operations to their own headerVincent Sanders2016-07-011-1/+1
|
* remove unecessary textinput header use from hotlist headerVincent Sanders2016-06-301-0/+1
|
* msplit public url database API out for frontendsVincent Sanders2016-06-131-2/+3
|
* remove unecessary risc os frontend usage of content headersVincent Sanders2016-06-101-7/+6
|
* move window header into public APIVincent Sanders2016-05-301-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+737