summaryrefslogtreecommitdiff
path: root/frontends/gtk/scaffolding.c
Commit message (Collapse)AuthorAgeFilesLines
* fix gtk 3 deprication warningsVincent Sanders2018-08-261-4/+2
|
* Browser: Rename function to access bw URL.Michael Drake2018-07-231-4/+4
|
* clean up toolbar configuration to be slightly less buggyVincent Sanders2017-12-101-2/+6
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-13/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 remaining doccomment errorsVincent Sanders2017-02-221-42/+173
|
* update gtk frontend to use corewindow local historyVincent Sanders2017-02-171-170/+8
|
* remove redundant global contextVincent Sanders2017-02-151-7/+0
|
* fix plotter mergeVincent Sanders2017-02-121-1/+1
|
* Update GTK plotters to use new APIVincent Sanders2017-02-111-1/+1
|
* convert GTK hotlist to use GTK core windowVincent Sanders2016-08-061-4/+5
|
* rename gtk global history implementationVincent Sanders2016-08-041-1/+1
|
* convert GTK global history to use GTK core windowVincent Sanders2016-08-041-3/+5
|
* cleanup gtk cookie interfaceVincent Sanders2016-07-251-3/+5
| | | | | use gtk_window_present instead of gdk_window_raise and reduce exposed variables and interfaces.
* move key press enums and operations to their own headerVincent Sanders2016-07-011-3/+3
|
* Update content to split public and internal APIVincent Sanders2016-06-061-1/+4
|
* move plotters header into public APIVincent Sanders2016-05-301-1/+1
|
* move desktop window header into public APIVincent Sanders2016-05-301-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+2811