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
127f62cc
Kaydet (Commit)
127f62cc
authored
Şub 25, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
editeng: sal_Bool->bool
Change-Id: Id309a574831dd46bce47009eb8c4879d26c3a332
üst
ef16d954
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
frmitems.cxx
editeng/source/items/frmitems.cxx
+1
-1
opaqitem.hxx
include/editeng/opaqitem.hxx
+2
-2
doclay.cxx
sw/source/core/doc/doclay.cxx
+1
-1
No files found.
editeng/source/items/frmitems.cxx
Dosyayı görüntüle @
127f62cc
...
...
@@ -1162,7 +1162,7 @@ SfxPoolItem* SvxOpaqueItem::Create( SvStream& rStrm, sal_uInt16 ) const
{
sal_Int8
bIsOpaque
;
rStrm
.
ReadSChar
(
bIsOpaque
);
return
new
SvxOpaqueItem
(
Which
(),
sal_Bool
(
bIsOpaque
!=
0
)
);
return
new
SvxOpaqueItem
(
Which
(),
bIsOpaque
!=
0
);
}
...
...
include/editeng/opaqitem.hxx
Dosyayı görüntüle @
127f62cc
...
...
@@ -37,7 +37,7 @@ class EDITENG_DLLPUBLIC SvxOpaqueItem : public SfxBoolItem
public
:
TYPEINFO
();
explicit
SvxOpaqueItem
(
const
sal_uInt16
nId
,
const
sal_Bool
bOpa
=
sal_T
rue
);
explicit
SvxOpaqueItem
(
const
sal_uInt16
nId
,
const
bool
bOpa
=
t
rue
);
inline
SvxOpaqueItem
&
operator
=
(
const
SvxOpaqueItem
&
rCpy
);
// "pure virtual Methods" from SfxPoolItem
...
...
@@ -51,7 +51,7 @@ public:
OUString
&
rText
,
const
IntlWrapper
*
=
0
)
const
;
};
inline
SvxOpaqueItem
::
SvxOpaqueItem
(
const
sal_uInt16
nId
,
const
sal_B
ool
bOpa
)
inline
SvxOpaqueItem
::
SvxOpaqueItem
(
const
sal_uInt16
nId
,
const
b
ool
bOpa
)
:
SfxBoolItem
(
nId
,
bOpa
)
{}
...
...
sw/source/core/doc/doclay.cxx
Dosyayı görüntüle @
127f62cc
...
...
@@ -1320,7 +1320,7 @@ lcl_InsertLabel(SwDoc & rDoc, SwTxtFmtColls *const pTxtFmtCollTbl,
pNewSet
->
ClearItem
();
pNewSet
->
Put
(
SwFmtSurround
(
SURROUND_NONE
)
);
pNewSet
->
Put
(
SvxOpaqueItem
(
RES_OPAQUE
,
sal_T
rue
)
);
pNewSet
->
Put
(
SvxOpaqueItem
(
RES_OPAQUE
,
t
rue
)
);
sal_Int16
eVert
=
bBefore
?
text
::
VertOrientation
::
BOTTOM
:
text
::
VertOrientation
::
TOP
;
pNewSet
->
Put
(
SwFmtVertOrient
(
0
,
eVert
)
);
...
...
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