Fix typo.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2019-03-26 17:30:25 +02:00
parent 263b99ff19
commit 335d4e2b81
4 changed files with 4 additions and 4 deletions

View File

@ -592,7 +592,7 @@ void DialogLayoutSettings::DialogAccepted()
generator->SetUnitePages(IsUnitePages()); generator->SetUnitePages(IsUnitePages());
generator->SetStripOptimization(IsStripOptimization()); generator->SetStripOptimization(IsStripOptimization());
generator->SetMultiplier(GetMultiplier()); generator->SetMultiplier(GetMultiplier());
generator->SetTestAsPaths(IsTextAsPaths()); generator->SetTextAsPaths(IsTextAsPaths());
if (IsIgnoreAllFields()) if (IsIgnoreAllFields())
{ {

View File

@ -5281,7 +5281,7 @@ bool MainWindow::DoExport(const VCommandLinePtr &expParams)
else else
{ {
auto settings = expParams->DefaultGenerator(); auto settings = expParams->DefaultGenerator();
settings->SetTestAsPaths(expParams->IsTextAsPaths()); settings->SetTextAsPaths(expParams->IsTextAsPaths());
if (LayoutSettings(*settings.get())) if (LayoutSettings(*settings.get()))
{ {

View File

@ -271,7 +271,7 @@ bool VLayoutGenerator::IsTestAsPaths() const
} }
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------
void VLayoutGenerator::SetTestAsPaths(bool value) void VLayoutGenerator::SetTextAsPaths(bool value)
{ {
textAsPaths = value; textAsPaths = value;
} }

View File

@ -112,7 +112,7 @@ public:
void SetStripOptimization(bool value); void SetStripOptimization(bool value);
bool IsTestAsPaths() const; bool IsTestAsPaths() const;
void SetTestAsPaths(bool value); void SetTextAsPaths(bool value);
signals: signals:
void Start(); void Start();