[Libreoffice-commits] .: vcl/source

David Tardon dtardon at kemper.freedesktop.org
Wed Mar 14 06:24:56 PDT 2012


 vcl/source/gdi/print3.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6d4cca9c22c52b5a7742adc47ebf1a2930e29764
Author: David Tardon <dtardon at redhat.com>
Date:   Wed Mar 14 13:58:37 2012 +0100

    fix setting of paper tray from print dialog (fdo#43932)
    
    This fixes the simple case when all pages are to be printed from the
    same paper tray. The use of this setting is still confusing when there
    is application-set tray for a page (e.g., for a page style in Writer,
    through Format->Page), because the change in Preferences is applied (and
    will be used for pages without application-set tray), but Preferences
    shows the application-set value on second try again...
    
    IOW, it still s---s, but it s---s a bit less .-)

diff --git a/vcl/source/gdi/print3.cxx b/vcl/source/gdi/print3.cxx
index 4824203..817e6d5 100644
--- a/vcl/source/gdi/print3.cxx
+++ b/vcl/source/gdi/print3.cxx
@@ -773,7 +773,7 @@ PrinterController::PageSize vcl::ImplPrinterControllerData::modifyJobSetup( cons
     PrinterController::PageSize aPageSize;
     aPageSize.aSize = mpPrinter->GetPaperSize();
     awt::Size aSetSize, aIsSize;
-    sal_Int32 nPaperBin = mnDefaultPaperBin;
+    sal_Int32 nPaperBin = (mnFixedPaperBin != -1) ? mnFixedPaperBin : mnDefaultPaperBin;
     for( sal_Int32 nProperty = 0, nPropertyCount = i_rProps.getLength(); nProperty < nPropertyCount; ++nProperty )
     {
         if( i_rProps[ nProperty ].Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "PreferredPageSize" ) ) )


More information about the Libreoffice-commits mailing list