Typica is a free program for professional coffee roasters. https://typica.us
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

printerselector.cpp 353B

12345678910111213141516171819202122
  1. /*600:*/
  2. #line 45 "./printerselector.w"
  3. #include "printerselector.h"
  4. /*601:*/
  5. #line 53 "./printerselector.w"
  6. PrinterSelector::PrinterSelector():QComboBox(NULL)
  7. {
  8. QList<QPrinterInfo> printers= QPrinterInfo::availablePrinters();
  9. foreach(QPrinterInfo info,printers)
  10. {
  11. addItem(info.printerName());
  12. }
  13. }
  14. /*:601*/
  15. #line 48 "./printerselector.w"
  16. /*:600*/