summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Doxygen cleanups and documentation additionsVincent Sanders2014-11-1010-31/+44
|
* Doxygen cleanupsVincent Sanders2014-11-105-68/+184
|
* Avoid calling calloc with 0 length data.Vincent Sanders2014-11-102-16/+33
| | | | | | | CERT MEM04-C suggests that zero length allocations behaviour might be surprising so it should be avoided. This adds a check to ensure a zero length allocation will be avoided. Additionally it returns errors to the caller rather than warning directly (in some error paths)
* Fix reference to local variable outside scope (fixes coverity 1251161)Vincent Sanders2014-11-101-1/+1
|
* fix syntax error in gorce visualisation script .Vincent Sanders2014-11-101-3/+3
|
* Desktop doxygen fixesVincent Sanders2014-11-0911-34/+40
|
* Fix warningsChris Young2014-11-091-3/+4
|
* Fix warningChris Young2014-11-091-2/+2
|
* Fix warningsChris Young2014-11-092-11/+13
|
* Fix warningsChris Young2014-11-092-11/+14
|
* Fix warningChris Young2014-11-091-1/+1
|
* Fix warningChris Young2014-11-091-0/+1
|
* Fix warningsChris Young2014-11-091-2/+2
|
* Fix warningsChris Young2014-11-092-2/+4
|
* Fix warningsChris Young2014-11-091-18/+18
|
* Fix warningsChris Young2014-11-091-17/+10
|
* Fix warningsChris Young2014-11-091-13/+14
|
* Fix warningsChris Young2014-11-091-6/+6
|
* Doxygen cleanups and increase DOT_GRAPH_MAX_NODES for some headersVincent Sanders2014-11-092-15/+21
|
* Doxygen fixesVincent Sanders2014-11-096-22/+31
|
* Doxygen cleanupsVincent Sanders2014-11-098-28/+30
|
* remove declaration in parameter list warning in form.hVincent Sanders2014-11-091-0/+1
|
* Fix warningsChris Young2014-11-093-11/+5
|
* Fix warningsChris Young2014-11-091-12/+8
|
* Fix warningsChris Young2014-11-091-9/+7
|
* Fix warningsChris Young2014-11-091-7/+7
|
* Fix warningsChris Young2014-11-092-69/+64
|
* Fix warnings, remove unused code.Chris Young2014-11-093-28/+14
|
* Fix warningChris Young2014-11-091-1/+0
|
* Fix warningsChris Young2014-11-091-9/+7
|
* Don't bug the user if a non-essential library can't be opened - just log it.Chris Young2014-11-091-2/+8
| | | | Also log if the interface can't be obtained. If we've asked for the right library version, this should never fail.
* Merge branch 'chris/remove-libauto'Chris Young2014-11-096-24/+206
|\ | | | | | | Remove dependency on libauto as using it is no longer recommended.
| * Terminate execution if an essential library fails to openChris Young2014-11-093-55/+61
| |
| * Log library open attemptsChris Young2014-11-091-0/+2
| |
| * Open libraries *before* we need them...Chris Young2014-11-091-2/+3
| |
| * All required libsChris Young2014-11-091-2/+96
| |
| * Fix graphics.libraryChris Young2014-11-091-0/+2
| |
| * More libraries, tidy-upChris Young2014-11-093-17/+34
| |
| * Use macros for clarityChris Young2014-11-092-13/+17
| |
| * Fix headersChris Young2014-11-093-5/+8
| |
| * Add new libs file to centrally open/close required libraries, and move a ↵Chris Young2014-11-094-22/+75
| | | | | | | | couple of the existing manual opens to it.
| * remove -lautoChris Young2014-11-091-2/+2
|/
* Continue doxygen error cleanup.Vincent Sanders2014-11-0813-129/+244
|
* fix up more doxygen errorsVincent Sanders2014-11-0811-75/+149
|
* Improve Doxygen documentationVincent Sanders2014-11-0813-37/+50
|
* Fix several doxygen issuesVincent Sanders2014-11-0817-55/+59
|
* remove uneeded html render includeVincent Sanders2014-11-071-1/+0
|
* Improve content encoding information APIVincent Sanders2014-11-078-33/+28
| | | | | Extend the content_get_encoding() API to retrieve the source of the encoding as well as the actual encoding.
* add missing content header to windows guiVincent Sanders2014-11-061-0/+1
|
* Allow content handlers to have debug values set through APIVincent Sanders2014-11-0611-16/+80
| | | | | | | | Previously content handler debugging features were accessed by global variables. This allows the setting of debugging parameters via a content API giving per content control over debugging features. Currently only used by the html content handler to toggle global redraw debugging.