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->SetStripOptimization(IsStripOptimization());
generator->SetMultiplier(GetMultiplier());
generator->SetTestAsPaths(IsTextAsPaths());
generator->SetTextAsPaths(IsTextAsPaths());
if (IsIgnoreAllFields())
{

View file

@ -5281,7 +5281,7 @@ bool MainWindow::DoExport(const VCommandLinePtr &expParams)
else
{
auto settings = expParams->DefaultGenerator();
settings->SetTestAsPaths(expParams->IsTextAsPaths());
settings->SetTextAsPaths(expParams->IsTextAsPaths());
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;
}

View file

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