diff --git a/docs/xml/modules/core.xml b/docs/xml/modules/core.xml index e56cf07fe..5cd5200f4 100644 --- a/docs/xml/modules/core.xml +++ b/docs/xml/modules/core.xml @@ -524,7 +524,7 @@ typedef struct { EVENTID EventID; OBJECTID TaskID; OBJECTID ProcessID; } evTaskR objTask * CurrentTask()

This function returns the Task object of the active process.

-

If there is a legitimate circumstance where there is no current task (e.g. if the function is called during Core initialisation) then the "system task" may be returned, which has ownership of Core resources.

+

If there is a legitimate circumstance where there is no current task (e.g. if this function is called during Core initialisation) then the "system task" may be returned, which has ownership of Core resources.

Returns a pointer to the current Task object or NULL if failure. diff --git a/readme.md b/readme.md index 687ee9909..55148ba44 100644 --- a/readme.md +++ b/readme.md @@ -97,7 +97,9 @@ A successful build and installation will create a `parasol` command tool, which ## 4. Next Steps -Full documentation for developers is available online from our [main website](https://www.parasol.ws). +The [Wiki](https://github.com/parasol-framework/parasol/wiki) provides up-to-date documentation on most facets of the framework. + +Detailed technical documentation for the Parasol APIs is available online at the [main website](https://www.parasol.ws). ## 5. Source Code Licensing diff --git a/src/document/defs/document.h b/src/document/defs/document.h index 20ddd8d38..eef9f9c9e 100644 --- a/src/document/defs/document.h +++ b/src/document/defs/document.h @@ -662,7 +662,7 @@ struct bc_list_end : public entity { struct bc_table : public entity { GuardedObject path; GuardedObject viewport; - std::vector seq; + std::vector seq; // Commands to be assigned to 'path' std::vector columns; // Table column management std::string fill, stroke; // SVG stroke and fill instructions padding cell_padding; // Spacing inside each cell (margins) diff --git a/src/document/parsing.cpp b/src/document/parsing.cpp index eb464cfb2..11caaf43f 100644 --- a/src/document/parsing.cpp +++ b/src/document/parsing.cpp @@ -3657,7 +3657,7 @@ void parser::tag_table(XMLTag &Tag) i = end + 1; } - unsigned i; + size_t i; for (i=0; (i < table.columns.size()) and (i < list.size()); i++) { table.columns[i].preset_width = strtod(list[i].c_str(), NULL); if (list[i].find_first_of('%') != std::string::npos) {