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
c6b95953
Kaydet (Commit)
c6b95953
authored
Tem 25, 2011
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix unintendet re-add of JobSetup::GetValue
üst
4f0bb4d2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
15 deletions
+0
-15
jobset.hxx
vcl/inc/vcl/jobset.hxx
+0
-1
print.hxx
vcl/inc/vcl/print.hxx
+0
-1
jobset.cxx
vcl/source/gdi/jobset.cxx
+0
-13
No files found.
vcl/inc/vcl/jobset.hxx
Dosyayı görüntüle @
c6b95953
...
@@ -66,7 +66,6 @@ public:
...
@@ -66,7 +66,6 @@ public:
* by the printer driver. One possible use are phone
* by the printer driver. One possible use are phone
* numbers for faxes (which disguise as printers)
* numbers for faxes (which disguise as printers)
*/
*/
String
GetValue
(
const
String
&
rKey
)
const
;
void
SetValue
(
const
String
&
rKey
,
const
String
&
rValue
);
void
SetValue
(
const
String
&
rKey
,
const
String
&
rValue
);
JobSetup
&
operator
=
(
const
JobSetup
&
rJob
);
JobSetup
&
operator
=
(
const
JobSetup
&
rJob
);
...
...
vcl/inc/vcl/print.hxx
Dosyayı görüntüle @
c6b95953
...
@@ -309,7 +309,6 @@ public:
...
@@ -309,7 +309,6 @@ public:
sal_Bool
SetJobSetup
(
const
JobSetup
&
rSetup
);
sal_Bool
SetJobSetup
(
const
JobSetup
&
rSetup
);
const
JobSetup
&
GetJobSetup
()
const
{
return
maJobSetup
;
}
const
JobSetup
&
GetJobSetup
()
const
{
return
maJobSetup
;
}
String
GetJobValue
(
const
String
&
rKey
)
const
{
return
maJobSetup
.
GetValue
(
rKey
);
}
void
SetJobValue
(
const
String
&
rKey
,
const
String
&
rValue
)
{
maJobSetup
.
SetValue
(
rKey
,
rValue
);
}
void
SetJobValue
(
const
String
&
rKey
,
const
String
&
rValue
)
{
maJobSetup
.
SetValue
(
rKey
,
rValue
);
}
sal_Bool
Setup
(
Window
*
pWindow
=
NULL
);
sal_Bool
Setup
(
Window
*
pWindow
=
NULL
);
...
...
vcl/source/gdi/jobset.cxx
Dosyayı görüntüle @
c6b95953
...
@@ -210,19 +210,6 @@ XubString JobSetup::GetDriverName() const
...
@@ -210,19 +210,6 @@ XubString JobSetup::GetDriverName() const
// -----------------------------------------------------------------------
// -----------------------------------------------------------------------
String
JobSetup
::
GetValue
(
const
String
&
rKey
)
const
{
if
(
mpData
)
{
::
boost
::
unordered_map
<
::
rtl
::
OUString
,
::
rtl
::
OUString
,
::
rtl
::
OUStringHash
>::
const_iterator
it
;
it
=
mpData
->
maValueMap
.
find
(
rKey
);
return
it
!=
mpData
->
maValueMap
.
end
()
?
String
(
it
->
second
)
:
String
();
}
return
String
();
}
// -----------------------------------------------------------------------
void
JobSetup
::
SetValue
(
const
String
&
rKey
,
const
String
&
rValue
)
void
JobSetup
::
SetValue
(
const
String
&
rKey
,
const
String
&
rValue
)
{
{
if
(
!
mpData
)
if
(
!
mpData
)
...
...
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