mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-30 10:38:37 +00:00
c735afd1b3
OpenSource CPAP Analysis Reporter OSCAR is a derivative of SleepyHead version 1.1.0, created when that was abandoned by Mark Watkins. SleepyHead was a cross platform, opensource sleep tracking program for reviewing CPAP and Oximetry data, which are devices used in the treatment of Sleep Disorders like Obstructive Sleep Apnea. PR: 271297
12 lines
420 B
C++
12 lines
420 B
C++
--- statistics.cpp
|
|
+++ statistics.cpp
|
|
@@ -1315,7 +1315,7 @@ void Statistics::printReport(QWidget * parent) {
|
|
|
|
QPrinter printer(QPrinter::ScreenResolution); // ScreenResolution required for graphics sizing
|
|
|
|
-#ifdef Q_OS_LINUX
|
|
+#if defined (Q_OS_LINUX) || defined(Q_OS_FREEBSD)
|
|
printer.setPrinterName("Print to File (PDF)");
|
|
printer.setOutputFormat(QPrinter::PdfFormat);
|
|
QString name = "Statistics";
|