diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-02-03 09:19:23 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-02-03 12:25:04 +0100 |
commit | 4f0a5cc84862e83649e933dbde272629c55c1210 (patch) | |
tree | 13439dd15a2dd28e0cc3ea4dc206ed91ad2a6a96 /vcl | |
parent | d1d3b2e7090e71b9f827f43a0da75342d109f0cb (diff) |
cid#1497938 Uninitialized scalar field
Change-Id: Ic551b34069496c683a065997f051037ecabe3b7f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129398
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/print3.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/source/gdi/print3.cxx b/vcl/source/gdi/print3.cxx index f07c123f8f0f..413d2ca2eb56 100644 --- a/vcl/source/gdi/print3.cxx +++ b/vcl/source/gdi/print3.cxx @@ -203,6 +203,7 @@ public: mbOrientationFromUser( false ), mbPrinterModified( false ), meJobState( css::view::PrintableState_JOB_STARTED ), + meUserOrientation( Orientation::Portrait ), mnDefaultPaperBin( -1 ), mnFixedPaperBin( -1 ) {} |