summaryrefslogtreecommitdiff
path: root/vcl/source/window/printdlg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/printdlg.cxx')
-rw-r--r--vcl/source/window/printdlg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/window/printdlg.cxx b/vcl/source/window/printdlg.cxx
index fda6c7bbbd2d..f2780f2eda5e 100644
--- a/vcl/source/window/printdlg.cxx
+++ b/vcl/source/window/printdlg.cxx
@@ -1760,17 +1760,17 @@ void PrintDialog::updateWindowFromProperty( const OUString& i_rProperty )
}
}
-bool PrintDialog::isPrintToFile()
+bool PrintDialog::isPrintToFile() const
{
return ( mpPrinters->GetSelectedEntryPos() == 0 );
}
-bool PrintDialog::isCollate()
+bool PrintDialog::isCollate() const
{
return mpCopyCountField->GetValue() > 1 && mpCollateBox->IsChecked();
}
-bool PrintDialog::hasPreview()
+bool PrintDialog::hasPreview() const
{
return mpPreviewBox->IsChecked();
}