Changeset 6251
- Timestamp:
- 06/11/08 06:06:39 (6 months ago)
- Files:
-
- 1 modified
-
trunk/licq/src/user.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/licq/src/user.cpp
r6248 r6251 615 615 616 616 licqConf.ReadNum("DefaultGroup", m_nDefaultGroup, 0); 617 if (m_nDefaultGroup >=1024)617 if (m_nDefaultGroup >= 1024) 618 618 m_nDefaultGroup = 0; 619 619 licqConf.ClearFlag(INI_FxFATAL); … … 623 623 char szTemp[MAX_LINE_LEN]; 624 624 licqConf.SetSection("network"); 625 licqConf. ClearFlag(INI_FxFATAL);625 licqConf.SetFlags(0); 626 626 licqConf.ReadStr("DefaultUserEncoding", szTemp, ""); 627 627 SetString(&m_szDefaultEncoding, szTemp); 628 licqConf.SetFlag (INI_FxFATAL);628 licqConf.SetFlags(INI_FxERROR | INI_FxFATAL); 629 629 licqConf.CloseFile(); 630 630
