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->SetUnitePages(IsUnitePages());
|
||||||
generator->SetStripOptimization(IsStripOptimization());
|
generator->SetStripOptimization(IsStripOptimization());
|
||||||
generator->SetMultiplier(GetMultiplier());
|
generator->SetMultiplier(GetMultiplier());
|
||||||
generator->SetTestAsPaths(IsTextAsPaths());
|
generator->SetTextAsPaths(IsTextAsPaths());
|
||||||
|
|
||||||
if (IsIgnoreAllFields())
|
if (IsIgnoreAllFields())
|
||||||
{
|
{
|
||||||
|
|
|
@ -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()))
|
||||||
{
|
{
|
||||||
|
|
|
@ -271,7 +271,7 @@ bool VLayoutGenerator::IsTestAsPaths() const
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void VLayoutGenerator::SetTestAsPaths(bool value)
|
void VLayoutGenerator::SetTextAsPaths(bool value)
|
||||||
{
|
{
|
||||||
textAsPaths = value;
|
textAsPaths = value;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user