diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-06-12 15:35:51 +0200 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-06-12 15:35:51 +0200 |
| commit | 2b430aa951068b5417bfa67d1541e911400adfd2 (patch) | |
| tree | 41c4df78469c260ebc8500168948088673ed43b7 | |
| parent | 7d7edcf50fc23ffac2c3abba66f981629b000150 (diff) | |
Fix "Cannot link if built with OPTION_PRINT_SUPPORT=OFF" (#734)
| -rw-r--r-- | src/Fl_Printer.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Fl_Printer.cxx b/src/Fl_Printer.cxx index 877d4b648..dc5509206 100644 --- a/src/Fl_Printer.cxx +++ b/src/Fl_Printer.cxx @@ -40,6 +40,8 @@ void Fl_Printer::untranslate(void) {} int Fl_Printer::end_page (void) {return 1;} void Fl_Printer::end_job (void) {} void Fl_Printer::set_current(void) {} +void Fl_PostScript_File_Device::end_current(void) {} +void Fl_PostScript_File_Device::set_current(void) {} bool Fl_Printer::is_current(void) {return false;} Fl_Printer::~Fl_Printer(void) {} |
