Skip to content

Commit c68e264

Browse files
committed
Restored remove strings functionality
1 parent 1e38ffd commit c68e264

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

MPSEngine.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ class MPSEngine : public MPSTransformsContainer
7373
void clear_files_map ();
7474

7575
// remove strings
76-
/*void add_string_to_remove(const QString& rem_str) { m_strings_to_remove.push_back(rem_str); }
77-
const QString& get_string_to_remove_at (int idx) const { return m_strings_to_remove.at(idx); }*/
78-
/*int count_strings_to_remove() const { return m_strings_to_remove.count(); }
79-
void clear_strings_to_remove () { m_strings_to_remove.clear(); }*/
76+
void add_string_to_remove(const QString& rem_str) { m_strings_to_remove.push_back(rem_str); }
77+
const QString& get_string_to_remove_at (int idx) const { return m_strings_to_remove.at(idx); }
78+
int count_strings_to_remove() const { return m_strings_to_remove.count(); }
79+
void clear_strings_to_remove () { m_strings_to_remove.clear(); }
8080
std::wstring remove_strings_from_text (const std::wstring& text);
8181

8282
// renames one file

MemphisNow.vcxproj.user

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup />
44
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
5-
<QtLastBackgroundBuild>2022-07-28T12:43:27.1735723Z</QtLastBackgroundBuild>
5+
<QtLastBackgroundBuild>2022-07-29T15:04:19.7909148Z</QtLastBackgroundBuild>
66
</PropertyGroup>
77
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
8-
<QtLastBackgroundBuild>2022-07-28T12:43:27.2836889Z</QtLastBackgroundBuild>
8+
<QtLastBackgroundBuild>2022-07-29T15:04:19.8533597Z</QtLastBackgroundBuild>
99
</PropertyGroup>
1010
</Project>

0 commit comments

Comments
 (0)