diff --git a/cm/cm1100.cpp b/cm/cm1100.cpp index 8c1b67b39..d708b51d4 100755 --- a/cm/cm1100.cpp +++ b/cm/cm1100.cpp @@ -68,6 +68,16 @@ void TPag_per_cms_configmask::config_loader(TSheet_field& sf, const char* paragr void TPag_per_cms_configmask::config_setter(TSheet_field& sf, const char* paragrafo) { TConfig config("cm1100.ini", paragrafo); + + FOR_EACH_SHEET_ROW (sf, i, row) + { + TToken_string conto("", '.'); + conto.add(row->get(0)); + conto.add(row->get(1)); + conto.add(row->get(2)); + + config.set("conto", conto, NULL, true, i); + } }