~x3lectric/xbmc/svn-trunk

« back to all changes in this revision

Viewing changes to guilib/LocalizeStrings.h

  • Committer: jmarshallnz
  • Date: 2006-03-14 21:08:04 UTC
  • Revision ID: svn-v4:568bbfeb-2a22-0410-94d2-cc84cf5bfa90:trunk/XBMC:5279
 - 14-03-2006 changed: All strings/labels are internally UTF-8 now.  Will almost certainly require rescanning the databases if you use a non-Ascii charset.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
  CLocalizeStrings(void);
19
19
  virtual ~CLocalizeStrings(void);
20
20
  bool Load(const CStdString& strFileName);
21
 
  const wstring& Get(DWORD dwCode) const;
 
21
  const string& Get(DWORD dwCode) const;
22
22
  void Clear();
23
23
protected:
24
 
  map<DWORD, wstring> m_vecStrings;
25
 
  typedef map<DWORD, wstring>::const_iterator ivecStrings;
 
24
  map<DWORD, string> m_vecStrings;
 
25
  typedef map<DWORD, string>::const_iterator ivecStrings;
26
26
};
27
27
 
28
28
/*!