diff options
| author | Manolo Gouy <Manolo> | 2011-01-09 14:08:58 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2011-01-09 14:08:58 +0000 |
| commit | eec2fbea89c624191b20711c41b863b8949f9b68 (patch) | |
| tree | c126dd93b7527c489202e217f8082afee56e25e5 /src | |
| parent | d96789d93195cad9f15b63d72b26295b746e4a39 (diff) | |
Corrected typos
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8224 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_Quartz_Printer.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl_Quartz_Printer.mm b/src/Fl_Quartz_Printer.mm index 23bef5c55..200b41dd6 100644 --- a/src/Fl_Quartz_Printer.mm +++ b/src/Fl_Quartz_Printer.mm @@ -92,7 +92,7 @@ int Fl_System_Printer::start_job (int pagecount, int *frompage, int *topage) status = PMCreatePageFormat(&pageFormat); status = PMSessionDefaultPageFormat(printSession, pageFormat); if (status != noErr) return 1; - // get pointer to the PMSessionPageSetupDialog Carbon fucntion + // get pointer to the PMSessionPageSetupDialog Carbon function typedef OSStatus (*dialog_f)(PMPrintSession, PMPageFormat, Boolean *); static dialog_f f = NULL; if (!f) f = (dialog_f)Fl_X::get_carbon_function("PMSessionPageSetupDialog"); @@ -106,7 +106,7 @@ int Fl_System_Printer::start_job (int pagecount, int *frompage, int *topage) status = PMSessionDefaultPrintSettings (printSession, printSettings); if (status != noErr) return 1; PMSetPageRange(printSettings, 1, (UInt32)kPMPrintAllPages); - // get pointer to the PMSessionPrintDialog Carbon fucntion + // get pointer to the PMSessionPrintDialog Carbon function typedef OSStatus (*dialog_f2)(PMPrintSession, PMPrintSettings, PMPageFormat, Boolean *); static dialog_f2 f2 = NULL; if (!f2) f2 = (dialog_f2)Fl_X::get_carbon_function("PMSessionPrintDialog"); |
