Skip to content

Commit

Permalink
xrCore/xr_ini.h: Comments translated to English.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaffeine committed Nov 6, 2015
1 parent 4a5d60a commit 0a1afc7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/xrCore/xr_ini.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ class XRCORE_API CInifile

CLASS_ID r_clsid(LPCSTR S, LPCSTR L)const;
CLASS_ID r_clsid(const shared_str& S, LPCSTR L)const { return r_clsid(*S, L); }
LPCSTR r_string(LPCSTR S, LPCSTR L)const; // îñòàâëÿåò êàâû÷êè
LPCSTR r_string(const shared_str& S, LPCSTR L)const { return r_string(*S, L); } // îñòàâëÿåò êàâû÷êè
shared_str r_string_wb(LPCSTR S, LPCSTR L)const; // óáèðàåò êàâû÷êè
shared_str r_string_wb(const shared_str& S, LPCSTR L)const { return r_string_wb(*S, L); } // óáèðàåò êàâû÷êè
LPCSTR r_string(LPCSTR S, LPCSTR L)const; // Left quotes in place
LPCSTR r_string(const shared_str& S, LPCSTR L)const { return r_string(*S, L); } // Left quotes in place
shared_str r_string_wb(LPCSTR S, LPCSTR L)const; // Remove quotes
shared_str r_string_wb(const shared_str& S, LPCSTR L)const { return r_string_wb(*S, L); } // Remove quotes
u8 r_u8(LPCSTR S, LPCSTR L) const;
u8 r_u8(const shared_str& S, LPCSTR L)const { return r_u8(*S, L); }
u16 r_u16(LPCSTR S, LPCSTR L)const;
Expand Down

0 comments on commit 0a1afc7

Please sign in to comment.