summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorKavindra Devi Palaraja <kavindra.palaraja@nokia.com>2009-03-31 11:02:15 (GMT)
committerKavindra Devi Palaraja <kavindra.palaraja@nokia.com>2009-03-31 11:03:55 (GMT)
commit665c4c1e587daf3b2880f5f1802a0bb8a3f10e2b (patch)
tree3e60b3b36849b8a7403bb47af47e0c4c36eba654 /doc
parentb311ebf246a0af16f851dd16c92594c238a0048f (diff)
downloadQt-665c4c1e587daf3b2880f5f1802a0bb8a3f10e2b.zip
Qt-665c4c1e587daf3b2880f5f1802a0bb8a3f10e2b.tar.gz
Qt-665c4c1e587daf3b2880f5f1802a0bb8a3f10e2b.tar.bz2
Doc - marking QPrintDialog::printer(), setPrinter() and addButton() as
Unix only functions, part of Qt 3 Support. Task-number: 248752 and 245244 Reviewed-by: Simon Hausmann <simon.hausmann@nokia.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/src/qprintdialog.qdoc32
1 files changed, 20 insertions, 12 deletions
diff --git a/doc/src/qprintdialog.qdoc b/doc/src/qprintdialog.qdoc
index 6cac1c9..a4cd18b 100644
--- a/doc/src/qprintdialog.qdoc
+++ b/doc/src/qprintdialog.qdoc
@@ -39,26 +39,34 @@
**
****************************************************************************/
+#ifdef QT3_SUPPORT
/*!
- \fn QPrinter *QPrintDialog::printer() const
+ \fn QPrinter *QPrintDialog::printer() const
- Returns a pointer to the printer this dialog configures, or 0 if
- this dialog does not operate on any printer.
+ Returns a pointer to the printer this dialog configures, or 0 if
+ this dialog does not operate on any printer.
+
+ This function is available for Unix platforms only.
*/
/*!
- \fn void QPrintDialog::setPrinter(QPrinter *printer, bool pickupSettings)
+ \fn void QPrintDialog::setPrinter(QPrinter *printer, bool pickupSettings)
+
+ Sets this dialog to configure printer \a printer, or no printer if \a printer
+ is null. If \a pickupSettings is true, the dialog reads most of
+ its settings from \a printer. If \a pickupSettings is false (the
+ default) the dialog keeps its old settings.
- Sets this dialog to configure printer \a printer, or no printer if \a printer
- is null. If \a pickupSettings is true, the dialog reads most of
- its settings from \a printer. If \a pickupSettings is false (the
- default) the dialog keeps its old settings.
+ This function is available for Unix platforms only.
*/
/*!
- \fn void QPrintDialog::addButton(QPushButton *button)
+ \fn void QPrintDialog::addButton(QPushButton *button)
+
+ Adds the \a button to the layout of the print dialog. The added
+ buttons are arranged from the left to the right below the
+ last groupbox of the printdialog.
- Adds the \a button to the layout of the print dialog. The added
- buttons are arranged from the left to the right below the
- last groupbox of the printdialog.
+ This function is available for Unix platforms only.
*/
+#endif