mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 03:29:44 -06:00
Adapt to changes in codegen that require specifying the identifier in the codegen::doc function
This commit is contained in:
@@ -59,9 +59,7 @@ namespace {
|
||||
namespace openspace {
|
||||
|
||||
documentation::Documentation HttpSynchronization::Documentation() {
|
||||
documentation::Documentation doc = codegen::doc<Parameters>();
|
||||
doc.id = "http_synchronization";
|
||||
return doc;
|
||||
return codegen::doc<Parameters>("http_synchronization");
|
||||
}
|
||||
|
||||
HttpSynchronization::HttpSynchronization(const ghoul::Dictionary& dict,
|
||||
|
||||
@@ -78,9 +78,7 @@ namespace {
|
||||
namespace openspace {
|
||||
|
||||
documentation::Documentation UrlSynchronization::Documentation() {
|
||||
documentation::Documentation doc = codegen::doc<Parameters>();
|
||||
doc.id = "sync_synchronization_url";
|
||||
return doc;
|
||||
return codegen::doc<Parameters>("sync_synchronization_url");
|
||||
}
|
||||
|
||||
UrlSynchronization::UrlSynchronization(const ghoul::Dictionary& dict,
|
||||
|
||||
@@ -56,9 +56,7 @@ namespace {
|
||||
namespace openspace {
|
||||
|
||||
documentation::Documentation SyncAssetTask::documentation() {
|
||||
documentation::Documentation doc = codegen::doc<Parameters>();
|
||||
doc.id = "sync_asset_task";
|
||||
return doc;
|
||||
return codegen::doc<Parameters>("sync_asset_task");
|
||||
}
|
||||
|
||||
SyncAssetTask::SyncAssetTask(const ghoul::Dictionary& dictionary) {
|
||||
|
||||
Reference in New Issue
Block a user