summaryrefslogtreecommitdiff
path: root/frontends/beos/scaffolding.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Use coccinelle to change logging macro calls in c++Vincent Sanders2017-09-061-6/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.cpp');do spatch --c++ --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 memory leak in beos instantiate error pathVincent Sanders2017-03-051-1/+3
|
* haiku: Fix popup menuFrançois Revol2016-11-211-4/+40
| | | | Only the reload entry is enabled for now.
* haiku: Rework menu accelerator handlingFrançois Revol2016-11-211-15/+13
| | | | | Instead of splitting accel keys from the item string, we go the GTK way of using a separate Accel-suffixed string id.
* haiku: catch NetPositive messages also in the WindowFrançois Revol2016-11-211-0/+9
| | | | At least Pe sends them there for its Help menu.
* move key press enums and operations to their own headerVincent Sanders2016-07-011-1/+1
|
* move the public form APIVincent Sanders2016-06-141-3/+3
|
* remove unecessary content header inclusion from beos frontendVincent Sanders2016-06-111-10/+11
|
* missed necessary header for haikuVincent Sanders2016-06-061-0/+1
|
* fixup beos build after content header changesVincent Sanders2016-06-061-0/+1
|
* move plotters header into public APIVincent Sanders2016-05-301-1/+1
|
* move desktop window header into public APIVincent Sanders2016-05-301-1/+1
|
* move netsurf header into public APIVincent Sanders2016-05-301-1/+1
|
* move clipboard header into public APIVincent Sanders2016-05-301-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+2332