Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
872de529
Kaydet (Commit)
872de529
authored
Mar 20, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
IsQuickJob is never read and FAX# is never written
Change-Id: Id8f852df49b951fa6f5558e7e45018f07a9b104f
üst
8188aa06
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
26 deletions
+0
-26
jobset.hxx
include/vcl/jobset.hxx
+0
-7
print.hxx
include/vcl/print.hxx
+0
-1
padialog.cxx
padmin/source/padialog.cxx
+0
-1
viewprn.cxx
sfx2/source/view/viewprn.cxx
+0
-4
genprnpsp.cxx
vcl/generic/print/genprnpsp.cxx
+0
-5
jobset.cxx
vcl/source/gdi/jobset.cxx
+0
-8
No files found.
include/vcl/jobset.hxx
Dosyayı görüntüle @
872de529
...
...
@@ -46,13 +46,6 @@ public:
OUString
GetPrinterName
()
const
;
OUString
GetDriverName
()
const
;
/* Get/SetValue are used to read/store additional
* Parameters in the job setup that may be used
* by the printer driver. One possible use are phone
* numbers for faxes (which disguise as printers)
*/
void
SetValue
(
const
OUString
&
rKey
,
const
OUString
&
rValue
);
JobSetup
&
operator
=
(
const
JobSetup
&
rJob
);
bool
operator
==
(
const
JobSetup
&
rJobSetup
)
const
;
...
...
include/vcl/print.hxx
Dosyayı görüntüle @
872de529
...
...
@@ -305,7 +305,6 @@ public:
bool
SetJobSetup
(
const
JobSetup
&
rSetup
);
const
JobSetup
&
GetJobSetup
()
const
{
return
maJobSetup
;
}
void
SetJobValue
(
const
OUString
&
rKey
,
const
OUString
&
rValue
)
{
maJobSetup
.
SetValue
(
rKey
,
rValue
);
}
bool
Setup
(
Window
*
pWindow
=
NULL
);
bool
SetPrinterProps
(
const
Printer
*
pPrinter
);
...
...
padmin/source/padialog.cxx
Dosyayı görüntüle @
872de529
...
...
@@ -579,7 +579,6 @@ void PADialog::PrintTestPage()
boost
::
shared_ptr
<
vcl
::
PrinterController
>
pController
(
new
SpaPrinterController
(
pPrinter
)
);
JobSetup
aJobSetup
(
pPrinter
->
GetJobSetup
()
);
aJobSetup
.
SetValue
(
"IsQuickJob"
,
"true"
);
Printer
::
PrintJob
(
pController
,
aJobSetup
);
}
...
...
sfx2/source/view/viewprn.cxx
Dosyayı görüntüle @
872de529
...
...
@@ -618,10 +618,6 @@ void SfxViewShell::ExecPrint( const uno::Sequence < beans::PropertyValue >& rPro
// FIXME: job setup
SfxPrinter
*
pDocPrt
=
GetPrinter
(
false
);
JobSetup
aJobSetup
=
pDocPrt
?
pDocPrt
->
GetJobSetup
()
:
GetJobSetup
();
if
(
bIsDirect
)
aJobSetup
.
SetValue
(
OUString
(
"IsQuickJob"
),
OUString
(
"true"
)
);
Printer
::
PrintJob
(
pController
,
aJobSetup
);
}
...
...
vcl/generic/print/genprnpsp.cxx
Dosyayı görüntüle @
872de529
...
...
@@ -921,11 +921,6 @@ bool PspSalPrinter::StartJob(
m_aTmpFile
=
getTmpName
();
nMode
=
S_IRUSR
|
S_IWUSR
;
::
boost
::
unordered_map
<
OUString
,
OUString
,
OUStringHash
>::
const_iterator
it
;
it
=
pJobSetup
->
maValueMap
.
find
(
OUString
(
"FAX#"
)
);
if
(
it
!=
pJobSetup
->
maValueMap
.
end
()
)
m_aFaxNr
=
it
->
second
;
sal_Int32
nPos
=
0
;
m_bSwallowFaxNo
=
aToken
.
getToken
(
1
,
'='
,
nPos
).
startsWith
(
"swallow"
)
?
true
:
false
;
...
...
vcl/source/gdi/jobset.cxx
Dosyayı görüntüle @
872de529
...
...
@@ -162,14 +162,6 @@ OUString JobSetup::GetDriverName() const
return
OUString
();
}
void
JobSetup
::
SetValue
(
const
OUString
&
rKey
,
const
OUString
&
rValue
)
{
if
(
!
mpData
)
mpData
=
new
ImplJobSetup
();
mpData
->
maValueMap
[
rKey
]
=
rValue
;
}
JobSetup
&
JobSetup
::
operator
=
(
const
JobSetup
&
rJobSetup
)
{
DBG_ASSERT
(
!
rJobSetup
.
mpData
||
(
rJobSetup
.
mpData
->
mnRefCount
)
<
0xFFFE
,
"JobSetup: RefCount overflow"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment