View | Details | Raw Unified | Return to issue 61139
Collapse All | Expand All

(-)filter/source/pdf/impdialog.cxx (-6 / +1 lines)
Lines 172-180 ImpPDFTabDialog::ImpPDFTabDialog( Window Link Here
172
//get the CTL (Complex Text Layout) from general options, returns TRUE if we have a CTL font on our hands.
172
//get the CTL (Complex Text Layout) from general options, returns TRUE if we have a CTL font on our hands.
173
    mbUseCTLFont = maConfigI18N.ReadBool( OUString( RTL_CONSTASCII_USTRINGPARAM( "CTLFont" ) ), sal_False );
173
    mbUseCTLFont = maConfigI18N.ReadBool( OUString( RTL_CONSTASCII_USTRINGPARAM( "CTLFont" ) ), sal_False );
174
174
175
//get the CTL (Complex Text Layout) from general options, returns TRUE if we have a CTL font on our hands.
176
    mbUseCTLFont = maConfigI18N.ReadBool( OUString( RTL_CONSTASCII_USTRINGPARAM( "CTLFont" ) ), sal_False );
177
178
    mbUseLosslessCompression = maConfigItem.ReadBool( OUString( RTL_CONSTASCII_USTRINGPARAM( "UseLosslessCompression" ) ), sal_False );
175
    mbUseLosslessCompression = maConfigItem.ReadBool( OUString( RTL_CONSTASCII_USTRINGPARAM( "UseLosslessCompression" ) ), sal_False );
179
    mnQuality = maConfigItem.ReadInt32( OUString( RTL_CONSTASCII_USTRINGPARAM( "Quality" ) ), 90 );
176
    mnQuality = maConfigItem.ReadInt32( OUString( RTL_CONSTASCII_USTRINGPARAM( "Quality" ) ), 90 );
180
    mbReduceImageResolution = maConfigItem.ReadBool(  OUString( RTL_CONSTASCII_USTRINGPARAM( "ReduceImageResolution" ) ), sal_False );
177
    mbReduceImageResolution = maConfigItem.ReadBool(  OUString( RTL_CONSTASCII_USTRINGPARAM( "ReduceImageResolution" ) ), sal_False );
Lines 218-225 ImpPDFTabDialog::ImpPDFTabDialog( Window Link Here
218
    GetOKButton().SetText( OUString( String( ResId( STR_PDF_EXPORT, &rResMgr ) ) ) );
215
    GetOKButton().SetText( OUString( String( ResId( STR_PDF_EXPORT, &rResMgr ) ) ) );
219
//remove the reset button, not needed in this tabbed dialog
216
//remove the reset button, not needed in this tabbed dialog
220
    RemoveResetButton();
217
    RemoveResetButton();
221
//FIXME
218
//FIXME: very, very ugly hack: I don't know how to have the tab pages displayed correctly without this...
222
//very, very ugly hack: I don't know how to have the tab pages displayed correctly without this...
223
    maFlPages.Hide();
219
    maFlPages.Hide();
224
/////////////////
220
/////////////////
225
}
221
}
Lines 685-688 void ImpPDFTabViewerPage::SetFilterConfi Link Here
685
    maCbCenterWindow.Check( paParent->mbCenterWindow );
681
    maCbCenterWindow.Check( paParent->mbCenterWindow );
686
    maCbDispDocTitle.Check( paParent->mbDisplayPDFDocumentTitle );
682
    maCbDispDocTitle.Check( paParent->mbDisplayPDFDocumentTitle );
687
}
683
}
688
(-)filter/source/pdf/impdialog.hxx (-1 lines)
Lines 232-238 class ImpPDFTabViewerPage : public SfxTa Link Here
232
    CheckBox                    maCbHideViewerToolbar;
232
    CheckBox                    maCbHideViewerToolbar;
233
    CheckBox                    maCbHideViewerWindowControls;
233
    CheckBox                    maCbHideViewerWindowControls;
234
234
235
    sal_Bool                    mbUseCTLFont;
236
    ResMgr*                     mpaResMgr;
235
    ResMgr*                     mpaResMgr;
237
236
238
public:
237
public:

Return to issue 61139