summaryrefslogtreecommitdiff
path: root/frontends/amiga/drag.c
Commit message (Collapse)AuthorAgeFilesLines
* Make the window list more privateChris Young2019-05-101-44/+1
| | | | TODO: fix arexx.c to not need it
* Use new beep functionChris Young2019-05-101-3/+2
|
* Make screen pointer accesible through an accessor function onlyChris Young2019-05-101-1/+4
|
* accessor for window from gui_window_2Chris Young2019-05-071-1/+1
|
* Get the shared window's window structure directly from the gui_windowChris Young2019-05-071-2/+2
| | | | In a lot of places gui_window_2 was only being accessed for Window
* Make gui_window private to gui.cChris Young2019-05-071-4/+4
| | | | TODO: ratonalise these accessors
* attempt to fix amiga os3 buildVincent Sanders2019-05-061-0/+2
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* fix errors from cppcheck in amiga frontendVincent Sanders2017-03-031-0/+2
|
* Update content to split public and internal APIVincent Sanders2016-06-061-2/+2
|
* Fix OS3 buildChris Young2016-06-021-0/+7
|
* Make more drag-related global variables privateChris Young2016-06-011-1/+9
|
* Make ami_autoscroll private to drag.cChris Young2016-06-011-9/+12
|
* move mouse and pointer state header into public APIVincent Sanders2016-05-301-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+352