MCPcopy Create free account
hub / github.com/bailey27/cppcryptfs / ShortName

Method ShortName

cppcryptfs/ui/FolderDialog.cpp:147–156  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

145}
146
147CString CFolderDialog::ShortName(const CString& strName)
148{
149 CString strShort;
150 if (strName.GetLength() <= 35)
151 strShort = strName;
152 else
153 strShort = strName.Left(35) + _T("...");
154
155 return strShort;
156}
157
158void CFolderDialog::OnInitDialog()
159{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected