Fix typo.
--HG-- branch : develop
This commit is contained in:
parent
263b99ff19
commit
335d4e2b81
|
@ -592,7 +592,7 @@ void DialogLayoutSettings::DialogAccepted()
|
|||
generator->SetUnitePages(IsUnitePages());
|
||||
generator->SetStripOptimization(IsStripOptimization());
|
||||
generator->SetMultiplier(GetMultiplier());
|
||||
generator->SetTestAsPaths(IsTextAsPaths());
|
||||
generator->SetTextAsPaths(IsTextAsPaths());
|
||||
|
||||
if (IsIgnoreAllFields())
|
||||
{
|
||||
|
|
|
@ -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()))
|
||||
{
|
||||
|
|
|
@ -271,7 +271,7 @@ bool VLayoutGenerator::IsTestAsPaths() const
|
|||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
void VLayoutGenerator::SetTestAsPaths(bool value)
|
||||
void VLayoutGenerator::SetTextAsPaths(bool value)
|
||||
{
|
||||
textAsPaths = value;
|
||||
}
|
||||
|
|
|
@ -112,7 +112,7 @@ public:
|
|||
void SetStripOptimization(bool value);
|
||||
|
||||
bool IsTestAsPaths() const;
|
||||
void SetTestAsPaths(bool value);
|
||||
void SetTextAsPaths(bool value);
|
||||
|
||||
signals:
|
||||
void Start();
|
||||
|
|
Loading…
Reference in New Issue
Block a user