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
fd1a3489
Kaydet (Commit)
fd1a3489
authored
Şub 21, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
editeng: sal_Bool->bool
Change-Id: I12db4b88beeeabf3840116753a3c388b214428ed
üst
bbe5d32d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
paraitem.cxx
editeng/source/items/paraitem.cxx
+2
-2
rtfitem.cxx
editeng/source/rtf/rtfitem.cxx
+1
-1
forbiddenruleitem.hxx
include/editeng/forbiddenruleitem.hxx
+1
-1
init.cxx
sw/source/core/bastyp/init.cxx
+1
-1
No files found.
editeng/source/items/paraitem.cxx
Dosyayı görüntüle @
fd1a3489
...
@@ -76,7 +76,7 @@ TYPEINIT1_FACTORY(SvxFmtSplitItem, SfxBoolItem, new SvxFmtSplitItem(sal_False, 0
...
@@ -76,7 +76,7 @@ TYPEINIT1_FACTORY(SvxFmtSplitItem, SfxBoolItem, new SvxFmtSplitItem(sal_False, 0
TYPEINIT1_FACTORY
(
SvxPageModelItem
,
SfxStringItem
,
new
SvxPageModelItem
(
0
));
TYPEINIT1_FACTORY
(
SvxPageModelItem
,
SfxStringItem
,
new
SvxPageModelItem
(
0
));
TYPEINIT1_FACTORY
(
SvxScriptSpaceItem
,
SfxBoolItem
,
new
SvxScriptSpaceItem
(
sal_False
,
0
));
TYPEINIT1_FACTORY
(
SvxScriptSpaceItem
,
SfxBoolItem
,
new
SvxScriptSpaceItem
(
sal_False
,
0
));
TYPEINIT1_FACTORY
(
SvxHangingPunctuationItem
,
SfxBoolItem
,
new
SvxHangingPunctuationItem
(
false
,
0
));
TYPEINIT1_FACTORY
(
SvxHangingPunctuationItem
,
SfxBoolItem
,
new
SvxHangingPunctuationItem
(
false
,
0
));
TYPEINIT1_FACTORY
(
SvxForbiddenRuleItem
,
SfxBoolItem
,
new
SvxForbiddenRuleItem
(
sal_F
alse
,
0
));
TYPEINIT1_FACTORY
(
SvxForbiddenRuleItem
,
SfxBoolItem
,
new
SvxForbiddenRuleItem
(
f
alse
,
0
));
TYPEINIT1_FACTORY
(
SvxParaVertAlignItem
,
SfxUInt16Item
,
new
SvxParaVertAlignItem
(
0
,
0
));
TYPEINIT1_FACTORY
(
SvxParaVertAlignItem
,
SfxUInt16Item
,
new
SvxParaVertAlignItem
(
0
,
0
));
TYPEINIT1_FACTORY
(
SvxParaGridItem
,
SfxBoolItem
,
new
SvxParaGridItem
(
sal_True
,
0
));
TYPEINIT1_FACTORY
(
SvxParaGridItem
,
SfxBoolItem
,
new
SvxParaGridItem
(
sal_True
,
0
));
...
@@ -1477,7 +1477,7 @@ SfxItemPresentation SvxHangingPunctuationItem::GetPresentation(
...
@@ -1477,7 +1477,7 @@ SfxItemPresentation SvxHangingPunctuationItem::GetPresentation(
SvxForbiddenRuleItem
::
SvxForbiddenRuleItem
(
SvxForbiddenRuleItem
::
SvxForbiddenRuleItem
(
sal_B
ool
bOn
,
const
sal_uInt16
nId
)
b
ool
bOn
,
const
sal_uInt16
nId
)
:
SfxBoolItem
(
nId
,
bOn
)
:
SfxBoolItem
(
nId
,
bOn
)
{
{
}
}
...
...
editeng/source/rtf/rtfitem.cxx
Dosyayı görüntüle @
fd1a3489
...
@@ -503,7 +503,7 @@ void SvxRTFParser::ReadAttr( int nToken, SfxItemSet* pSet )
...
@@ -503,7 +503,7 @@ void SvxRTFParser::ReadAttr( int nToken, SfxItemSet* pSet )
case
RTF_NOCWRAP
:
case
RTF_NOCWRAP
:
if
(
PARDID
->
nForbRule
)
if
(
PARDID
->
nForbRule
)
{
{
pSet
->
Put
(
SvxForbiddenRuleItem
(
sal_F
alse
,
pSet
->
Put
(
SvxForbiddenRuleItem
(
f
alse
,
PARDID
->
nForbRule
));
PARDID
->
nForbRule
));
}
}
break
;
break
;
...
...
include/editeng/forbiddenruleitem.hxx
Dosyayı görüntüle @
fd1a3489
...
@@ -34,7 +34,7 @@ class EDITENG_DLLPUBLIC SvxForbiddenRuleItem : public SfxBoolItem
...
@@ -34,7 +34,7 @@ class EDITENG_DLLPUBLIC SvxForbiddenRuleItem : public SfxBoolItem
public
:
public
:
TYPEINFO
();
TYPEINFO
();
SvxForbiddenRuleItem
(
sal_Bool
bOn
/*= sal_F
alse*/
,
SvxForbiddenRuleItem
(
bool
bOn
/*= f
alse*/
,
const
sal_uInt16
nId
);
const
sal_uInt16
nId
);
virtual
SfxPoolItem
*
Clone
(
SfxItemPool
*
pPool
=
0
)
const
;
virtual
SfxPoolItem
*
Clone
(
SfxItemPool
*
pPool
=
0
)
const
;
...
...
sw/source/core/bastyp/init.cxx
Dosyayı görüntüle @
fd1a3489
...
@@ -546,7 +546,7 @@ void _InitCore()
...
@@ -546,7 +546,7 @@ void _InitCore()
aAttrTab
[
RES_PARATR_SCRIPTSPACE
-
POOLATTR_BEGIN
]
=
new
SvxScriptSpaceItem
(
sal_True
,
RES_PARATR_SCRIPTSPACE
);
aAttrTab
[
RES_PARATR_SCRIPTSPACE
-
POOLATTR_BEGIN
]
=
new
SvxScriptSpaceItem
(
sal_True
,
RES_PARATR_SCRIPTSPACE
);
aAttrTab
[
RES_PARATR_HANGINGPUNCTUATION
-
POOLATTR_BEGIN
]
=
new
SvxHangingPunctuationItem
(
true
,
RES_PARATR_HANGINGPUNCTUATION
);
aAttrTab
[
RES_PARATR_HANGINGPUNCTUATION
-
POOLATTR_BEGIN
]
=
new
SvxHangingPunctuationItem
(
true
,
RES_PARATR_HANGINGPUNCTUATION
);
aAttrTab
[
RES_PARATR_FORBIDDEN_RULES
-
POOLATTR_BEGIN
]
=
new
SvxForbiddenRuleItem
(
sal_T
rue
,
RES_PARATR_FORBIDDEN_RULES
);
aAttrTab
[
RES_PARATR_FORBIDDEN_RULES
-
POOLATTR_BEGIN
]
=
new
SvxForbiddenRuleItem
(
t
rue
,
RES_PARATR_FORBIDDEN_RULES
);
aAttrTab
[
RES_PARATR_VERTALIGN
-
POOLATTR_BEGIN
]
=
new
SvxParaVertAlignItem
(
0
,
RES_PARATR_VERTALIGN
);
aAttrTab
[
RES_PARATR_VERTALIGN
-
POOLATTR_BEGIN
]
=
new
SvxParaVertAlignItem
(
0
,
RES_PARATR_VERTALIGN
);
aAttrTab
[
RES_PARATR_SNAPTOGRID
-
POOLATTR_BEGIN
]
=
new
SvxParaGridItem
(
sal_True
,
RES_PARATR_SNAPTOGRID
);
aAttrTab
[
RES_PARATR_SNAPTOGRID
-
POOLATTR_BEGIN
]
=
new
SvxParaGridItem
(
sal_True
,
RES_PARATR_SNAPTOGRID
);
aAttrTab
[
RES_PARATR_CONNECT_BORDER
-
POOLATTR_BEGIN
]
=
new
SwParaConnectBorderItem
;
aAttrTab
[
RES_PARATR_CONNECT_BORDER
-
POOLATTR_BEGIN
]
=
new
SwParaConnectBorderItem
;
...
...
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