< prev index next >

src/jdk.incubator.jpackage/share/native/libapplauncher/IniFile.cpp

Print this page

        

*** 187,197 **** bool IniFile::GetSection(const TString SectionName, OrderedMap<TString, TString> &Data) { bool result = false; if (FMap.ContainsKey(SectionName) == true) { ! IniSectionData* section; if (FMap.GetValue(SectionName, section) == true && section != NULL) { OrderedMap<TString, TString> data = section->GetData(); Data.Append(data); result = true; --- 187,197 ---- bool IniFile::GetSection(const TString SectionName, OrderedMap<TString, TString> &Data) { bool result = false; if (FMap.ContainsKey(SectionName) == true) { ! IniSectionData* section = NULL; if (FMap.GetValue(SectionName, section) == true && section != NULL) { OrderedMap<TString, TString> data = section->GetData(); Data.Append(data); result = true;
< prev index next >