Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-manias committed Oct 16, 2024
1 parent a205daf commit 4701292
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/xml/modules/core.xml
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ typedef struct { EVENTID EventID; OBJECTID TaskID; OBJECTID ProcessID; } evTaskR
<prototype>objTask * CurrentTask()</prototype>
<description>
<p>This function returns the <class name="Task">Task</class> object of the active process.</p>
<p>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.</p>
<p>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.</p>
</description>
<result type="objTask *">Returns a pointer to the current Task object or NULL if failure.</result>
</function>
Expand Down
4 changes: 3 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/document/defs/document.h
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ struct bc_list_end : public entity {
struct bc_table : public entity {
GuardedObject<objVectorPath> path;
GuardedObject<objVectorViewport> viewport;
std::vector<PathCommand> seq;
std::vector<PathCommand> seq; // Commands to be assigned to 'path'
std::vector<tablecol> columns; // Table column management
std::string fill, stroke; // SVG stroke and fill instructions
padding cell_padding; // Spacing inside each cell (margins)
Expand Down
2 changes: 1 addition & 1 deletion src/document/parsing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 4701292

Please sign in to comment.