summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Tidy browser_window_refresh_url_bar a bit, ensure the sizes all make sense, ↵Daniel Silverstone2009-03-311-18/+23
| | | | | | that we don't allocate unnecessarily, etc. svn path=/trunk/netsurf/; revision=7007
* Use fragment instead of #fragment in the comment because it does not include ↵Michael Drake2009-03-311-2/+2
| | | | | | the #. svn path=/trunk/netsurf/; revision=7006
* Comment browser_window_refresh_url_bar() and fix some wrap.Michael Drake2009-03-311-22/+40
| | | | svn path=/trunk/netsurf/; revision=7005
* Ensure buffer is big enough for the extra character.Chris Young2009-03-311-1/+1
| | | | svn path=/trunk/netsurf/; revision=7003
* Stop URL bar losing characters on every refreshChris Young2009-03-301-4/+4
| | | | svn path=/trunk/netsurf/; revision=7001
* Update to use browser_window_refresh_url_bar()Chris Young2009-03-301-5/+3
| | | | svn path=/trunk/netsurf/; revision=7000
* Missed a fix for C++ files, .d end up being object files...François Revel2009-03-301-1/+1
| | | | svn path=/trunk/netsurf/; revision=6999
* Change URL bar contents when switching tabs in GTK frontend.John Mark Bell2009-03-303-19/+43
| | | | | | | | Remove fixed-size buffer from core URL string handling. Credit: Mark Benjamin. svn path=/trunk/netsurf/; revision=6998
* Fixed the dep tracking for gcc2, finally... the dependancy_generate_c should ↵François Revel2009-03-291-18/+15
| | | | | | probably be merged now as most dep is done in compile_c... svn path=/trunk/netsurf/; revision=6988
* fix text co-ordinateChris Young2009-03-291-2/+2
| | | | svn path=/trunk/netsurf/; revision=6987
* Squash warningJohn Mark Bell2009-03-291-0/+3
| | | | svn path=/trunk/netsurf/; revision=6986
* Stop screen updates going odd when animated GIFs are in the page.Chris Young2009-03-291-6/+2
| | | | | | Much simpler tests than before too. svn path=/trunk/netsurf/; revision=6985
* Purge WITH_DRAW_EXPORTJohn Mark Bell2009-03-293-12/+0
| | | | svn path=/trunk/netsurf/; revision=6980
* Purge WITH_SAVE_COMPLETEJohn Mark Bell2009-03-296-19/+0
| | | | svn path=/trunk/netsurf/; revision=6979
* Avoid unused variable if targetting RISC OS and the jpeg library has been ↵John Mark Bell2009-03-291-0/+3
| | | | | | built to output BGR. svn path=/trunk/netsurf/; revision=6978
* Aliasing fixesJohn Mark Bell2009-03-291-73/+66
| | | | svn path=/trunk/netsurf/; revision=6977
* Mouse scrollwheel supportChris Young2009-03-281-21/+38
| | | | svn path=/trunk/netsurf/; revision=6976
* Add a note about those lines I commented out earlier.. have remembered why ↵Chris Young2009-03-281-0/+5
| | | | | | | | they were there. Leave them commented out pending a fix. svn path=/trunk/netsurf/; revision=6975
* Avoid potentially unsafe writes through a const pointer.John Mark Bell2009-03-282-16/+30
| | | | svn path=/trunk/netsurf/; revision=6974
* More aliasingJohn Mark Bell2009-03-281-6/+9
| | | | svn path=/trunk/netsurf/; revision=6973
* More aliasingJohn Mark Bell2009-03-281-15/+16
| | | | svn path=/trunk/netsurf/; revision=6972
* Aliasing fun. This is ugly.John Mark Bell2009-03-282-53/+85
| | | | svn path=/trunk/netsurf/; revision=6971
* Stop cursor drawing off the pageChris Young2009-03-282-12/+66
| | | | | | | | Implement gui_window_save_as_link Fix warnings svn path=/trunk/netsurf/; revision=6970
* Remove some checks before redraw, as they only seem to achieve stopping redrawsChris Young2009-03-281-7/+7
| | | | | | happening when we need them. svn path=/trunk/netsurf/; revision=6969
* Fix actual_xChris Young2009-03-281-1/+2
| | | | svn path=/trunk/netsurf/; revision=6968
* Minor fixesChris Young2009-03-283-4/+1
| | | | svn path=/trunk/netsurf/; revision=6967
* Implement a download queue for ARexx-initiated downloads. Working manually, ↵Chris Young2009-03-286-258/+385
| | | | | | | | | | however GummiSurf is causing it to crash for some reason. Split download/save routines off into a new file. svn path=/trunk/netsurf/; revision=6966
* Squash warningJohn Mark Bell2009-03-281-1/+1
| | | | svn path=/trunk/netsurf/; revision=6962
* Aliasing fixesJohn Mark Bell2009-03-281-4/+17
| | | | svn path=/trunk/netsurf/; revision=6961
* Aliasing fixesJohn Mark Bell2009-03-281-2/+3
| | | | svn path=/trunk/netsurf/; revision=6960
* Aliasing fixesJohn Mark Bell2009-03-281-4/+5
| | | | svn path=/trunk/netsurf/; revision=6959
* Aliasing fixesJohn Mark Bell2009-03-281-2/+3
| | | | svn path=/trunk/netsurf/; revision=6958
* Aliasing fixesJohn Mark Bell2009-03-281-2/+3
| | | | svn path=/trunk/netsurf/; revision=6957
* Aliasing fixesJohn Mark Bell2009-03-281-4/+5
| | | | svn path=/trunk/netsurf/; revision=6956
* Aliasing fixesJohn Mark Bell2009-03-281-3/+4
| | | | svn path=/trunk/netsurf/; revision=6955
* Aliasing fixesJohn Mark Bell2009-03-281-2/+3
| | | | svn path=/trunk/netsurf/; revision=6954
* Aliasing fixes.John Mark Bell2009-03-281-2/+3
| | | | svn path=/trunk/netsurf/; revision=6953
* Revert accidental commitJohn Mark Bell2009-03-281-7/+7
| | | | svn path=/trunk/netsurf/; revision=6952
* More aliasing fixes.John Mark Bell2009-03-282-14/+17
| | | | svn path=/trunk/netsurf/; revision=6951
* Make NetSurf look a little closer to the default OS4 themeChris Young2009-03-273-2/+16
| | | | svn path=/trunk/netsurf/; revision=6950
* Improve line plotter.Michael Drake2009-03-271-2/+2
| | | | svn path=/trunk/netsurf/; revision=6949
* More aliasing avoidance/permissionJohn Mark Bell2009-03-271-6/+10
| | | | svn path=/trunk/netsurf/; revision=6948
* More permitted aliasingJohn Mark Bell2009-03-271-2/+3
| | | | svn path=/trunk/netsurf/; revision=6947
* Another wimp_window_state->wimp_open conversion.John Mark Bell2009-03-271-7/+11
| | | | | | Avoid aliasing an int ** and a void **. svn path=/trunk/netsurf/; revision=6946
* Fix off by one at line end.Michael Drake2009-03-272-61/+61
| | | | svn path=/trunk/netsurf/; revision=6945
* Permit aliasing of pointers to wimp_window_state and wimp_open.John Mark Bell2009-03-272-8/+48
| | | | svn path=/trunk/netsurf/; revision=6944
* Draw CSS overflow scrollbars differently. Front ends can override the ↵Michael Drake2009-03-271-88/+172
| | | | | | colours used. svn path=/trunk/netsurf/; revision=6943
* Update build config example comment.Michael Drake2009-03-271-3/+6
| | | | svn path=/trunk/netsurf/; revision=6942
* Ensure the example Makefile.config is just that -- an exampleDaniel Silverstone2009-03-271-0/+0
| | | | svn path=/trunk/netsurf/; revision=6940
* Include the right default build options file.Michael Drake2009-03-271-1/+1
| | | | svn path=/trunk/netsurf/; revision=6939