summaryrefslogtreecommitdiff
path: root/frontends/riscos/dialog.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix open url dialog not coping with invalid url by using the omnibox helperVincent Sanders2020-05-241-27/+24
|
* add page information core window handler to RISC OSVincent Sanders2020-05-221-0/+4
|
* chore: Perform sslcert_viewer-ectomyDaniel Silverstone2020-05-221-4/+0
| | | | | | | | | | | This removes the sslcert_viewer entirely from the code. Where possible I've also trimmed out of frontends any code I think should not be present. Frontends should check and remove any further references that I have failed to catch. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* fix parent pointer use after free in RISC OS dialog handlingJohn-Mark Bell2019-12-221-1/+5
|
* remove login from riscos frontendVincent Sanders2019-08-141-4/+0
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-17/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-1/+5
|
* fix risc os dialog opening relative to parentVincent Sanders2017-05-281-4/+6
|
* RISC OS: Squash unused variable.Michael Drake2016-12-291-3/+2
| | | | | This has been redundant since frames were moved into the core. The all frames checkbox should be removed from the scale dialogue.
* Update RISC OS ssl certificate viewer to core window interfaceVincent Sanders2016-12-281-1/+1
|
* Update RISC OS global history to use core window interfaceVincent Sanders2016-12-281-1/+1
|
* Update RISC OS hotlist to use core window interfaceVincent Sanders2016-12-281-1/+1
|
* Update RISC OS cookie window to use core window interfaceVincent Sanders2016-12-281-1/+1
|
* move desktop window header into public APIVincent Sanders2016-05-301-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+816