summaryrefslogtreecommitdiff
path: root/frontends/riscos/corewindow.c
Commit message (Collapse)AuthorAgeFilesLines
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-46/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* rationalise the RISC OS browser window implementationVincent Sanders2017-06-111-0/+1
|
* update RISC OS frontend to use core window for local historyVincent Sanders2017-05-281-13/+37
|
* update riscos frontend for corewindow API changeVincent Sanders2017-05-231-9/+37
|
* clean up some of the doxygen generation warningsVincent Sanders2017-02-191-1/+3
|
* rationalise use of utils/utils.h headerVincent Sanders2017-01-191-1/+1
|
* fix unexpected opening of windows in riscosVincent Sanders2016-12-291-7/+10
| | | | | | closed windows were re-opened in RISC OS because corewindow updates failed to take into account their current state when teh core updated the content size.
* RISC OS: Squash use of uninitialised variable.Michael Drake2016-12-291-1/+1
|
* RISC OS corewindow implementationVincent Sanders2016-12-281-0/+932