Revert "Change some RString methods to free functions"

This commit is contained in:
teejusb
2025-06-22 23:03:14 -07:00
parent dfe8b29ef5
commit 53dcbed80d
110 changed files with 619 additions and 588 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ void NotesLoader::GetMainAndSubTitlesFromFullTitle( const RString &sFullTitle, R
size_t iBeginIndex = sFullTitle.find(sep);
if (iBeginIndex != std::string::npos)
{
sMainTitleOut = Left(sFullTitle, static_cast<int>(iBeginIndex));
sMainTitleOut = sFullTitle.Left(static_cast<int>(iBeginIndex));
sSubTitleOut = sFullTitle.substr(iBeginIndex + sep.size(), fullTitleSize - iBeginIndex - sep.size());
return;
}