summaryrefslogtreecommitdiff
path: root/frontends/amiga/history.c
Commit message (Collapse)AuthorAgeFilesLines
* Hide the message port which is shared amongst all Amiga NetSurf windowsChris Young2019-05-101-1/+1
|
* Use new beep functionChris Young2019-05-101-1/+1
|
* Make screen pointer accesible through an accessor function onlyChris Young2019-05-101-3/+3
|
* remove direct access to gui_window_2's gui_windowChris Young2019-05-081-1/+1
|
* Make gui_window private to gui.cChris Young2019-05-071-1/+1
| | | | TODO: ratonalise these accessors
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* clean up some of the doxygen generation warningsVincent Sanders2017-02-191-1/+5
|
* Split up menu.c into generic and gui_window-specific filesChris Young2017-01-151-0/+1
|
* Fix MenuClass menu creationChris Young2017-01-141-21/+21
|
* Support SimpleRefresh corewindowsChris Young2017-01-081-3/+10
| | | | These queue redraws unlike the main browser window, which seems to work a bit better than redrawing immediately.
* Possibly slightly less but still definitely broken drag handlingChris Young2017-01-071-3/+0
|
* Broken corewindow drag implementationChris Young2017-01-071-0/+47
|
* Migrate global history to corewindowChris Young2017-01-061-14/+391
|
* Ensure variables are declared correctlyChris Young2016-06-021-0/+2
|
* move mouse and pointer state header into public APIVincent Sanders2016-05-301-1/+1
|
* move window header into public APIVincent Sanders2016-05-301-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+41