1
0
Fork 0

Compare commits

...

2 Commits

2 changed files with 5 additions and 3 deletions

4
.gitmodules vendored
View File

@ -1,6 +1,6 @@
[submodule "cmake/backbone"]
path = cmake/backbone
url = git@git.backbone.ws:kolan/cmake.backbone.git
url = https://git.backbone.ws/kolan/cmake.backbone.git
[submodule "util/backbone"]
path = util/backbone
url = git@git.backbone.ws:kolan/cmake.backbone-utils.git
url = https://git.backbone.ws/kolan/cmake.backbone-utils.git

View File

@ -65,7 +65,9 @@ namespace LAview.DataExample {
case "AnotherRequest": return "Another Answer";
case "Manual.SampleRequest": return "Manual Sample Answer";
case "MainChart":
var cache_dir = (host as IHostCore).get_cache_dir ();
var h = host as IHostCore;
assert (h != null);
var cache_dir = h.get_cache_dir ();
// TODO: save picture in path: cache_dir + "MainChart.png";
return "MainChart";