diff options
Diffstat (limited to 'plugins/BasicHistory')
-rw-r--r-- | plugins/BasicHistory/src/Options.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/BasicHistory/src/Options.cpp b/plugins/BasicHistory/src/Options.cpp index 7981210cc9..da971082be 100644 --- a/plugins/BasicHistory/src/Options.cpp +++ b/plugins/BasicHistory/src/Options.cpp @@ -662,22 +662,22 @@ void Options::LoadTasks() mir_snprintf(buf, "Task_ftpName_%d", i);
DBVARIANT var;
if (!db_get_ws(0, MODULENAME, buf, &var)) {
- to.ftpName = var.ptszVal;
+ to.ftpName = var.pwszVal;
db_free(&var);
}
mir_snprintf(buf, "Task_filterName_%d", i);
if (!db_get_ws(0, MODULENAME, buf, &var)) {
- to.filterName = var.ptszVal;
+ to.filterName = var.pwszVal;
db_free(&var);
}
mir_snprintf(buf, "Task_filePath_%d", i);
if (!db_get_ws(0, MODULENAME, buf, &var)) {
- to.filePath = var.ptszVal;
+ to.filePath = var.pwszVal;
db_free(&var);
}
mir_snprintf(buf, "Task_taskName_%d", i);
if (!db_get_ws(0, MODULENAME, buf, &var)) {
- to.taskName = var.ptszVal;
+ to.taskName = var.pwszVal;
db_free(&var);
}
mir_snprintf(buf, "Task_zipPassword_%d", i);
|