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
ded5965c
Kaydet (Commit)
ded5965c
authored
Mar 03, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
editeng: sal_Bool->bool
Change-Id: I51b4ae54c2c440d38879439f74d4fea39d243004
üst
82ce4dd6
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
31 additions
and
31 deletions
+31
-31
unolingu.cxx
editeng/source/misc/unolingu.cxx
+3
-3
unoforou.cxx
editeng/source/uno/unoforou.cxx
+7
-7
unoipset.cxx
editeng/source/uno/unoipset.cxx
+1
-1
unotext.cxx
editeng/source/uno/unotext.cxx
+1
-1
unoedsrc.hxx
include/editeng/unoedsrc.hxx
+5
-5
unoforou.hxx
include/editeng/unoforou.hxx
+4
-4
unoipset.hxx
include/editeng/unoipset.hxx
+3
-3
unolingu.hxx
include/editeng/unolingu.hxx
+3
-3
textapi.cxx
sd/source/core/text/textapi.cxx
+1
-1
AccessibleOutlineEditSource.cxx
sd/source/ui/accessibility/AccessibleOutlineEditSource.cxx
+1
-1
textapi.cxx
sw/source/core/fields/textapi.cxx
+1
-1
SidebarTxtControlAcc.cxx
sw/source/ui/docvw/SidebarTxtControlAcc.cxx
+1
-1
No files found.
editeng/source/misc/unolingu.cxx
Dosyayı görüntüle @
ded5965c
...
...
@@ -500,14 +500,14 @@ void LinguMgrExitLstnr::AtExit()
LinguMgr
::
xIgnoreAll
=
0
;
LinguMgr
::
xChangeAll
=
0
;
LinguMgr
::
bExiting
=
sal_T
rue
;
LinguMgr
::
bExiting
=
t
rue
;
LinguMgr
::
pExitLstnr
=
0
;
}
LinguMgrExitLstnr
*
LinguMgr
::
pExitLstnr
=
0
;
sal_Bool
LinguMgr
::
bExiting
=
sal_F
alse
;
bool
LinguMgr
::
bExiting
=
f
alse
;
uno
::
Reference
<
XLinguServiceManager2
>
LinguMgr
::
xLngSvcMgr
=
0
;
uno
::
Reference
<
XSpellChecker1
>
LinguMgr
::
xSpell
=
0
;
uno
::
Reference
<
XHyphenator
>
LinguMgr
::
xHyph
=
0
;
...
...
@@ -808,7 +808,7 @@ SvxAlternativeSpelling SvxGetAltSpelling(
aRes
.
aReplacement
=
OUString
(
aAltWord
.
copy
(
nL
,
nAltLen
-
nL
-
nR
)
);
aRes
.
nChangedPos
=
(
sal_Int16
)
nL
;
aRes
.
nChangedLength
=
nLen
-
nL
-
nR
;
aRes
.
bIsAltSpelling
=
sal_T
rue
;
aRes
.
bIsAltSpelling
=
t
rue
;
aRes
.
xHyphWord
=
rHyphWord
;
}
return
aRes
;
...
...
editeng/source/uno/unoforou.cxx
Dosyayı görüntüle @
ded5965c
...
...
@@ -39,7 +39,7 @@ using namespace ::com::sun::star;
SvxOutlinerForwarder
::
SvxOutlinerForwarder
(
Outliner
&
rOutl
,
sal_Bool
bOutlText
/* = sal_F
alse */
)
:
SvxOutlinerForwarder
::
SvxOutlinerForwarder
(
Outliner
&
rOutl
,
bool
bOutlText
/* = f
alse */
)
:
rOutliner
(
rOutl
),
bOutlinerText
(
bOutlText
),
mpAttribsCache
(
NULL
),
...
...
@@ -514,7 +514,7 @@ void SvxOutlinerForwarder::SetNumberingStartValue( sal_Int32 nPara, sal_Int32 n
}
}
sal_B
ool
SvxOutlinerForwarder
::
IsParaIsNumberingRestart
(
sal_Int32
nPara
)
b
ool
SvxOutlinerForwarder
::
IsParaIsNumberingRestart
(
sal_Int32
nPara
)
{
if
(
0
<=
nPara
&&
nPara
<
GetParagraphCount
()
)
{
...
...
@@ -523,11 +523,11 @@ sal_Bool SvxOutlinerForwarder::IsParaIsNumberingRestart( sal_Int32 nPara )
else
{
OSL_FAIL
(
"SvxOutlinerForwarder::IsParaIsNumberingRestart)(), Invalid paragraph index"
);
return
sal_F
alse
;
return
f
alse
;
}
}
void
SvxOutlinerForwarder
::
SetParaIsNumberingRestart
(
sal_Int32
nPara
,
sal_B
ool
bParaIsNumberingRestart
)
void
SvxOutlinerForwarder
::
SetParaIsNumberingRestart
(
sal_Int32
nPara
,
b
ool
bParaIsNumberingRestart
)
{
if
(
0
<=
nPara
&&
nPara
<
GetParagraphCount
()
)
{
...
...
@@ -589,12 +589,12 @@ void SvxTextForwarder::SetNumberingStartValue( sal_Int32, sal_Int32 )
{
}
sal_B
ool
SvxTextForwarder
::
IsParaIsNumberingRestart
(
sal_Int32
)
b
ool
SvxTextForwarder
::
IsParaIsNumberingRestart
(
sal_Int32
)
{
return
sal_F
alse
;
return
f
alse
;
}
void
SvxTextForwarder
::
SetParaIsNumberingRestart
(
sal_Int32
,
sal_B
ool
)
void
SvxTextForwarder
::
SetParaIsNumberingRestart
(
sal_Int32
,
b
ool
)
{
}
...
...
editeng/source/uno/unoipset.cxx
Dosyayı görüntüle @
ded5965c
...
...
@@ -50,7 +50,7 @@ struct SvxIDPropertyCombine
};
SvxItemPropertySet
::
SvxItemPropertySet
(
const
SfxItemPropertyMapEntry
*
pMap
,
SfxItemPool
&
rItemPool
,
sal_B
ool
bConvertTwips
)
SvxItemPropertySet
::
SvxItemPropertySet
(
const
SfxItemPropertyMapEntry
*
pMap
,
SfxItemPool
&
rItemPool
,
b
ool
bConvertTwips
)
:
m_aPropertyMap
(
pMap
),
_pMap
(
pMap
),
mbConvertTwips
(
bConvertTwips
),
mrItemPool
(
rItemPool
)
{
...
...
editeng/source/uno/unotext.cxx
Dosyayı görüntüle @
ded5965c
...
...
@@ -1240,7 +1240,7 @@ void SvxUnoTextRangeBase::_setPropertyToDefault(SvxTextForwarder* pForwarder, co
}
else
if
(
pMap
->
nWID
==
WID_PARAISNUMBERINGRESTART
)
{
pForwarder
->
SetParaIsNumberingRestart
(
maSelection
.
nStartPara
,
sal_F
alse
);
pForwarder
->
SetParaIsNumberingRestart
(
maSelection
.
nStartPara
,
f
alse
);
}
else
{
...
...
include/editeng/unoedsrc.hxx
Dosyayı görüntüle @
ded5965c
...
...
@@ -434,8 +434,8 @@ public:
virtual
sal_Int32
GetNumberingStartValue
(
sal_Int32
nPara
);
virtual
void
SetNumberingStartValue
(
sal_Int32
nPara
,
sal_Int32
nNumberingStartValue
);
virtual
sal_B
ool
IsParaIsNumberingRestart
(
sal_Int32
nPara
);
virtual
void
SetParaIsNumberingRestart
(
sal_Int32
nPara
,
sal_B
ool
bParaIsNumberingRestart
);
virtual
b
ool
IsParaIsNumberingRestart
(
sal_Int32
nPara
);
virtual
void
SetParaIsNumberingRestart
(
sal_Int32
nPara
,
b
ool
bParaIsNumberingRestart
);
};
/** Encapsulates the document view for the purpose of unified
...
...
@@ -535,9 +535,9 @@ public:
*/
virtual
bool
Paste
()
=
0
;
virtual
sal_Bool
IsWrongSpelledWordAtPos
(
sal_Int32
,
sal_Int32
)
{
return
sal_F
alse
;
};
virtual
sal_Bool
IsShapeParaFocusable
(
)
{
return
sal_T
rue
;
};
virtual
sal_Bool
BreakParaWrongList
(
sal_Int32
,
sal_Int32
&
,
sal_Int32
&
,
sal_Int32
){
return
sal_F
alse
;
};
virtual
bool
IsWrongSpelledWordAtPos
(
sal_Int32
,
sal_Int32
)
{
return
f
alse
;
};
virtual
bool
IsShapeParaFocusable
(
)
{
return
t
rue
;
};
virtual
bool
BreakParaWrongList
(
sal_Int32
,
sal_Int32
&
,
sal_Int32
&
,
sal_Int32
){
return
f
alse
;
};
};
#endif
...
...
include/editeng/unoforou.hxx
Dosyayı görüntüle @
ded5965c
...
...
@@ -33,7 +33,7 @@ class EDITENG_DLLPUBLIC SvxOutlinerForwarder : public SvxTextForwarder
{
private
:
Outliner
&
rOutliner
;
sal_B
ool
bOutlinerText
;
b
ool
bOutlinerText
;
/** this pointer may be null or point to an item set for the attribs of
the selection maAttribsSelection */
...
...
@@ -50,7 +50,7 @@ private:
mutable
sal_Int32
mnParaAttribsCache
;
public
:
SvxOutlinerForwarder
(
Outliner
&
rOutl
,
sal_Bool
bOutlText
=
sal_F
alse
);
SvxOutlinerForwarder
(
Outliner
&
rOutl
,
bool
bOutlText
=
f
alse
);
virtual
~
SvxOutlinerForwarder
();
virtual
sal_Int32
GetParagraphCount
()
const
;
...
...
@@ -102,8 +102,8 @@ public:
virtual
sal_Int32
GetNumberingStartValue
(
sal_Int32
nPara
);
virtual
void
SetNumberingStartValue
(
sal_Int32
nPara
,
sal_Int32
nNumberingStartValue
);
virtual
sal_Bool
IsParaIsNumberingRestart
(
sal_Int32
nPara
);
virtual
void
SetParaIsNumberingRestart
(
sal_Int32
nPara
,
sal_B
ool
bParaIsNumberingRestart
);
virtual
bool
IsParaIsNumberingRestart
(
sal_Int32
nPara
);
virtual
void
SetParaIsNumberingRestart
(
sal_Int32
nPara
,
b
ool
bParaIsNumberingRestart
);
/* this method flushes internal caches for this forwarder */
void
flushCache
();
...
...
include/editeng/unoipset.hxx
Dosyayı görüntüle @
ded5965c
...
...
@@ -39,11 +39,11 @@ class EDITENG_DLLPUBLIC SvxItemPropertySet
mutable
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
beans
::
XPropertySetInfo
>
m_xInfo
;
const
SfxItemPropertyMapEntry
*
_pMap
;
::
std
::
vector
<
SvxIDPropertyCombine
*
>
aCombineList
;
sal_Bool
mbConvertTwips
;
bool
mbConvertTwips
;
SfxItemPool
&
mrItemPool
;
public
:
SvxItemPropertySet
(
const
SfxItemPropertyMapEntry
*
pMap
,
SfxItemPool
&
rPool
,
sal_Bool
bConvertTwips
=
sal_F
alse
);
SvxItemPropertySet
(
const
SfxItemPropertyMapEntry
*
pMap
,
SfxItemPool
&
rPool
,
bool
bConvertTwips
=
f
alse
);
~
SvxItemPropertySet
();
// Methods, which work directly with the ItemSet
...
...
@@ -54,7 +54,7 @@ public:
::
com
::
sun
::
star
::
uno
::
Any
getPropertyValue
(
const
SfxItemPropertySimpleEntry
*
pMap
)
const
;
void
setPropertyValue
(
const
SfxItemPropertySimpleEntry
*
pMap
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rVal
)
const
;
sal_Bool
AreThereOwnUsrAnys
()
const
{
return
(
aCombineList
.
empty
()
?
sal_False
:
sal_True
);
}
bool
AreThereOwnUsrAnys
()
const
{
return
!
aCombineList
.
empty
(
);
}
::
com
::
sun
::
star
::
uno
::
Any
*
GetUsrAnyForID
(
sal_uInt16
nWID
)
const
;
void
AddUsrAnyForID
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
rAny
,
sal_uInt16
nWID
);
void
ClearAllUsrAny
();
...
...
include/editeng/unolingu.hxx
Dosyayı görüntüle @
ded5965c
...
...
@@ -61,7 +61,7 @@ class EDITENG_DLLPUBLIC LinguMgr
::
com
::
sun
::
star
::
linguistic2
::
XDictionary
>
xChangeAll
;
static
LinguMgrExitLstnr
*
pExitLstnr
;
static
sal_Bool
bExiting
;
static
bool
bExiting
;
static
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
linguistic2
::
XSpellChecker1
>
GetSpell
();
...
...
@@ -122,13 +122,13 @@ struct SvxAlternativeSpelling
xHyphWord
;
sal_Int16
nChangedPos
,
nChangedLength
;
sal_Bool
bIsAltSpelling
;
bool
bIsAltSpelling
;
inline
SvxAlternativeSpelling
();
};
inline
SvxAlternativeSpelling
::
SvxAlternativeSpelling
()
:
nChangedPos
(
-
1
),
nChangedLength
(
-
1
),
bIsAltSpelling
(
sal_F
alse
)
nChangedPos
(
-
1
),
nChangedLength
(
-
1
),
bIsAltSpelling
(
f
alse
)
{
}
...
...
sd/source/core/text/textapi.cxx
Dosyayı görüntüle @
ded5965c
...
...
@@ -245,7 +245,7 @@ SvxTextForwarder* TextAPIEditSource::GetTextForwarder()
}
if
(
!
pImpl
->
mpTextForwarder
)
pImpl
->
mpTextForwarder
=
new
SvxOutlinerForwarder
(
*
pImpl
->
mpOutliner
,
0
);
pImpl
->
mpTextForwarder
=
new
SvxOutlinerForwarder
(
*
pImpl
->
mpOutliner
,
false
);
return
pImpl
->
mpTextForwarder
;
}
...
...
sd/source/ui/accessibility/AccessibleOutlineEditSource.cxx
Dosyayı görüntüle @
ded5965c
...
...
@@ -36,7 +36,7 @@ namespace accessibility
mrWindow
(
rViewWindow
),
mpOutliner
(
&
rOutliner
),
mpOutlinerView
(
&
rOutlView
),
mTextForwarder
(
rOutliner
,
0
),
mTextForwarder
(
rOutliner
,
false
),
mViewForwarder
(
rOutlView
)
{
// register as listener - need to broadcast state change messages
...
...
sw/source/core/fields/textapi.cxx
Dosyayı görüntüle @
ded5965c
...
...
@@ -129,7 +129,7 @@ SvxTextForwarder* SwTextAPIEditSource::GetTextForwarder()
}
if
(
!
pImpl
->
mpTextForwarder
)
pImpl
->
mpTextForwarder
=
new
SvxOutlinerForwarder
(
*
pImpl
->
mpOutliner
,
0
);
pImpl
->
mpTextForwarder
=
new
SvxOutlinerForwarder
(
*
pImpl
->
mpOutliner
,
false
);
return
pImpl
->
mpTextForwarder
;
}
...
...
sw/source/ui/docvw/SidebarTxtControlAcc.cxx
Dosyayı görüntüle @
ded5965c
...
...
@@ -63,7 +63,7 @@ class SidebarTextEditSource : public SvxEditSource,
SidebarTextEditSource
::
SidebarTextEditSource
(
SidebarTxtControl
&
rSidebarTxtControl
)
:
SvxEditSource
()
,
mrSidebarTxtControl
(
rSidebarTxtControl
)
,
mTextForwarder
(
*
(
rSidebarTxtControl
.
GetTextView
()
->
GetOutliner
()),
sal_F
alse
)
,
mTextForwarder
(
*
(
rSidebarTxtControl
.
GetTextView
()
->
GetOutliner
()),
f
alse
)
,
mViewForwarder
(
*
(
rSidebarTxtControl
.
GetTextView
())
)
{
if
(
mrSidebarTxtControl
.
GetTextView
()
)
...
...
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