Show error when preparing pieces fails.
--HG-- branch : develop
This commit is contained in:
parent
6b6d124cbb
commit
93334c7f7d
|
@ -180,14 +180,14 @@ bool VBank::Prepare()
|
|||
{
|
||||
if (layoutWidth <= 0)
|
||||
{
|
||||
qCDebug(lBank, "Preparing data for layout error: Layout paper sheet <= 0");
|
||||
qCCritical(lBank, "Preparing data for layout error: Layout paper sheet <= 0");
|
||||
prepare = false;
|
||||
return prepare;
|
||||
}
|
||||
|
||||
if (details.isEmpty())
|
||||
{
|
||||
qCDebug(lBank, "Preparing data for layout error: List of details is empty");
|
||||
qCCritical(lBank, "Preparing data for layout error: List of details is empty");
|
||||
prepare = false;
|
||||
return prepare;
|
||||
}
|
||||
|
@ -213,8 +213,8 @@ bool VBank::Prepare()
|
|||
const qint64 square = details.at(i).Square();
|
||||
if (square <= 0)
|
||||
{
|
||||
qCDebug(lBank, "Preparing data for layout error: Detail '%s' square <= 0",
|
||||
qUtf8Printable(details.at(i).GetName()));
|
||||
qCCritical(lBank, "Preparing data for layout error: Detail '%s' square <= 0",
|
||||
qUtf8Printable(details.at(i).GetName()));
|
||||
prepare = false;
|
||||
return prepare;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user