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
514433a8
Kaydet (Commit)
514433a8
authored
Nis 16, 2015
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
export and fix pretty printers for calc unit tests
Change-Id: Ifa5d097e3c09fa0c96339b4eb6fd2be81516856d
üst
915303a7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
qahelper.cxx
sc/qa/unit/helper/qahelper.cxx
+1
-1
qahelper.hxx
sc/qa/unit/helper/qahelper.hxx
+5
-5
No files found.
sc/qa/unit/helper/qahelper.cxx
Dosyayı görüntüle @
514433a8
...
@@ -62,7 +62,7 @@ std::ostream& operator<<(std::ostream& rStrm, const ScRangeList& rList)
...
@@ -62,7 +62,7 @@ std::ostream& operator<<(std::ostream& rStrm, const ScRangeList& rList)
std
::
ostream
&
operator
<<
(
std
::
ostream
&
rStrm
,
const
Color
&
rColor
)
std
::
ostream
&
operator
<<
(
std
::
ostream
&
rStrm
,
const
Color
&
rColor
)
{
{
rStrm
<<
"Color: R:"
<<
rColor
.
GetRed
()
<<
" G:"
<<
rColor
.
GetGreen
()
<<
" B: << rColor.GetBlue()"
;
rStrm
<<
"Color: R:"
<<
(
int
)
rColor
.
GetRed
()
<<
" G:"
<<
(
int
)
rColor
.
GetGreen
()
<<
" B: "
<<
(
int
)
rColor
.
GetBlue
()
;
return
rStrm
;
return
rStrm
;
}
}
...
...
sc/qa/unit/helper/qahelper.hxx
Dosyayı görüntüle @
514433a8
...
@@ -97,15 +97,15 @@ struct FileFormat {
...
@@ -97,15 +97,15 @@ struct FileFormat {
// Printers for the calc data structures. Needed for the EQUAL assertion
// Printers for the calc data structures. Needed for the EQUAL assertion
// macros from CPPUNIT.
// macros from CPPUNIT.
std
::
ostream
&
operator
<<
(
std
::
ostream
&
rStrm
,
const
ScAddress
&
rAddr
);
SCQAHELPER_DLLPUBLIC
std
::
ostream
&
operator
<<
(
std
::
ostream
&
rStrm
,
const
ScAddress
&
rAddr
);
std
::
ostream
&
operator
<<
(
std
::
ostream
&
rStrm
,
const
ScRange
&
rRange
);
SCQAHELPER_DLLPUBLIC
std
::
ostream
&
operator
<<
(
std
::
ostream
&
rStrm
,
const
ScRange
&
rRange
);
std
::
ostream
&
operator
<<
(
std
::
ostream
&
rStrm
,
const
ScRangeList
&
rList
);
SCQAHELPER_DLLPUBLIC
std
::
ostream
&
operator
<<
(
std
::
ostream
&
rStrm
,
const
ScRangeList
&
rList
);
std
::
ostream
&
operator
<<
(
std
::
ostream
&
rStrm
,
const
Color
&
rColor
);
SCQAHELPER_DLLPUBLIC
std
::
ostream
&
operator
<<
(
std
::
ostream
&
rStrm
,
const
Color
&
rColor
);
std
::
ostream
&
operator
<<
(
std
::
ostream
&
rStrm
,
const
OpCode
&
rCode
);
SCQAHELPER_DLLPUBLIC
std
::
ostream
&
operator
<<
(
std
::
ostream
&
rStrm
,
const
OpCode
&
rCode
);
// Why is this here and not in osl, and using the already existing file
// Why is this here and not in osl, and using the already existing file
// handling APIs? Do we really want to add arbitrary new file handling
// handling APIs? Do we really want to add arbitrary new file handling
...
...
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