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
8be00a3f
Kaydet (Commit)
8be00a3f
authored
Agu 27, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Help GCC
Change-Id: Ibeace7ce7621033cf04e3186c212bbb4a27492a1
üst
475cbbb2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
11 deletions
+11
-11
unotext.cxx
editeng/source/uno/unotext.cxx
+1
-1
lwpbulletstylemgr.cxx
lotuswordpro/source/filter/lwpbulletstylemgr.cxx
+3
-3
lwpsilverbullet.cxx
lotuswordpro/source/filter/lwpsilverbullet.cxx
+6
-6
toolbox2.cxx
vcl/source/window/toolbox2.cxx
+1
-1
No files found.
editeng/source/uno/unotext.cxx
Dosyayı görüntüle @
8be00a3f
...
@@ -377,7 +377,7 @@ OUString SAL_CALL SvxUnoTextRangeBase::getString()
...
@@ -377,7 +377,7 @@ OUString SAL_CALL SvxUnoTextRangeBase::getString()
}
}
else
else
{
{
return
""
;
return
OUString
()
;
}
}
}
}
...
...
lotuswordpro/source/filter/lwpbulletstylemgr.cxx
Dosyayı görüntüle @
8be00a3f
...
@@ -102,21 +102,21 @@ OUString LwpBulletStyleMgr::RegisterBulletStyle(LwpPara* pPara, LwpBulletOverrid
...
@@ -102,21 +102,21 @@ OUString LwpBulletStyleMgr::RegisterBulletStyle(LwpPara* pPara, LwpBulletOverrid
{
{
if
(
!
pPara
||
!
pIndent
||
!
pBullOver
)
if
(
!
pPara
||
!
pIndent
||
!
pBullOver
)
{
{
return
""
;
return
OUString
()
;
}
}
LwpSilverBullet
*
pSilverBullet
=
pPara
->
GetSilverBullet
();
LwpSilverBullet
*
pSilverBullet
=
pPara
->
GetSilverBullet
();
if
(
!
pSilverBullet
)
if
(
!
pSilverBullet
)
{
{
assert
(
false
);
assert
(
false
);
return
""
;
return
OUString
()
;
}
}
LwpPara
*
pBulletPara
=
pSilverBullet
->
GetBulletPara
();
LwpPara
*
pBulletPara
=
pSilverBullet
->
GetBulletPara
();
if
(
!
pBulletPara
)
if
(
!
pBulletPara
)
{
{
assert
(
false
);
assert
(
false
);
return
""
;
return
OUString
()
;
}
}
LwpParaProperty
*
pProp
=
pPara
->
GetProperty
(
PP_LOCAL_INDENT
);
LwpParaProperty
*
pProp
=
pPara
->
GetProperty
(
PP_LOCAL_INDENT
);
...
...
lotuswordpro/source/filter/lwpsilverbullet.cxx
Dosyayı görüntüle @
8be00a3f
...
@@ -192,7 +192,7 @@ OUString LwpSilverBullet::GetBulletFontName()
...
@@ -192,7 +192,7 @@ OUString LwpSilverBullet::GetBulletFontName()
//foundry has been set?
//foundry has been set?
if
(
!
m_pFoundry
)
if
(
!
m_pFoundry
)
{
{
return
""
;
return
OUString
()
;
}
}
LwpFontManager
&
rFontMgr
=
m_pFoundry
->
GetFontManger
();
LwpFontManager
&
rFontMgr
=
m_pFoundry
->
GetFontManger
();
...
@@ -203,7 +203,7 @@ OUString LwpSilverBullet::GetBulletFontName()
...
@@ -203,7 +203,7 @@ OUString LwpSilverBullet::GetBulletFontName()
//final fontid is valid?
//final fontid is valid?
if
(
nFinalFont
>
255
||
nFinalFont
==
0
)
if
(
nFinalFont
>
255
||
nFinalFont
==
0
)
{
{
return
""
;
return
OUString
()
;
}
}
//get font name from font manager.
//get font name from font manager.
...
@@ -252,7 +252,7 @@ OUString LwpSilverBullet::GetNumCharByStyleID(LwpFribParaNumber* pParaNumber)
...
@@ -252,7 +252,7 @@ OUString LwpSilverBullet::GetNumCharByStyleID(LwpFribParaNumber* pParaNumber)
if
(
!
pParaNumber
)
if
(
!
pParaNumber
)
{
{
assert
(
false
);
assert
(
false
);
return
""
;
return
OUString
()
;
}
}
OUString
strNumChar
(
"1"
);
OUString
strNumChar
(
"1"
);
...
@@ -363,7 +363,7 @@ OUString LwpSilverBullet::GetAdditionalName(sal_uInt8 nPos)
...
@@ -363,7 +363,7 @@ OUString LwpSilverBullet::GetAdditionalName(sal_uInt8 nPos)
LwpFrib
*
pParaFrib
=
m_pBulletPara
->
GetFribs
().
GetFribs
();
LwpFrib
*
pParaFrib
=
m_pBulletPara
->
GetFribs
().
GetFribs
();
if
(
!
pParaFrib
)
if
(
!
pParaFrib
)
{
{
return
""
;
return
OUString
()
;
}
}
while
(
pParaFrib
)
while
(
pParaFrib
)
...
@@ -373,7 +373,7 @@ OUString LwpSilverBullet::GetAdditionalName(sal_uInt8 nPos)
...
@@ -373,7 +373,7 @@ OUString LwpSilverBullet::GetAdditionalName(sal_uInt8 nPos)
ModifierInfo
*
pMoInfo
=
pParaFrib
->
GetModifiers
();
ModifierInfo
*
pMoInfo
=
pParaFrib
->
GetModifiers
();
if
(
!
pMoInfo
)
if
(
!
pMoInfo
)
{
{
return
""
;
return
OUString
()
;
}
}
sal_uInt16
nHideLevels
=
pMoInfo
->
aTxtAttrOverride
.
GetHideLevels
();
sal_uInt16
nHideLevels
=
pMoInfo
->
aTxtAttrOverride
.
GetHideLevels
();
sal_uInt16
nType
=
static_cast
<
LwpFribDocVar
*>
(
pParaFrib
)
->
GetType
();
sal_uInt16
nType
=
static_cast
<
LwpFribDocVar
*>
(
pParaFrib
)
->
GetType
();
...
@@ -434,7 +434,7 @@ OUString LwpSilverBullet::GetSectionName()
...
@@ -434,7 +434,7 @@ OUString LwpSilverBullet::GetSectionName()
LwpStory
*
pStory
=
dynamic_cast
<
LwpStory
*>
(
m_aStory
.
obj
(
VO_STORY
).
get
());
LwpStory
*
pStory
=
dynamic_cast
<
LwpStory
*>
(
m_aStory
.
obj
(
VO_STORY
).
get
());
if
(
!
pStory
)
if
(
!
pStory
)
{
{
return
""
;
return
OUString
()
;
}
}
return
pStory
->
GetSectionName
();
return
pStory
->
GetSectionName
();
...
...
vcl/source/window/toolbox2.cxx
Dosyayı görüntüle @
8be00a3f
...
@@ -1584,7 +1584,7 @@ OUString ToolBox::GetQuickHelpText( sal_uInt16 nItemId ) const
...
@@ -1584,7 +1584,7 @@ OUString ToolBox::GetQuickHelpText( sal_uInt16 nItemId ) const
if
(
pItem
)
if
(
pItem
)
return
pItem
->
maQuickHelpText
;
return
pItem
->
maQuickHelpText
;
else
else
return
""
;
return
OUString
()
;
}
}
void
ToolBox
::
SetHelpText
(
sal_uInt16
nItemId
,
const
OUString
&
rText
)
void
ToolBox
::
SetHelpText
(
sal_uInt16
nItemId
,
const
OUString
&
rText
)
...
...
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