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
e8bbb768
Kaydet (Commit)
e8bbb768
authored
Eki 09, 2011
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ensure correct export size type in stream operation
üst
2d25e3c3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
40 additions
and
1 deletion
+40
-1
borderline_test.cxx
editeng/qa/items/borderline_test.cxx
+19
-0
unxgcc.mk
solenv/gbuild/platform/unxgcc.mk
+1
-0
uinums.cxx
sw/source/ui/config/uinums.cxx
+1
-1
tools_urlobj_test.cxx
tools/qa/urlobj/tools_urlobj_test.cxx
+19
-0
No files found.
editeng/qa/items/borderline_test.cxx
Dosyayı görüntüle @
e8bbb768
...
@@ -48,6 +48,25 @@
...
@@ -48,6 +48,25 @@
using
namespace
editeng
;
using
namespace
editeng
;
CPPUNIT_NS_BEGIN
template
<>
struct
assertion_traits
<
SvxBorderStyle
>
{
static
bool
equal
(
const
SvxBorderStyle
&
x
,
const
SvxBorderStyle
&
y
)
{
return
x
==
y
;
}
static
std
::
string
toString
(
const
SvxBorderStyle
&
x
)
{
OStringStream
ost
;
ost
<<
static_cast
<
unsigned
int
>
(
x
);
return
ost
.
str
();
}
};
CPPUNIT_NS_END
namespace
{
namespace
{
class
BorderLineTest
:
public
CppUnit
::
TestFixture
class
BorderLineTest
:
public
CppUnit
::
TestFixture
...
...
solenv/gbuild/platform/unxgcc.mk
Dosyayı görüntüle @
e8bbb768
...
@@ -82,6 +82,7 @@ gb_CXXFLAGS := \
...
@@ -82,6 +82,7 @@ gb_CXXFLAGS := \
-Wendif-labels \
-Wendif-labels \
-Wextra \
-Wextra \
-Wshadow \
-Wshadow \
-Wsign-promo \
-Woverloaded-virtual \
-Woverloaded-virtual \
-Wno-non-virtual-dtor \
-Wno-non-virtual-dtor \
-fPIC \
-fPIC \
...
...
sw/source/ui/config/uinums.cxx
Dosyayı görüntüle @
e8bbb768
...
@@ -485,7 +485,7 @@ void SwNumRulesWithName::_SwNumFmtGlobal::Store( SvStream& rStream )
...
@@ -485,7 +485,7 @@ void SwNumRulesWithName::_SwNumFmtGlobal::Store( SvStream& rStream )
rStream
<<
sal_uInt16
(
aFmt
.
GetNumberingType
())
rStream
<<
sal_uInt16
(
aFmt
.
GetNumberingType
())
<<
aFmt
.
GetBulletChar
()
<<
aFmt
.
GetBulletChar
()
<<
(
aFmt
.
GetIncludeUpperLevels
()
>
0
)
<<
static_cast
<
sal_Bool
>
(
aFmt
.
GetIncludeUpperLevels
()
>
0
)
<<
aFmt
.
GetStart
();
<<
aFmt
.
GetStart
();
rStream
.
WriteByteString
(
aFmt
.
GetPrefix
(),
eEncoding
);
rStream
.
WriteByteString
(
aFmt
.
GetPrefix
(),
eEncoding
);
rStream
.
WriteByteString
(
aFmt
.
GetSuffix
(),
eEncoding
);
rStream
.
WriteByteString
(
aFmt
.
GetSuffix
(),
eEncoding
);
...
...
tools/qa/urlobj/tools_urlobj_test.cxx
Dosyayı görüntüle @
e8bbb768
...
@@ -37,6 +37,25 @@
...
@@ -37,6 +37,25 @@
#define OUSTR_TO_STDSTR( oustr ) std::string( rtl::OUStringToOString( oustr, RTL_TEXTENCODING_ASCII_US ).getStr() )
#define OUSTR_TO_STDSTR( oustr ) std::string( rtl::OUStringToOString( oustr, RTL_TEXTENCODING_ASCII_US ).getStr() )
CPPUNIT_NS_BEGIN
template
<>
struct
assertion_traits
<
INetProtocol
>
{
static
bool
equal
(
const
INetProtocol
&
x
,
const
INetProtocol
&
y
)
{
return
x
==
y
;
}
static
std
::
string
toString
(
const
INetProtocol
&
x
)
{
OStringStream
ost
;
ost
<<
static_cast
<
unsigned
int
>
(
x
);
return
ost
.
str
();
}
};
CPPUNIT_NS_END
namespace
tools_urlobj
namespace
tools_urlobj
{
{
...
...
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