diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-02-18 22:40:20 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 09:05:40 +0000 |
commit | 9da8283de5c1327a30f9c8f5719a8454d1a0eab9 (patch) | |
tree | 4cc988f3a90c9d88b46c32e067ab17b73c6decf3 /sfx2 | |
parent | 3ba02e9ec03df980803f35c4b16ce8b8ce90cb66 (diff) |
vcl: CUPS printing: notify user if spooling failed
CUPS does not accept jobs for a printer that has been stopped; pop up
an error message in this case instead of silently ignoring failure.
Change-Id: I1bc9120c9c9f438e350c964ed7ef29924a72ce78
(cherry picked from commit cdb405f4e4b168d1e2f6dea9ac985df319a76015)
Reviewed-on: https://gerrit.libreoffice.org/8115
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/view/viewprn.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sfx2/source/view/viewprn.cxx b/sfx2/source/view/viewprn.cxx index 12e5633d3272..0c003ed31a7a 100644 --- a/sfx2/source/view/viewprn.cxx +++ b/sfx2/source/view/viewprn.cxx @@ -339,6 +339,7 @@ void SfxPrinterController::jobFinished( com::sun::star::view::PrintableState nSt mpObjectShell->Broadcast( SfxPrintingHint( nState ) ); switch ( nState ) { + case view::PrintableState_JOB_SPOOLING_FAILED : case view::PrintableState_JOB_FAILED : { // "real" problem (not simply printing cancelled by user) |