Remove a useless message shown only in debug mode, about page layout file not found
This commit is contained in:
parent
92ac2ac47e
commit
b1489cbe40
|
@ -578,8 +578,8 @@ void WORKSHEET_LAYOUT::SetLayout()
|
|||
|
||||
if( fullFileName.IsEmpty() || !wxFileExists( fullFileName ) )
|
||||
{
|
||||
#ifdef DEBUG
|
||||
if( !wxFileExists( fullFileName ) )
|
||||
#if 0
|
||||
if( !fullFileName.IsEmpty() && !wxFileExists( fullFileName ) )
|
||||
{
|
||||
wxLogMessage( wxT("Page layout file <%s> not found"),
|
||||
fullFileName.GetData() );
|
||||
|
|
Loading…
Reference in New Issue