Resolves: tdf#122633 - Print dialog Preview is Off

By default on now

Change-Id: I7619d290e3dd9032b765057b8878d5dad035eafc
Reviewed-on: https://gerrit.libreoffice.org/66351
Tested-by: Jenkins
Reviewed-by: Heiko Tietze <tietze.heiko@gmail.com>
diff --git a/vcl/source/window/printdlg.cxx b/vcl/source/window/printdlg.cxx
index 982d985..73d7b5b 100644
--- a/vcl/source/window/printdlg.cxx
+++ b/vcl/source/window/printdlg.cxx
@@ -867,10 +867,10 @@ void PrintDialog::readFromSettings()
    // preview box
    aValue = pItem->getValue( "PrintDialog",
                              "HasPreview" );
    if ( aValue.equalsIgnoreAsciiCase("true") )
        mpPreviewBox->Check( true );
    else
    if ( aValue.equalsIgnoreAsciiCase("false") )
        mpPreviewBox->Check( false );
    else
        mpPreviewBox->Check( true );

}