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
3728952b
Kaydet (Commit)
3728952b
authored
Agu 21, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert svtools/source/contnr/* from String to OUString
Change-Id: I51ad001473a83eb336f6b00fd989b9e6b2f73ec5
üst
23cafe3f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
fontsubstconfig.cxx
svtools/source/config/fontsubstconfig.cxx
+1
-1
contentenumeration.cxx
svtools/source/contnr/contentenumeration.cxx
+1
-1
svtabbx.cxx
svtools/source/contnr/svtabbx.cxx
+2
-2
treelistbox.cxx
svtools/source/contnr/treelistbox.cxx
+5
-5
No files found.
svtools/source/config/fontsubstconfig.cxx
Dosyayı görüntüle @
3728952b
...
@@ -189,7 +189,7 @@ void SvtFontSubstConfig::Apply()
...
@@ -189,7 +189,7 @@ void SvtFontSubstConfig::Apply()
nFlags
|=
FONT_SUBSTITUTE_ALWAYS
;
nFlags
|=
FONT_SUBSTITUTE_ALWAYS
;
if
(
pSubs
->
bReplaceOnScreenOnly
)
if
(
pSubs
->
bReplaceOnScreenOnly
)
nFlags
|=
FONT_SUBSTITUTE_SCREENONLY
;
nFlags
|=
FONT_SUBSTITUTE_SCREENONLY
;
OutputDevice
::
AddFontSubstitute
(
String
(
pSubs
->
sFont
),
String
(
pSubs
->
sReplaceBy
)
,
nFlags
);
OutputDevice
::
AddFontSubstitute
(
pSubs
->
sFont
,
pSubs
->
sReplaceBy
,
nFlags
);
}
}
OutputDevice
::
EndFontSubstitution
();
OutputDevice
::
EndFontSubstitution
();
...
...
svtools/source/contnr/contentenumeration.cxx
Dosyayı görüntüle @
3728952b
...
@@ -107,7 +107,7 @@ namespace svt
...
@@ -107,7 +107,7 @@ namespace svt
m_pResultHandler
=
NULL
;
m_pResultHandler
=
NULL
;
m_pTranslator
=
NULL
;
m_pTranslator
=
NULL
;
m_aFolder
.
aContent
=
::
ucbhelper
::
Content
();
m_aFolder
.
aContent
=
::
ucbhelper
::
Content
();
m_aFolder
.
sURL
=
String
()
;
m_aFolder
.
sURL
=
""
;
}
}
//--------------------------------------------------------------------
//--------------------------------------------------------------------
...
...
svtools/source/contnr/svtabbx.cxx
Dosyayı görüntüle @
3728952b
...
@@ -420,8 +420,8 @@ OUString SvTabListBox::GetTabEntryText( sal_uLong nPos, sal_uInt16 nCol ) const
...
@@ -420,8 +420,8 @@ OUString SvTabListBox::GetTabEntryText( sal_uLong nPos, sal_uInt16 nCol ) const
{
{
if
(
nCol
==
0
)
if
(
nCol
==
0
)
{
{
String
sRet
=
static_cast
<
const
SvLBoxString
*>
(
pStr
)
->
GetText
();
OU
String
sRet
=
static_cast
<
const
SvLBoxString
*>
(
pStr
)
->
GetText
();
if
(
sRet
.
Len
()
==
0
)
if
(
sRet
.
isEmpty
()
)
sRet
=
SVT_RESSTR
(
STR_SVT_ACC_EMPTY_FIELD
);
sRet
=
SVT_RESSTR
(
STR_SVT_ACC_EMPTY_FIELD
);
return
sRet
;
return
sRet
;
}
}
...
...
svtools/source/contnr/treelistbox.cxx
Dosyayı görüntüle @
3728952b
...
@@ -1064,12 +1064,12 @@ IMPL_LINK_NOARG(SvTreeListBox, TextEditEndedHdl_Impl)
...
@@ -1064,12 +1064,12 @@ IMPL_LINK_NOARG(SvTreeListBox, TextEditEndedHdl_Impl)
if
(
nImpFlags
&
SVLBOX_EDTEND_CALLED
)
// avoid nesting
if
(
nImpFlags
&
SVLBOX_EDTEND_CALLED
)
// avoid nesting
return
0
;
return
0
;
nImpFlags
|=
SVLBOX_EDTEND_CALLED
;
nImpFlags
|=
SVLBOX_EDTEND_CALLED
;
String
aStr
;
OU
String
aStr
;
if
(
!
pEdCtrl
->
EditingCanceled
()
)
if
(
!
pEdCtrl
->
EditingCanceled
()
)
aStr
=
pEdCtrl
->
GetText
();
aStr
=
pEdCtrl
->
GetText
();
else
else
aStr
=
pEdCtrl
->
GetSavedValue
();
aStr
=
pEdCtrl
->
GetSavedValue
();
if
(
IsEmptyTextAllowed
()
||
aStr
.
Len
()
>
0
)
if
(
IsEmptyTextAllowed
()
||
!
aStr
.
isEmpty
()
)
EditedText
(
aStr
);
EditedText
(
aStr
);
// Hide may only be called after the new text was put into the entry, so
// Hide may only be called after the new text was put into the entry, so
// that we don't call the selection handler in the GetFocus of the listbox
// that we don't call the selection handler in the GetFocus of the listbox
...
@@ -1781,7 +1781,7 @@ OUString SvTreeListBox::SearchEntryText( SvTreeListEntry* pEntry ) const
...
@@ -1781,7 +1781,7 @@ OUString SvTreeListBox::SearchEntryText( SvTreeListEntry* pEntry ) const
{
{
DBG_CHKTHIS
(
SvTreeListBox
,
0
);
DBG_CHKTHIS
(
SvTreeListBox
,
0
);
DBG_ASSERT
(
pEntry
,
"SvTreeListBox::SearchEntryText(): no entry"
);
DBG_ASSERT
(
pEntry
,
"SvTreeListBox::SearchEntryText(): no entry"
);
String
sRet
;
OU
String
sRet
;
sal_uInt16
nCount
=
pEntry
->
ItemCount
();
sal_uInt16
nCount
=
pEntry
->
ItemCount
();
sal_uInt16
nCur
=
0
;
sal_uInt16
nCur
=
0
;
SvLBoxItem
*
pItem
;
SvLBoxItem
*
pItem
;
...
@@ -3683,8 +3683,8 @@ IMPL_LINK( SvTreeListBox, DefaultCompare, SvSortData*, pData )
...
@@ -3683,8 +3683,8 @@ IMPL_LINK( SvTreeListBox, DefaultCompare, SvSortData*, pData )
{
{
const
SvTreeListEntry
*
pLeft
=
pData
->
pLeft
;
const
SvTreeListEntry
*
pLeft
=
pData
->
pLeft
;
const
SvTreeListEntry
*
pRight
=
pData
->
pRight
;
const
SvTreeListEntry
*
pRight
=
pData
->
pRight
;
String
aLeft
(
((
SvLBoxString
*
)(
pLeft
->
GetFirstItem
(
SV_ITEM_ID_LBOXSTRING
)))
->
GetText
());
OU
String
aLeft
(
((
SvLBoxString
*
)(
pLeft
->
GetFirstItem
(
SV_ITEM_ID_LBOXSTRING
)))
->
GetText
());
String
aRight
(
((
SvLBoxString
*
)(
pRight
->
GetFirstItem
(
SV_ITEM_ID_LBOXSTRING
)))
->
GetText
());
OU
String
aRight
(
((
SvLBoxString
*
)(
pRight
->
GetFirstItem
(
SV_ITEM_ID_LBOXSTRING
)))
->
GetText
());
pImp
->
UpdateStringSorter
();
pImp
->
UpdateStringSorter
();
return
pImp
->
m_pStringSorter
->
compare
(
aLeft
,
aRight
);
return
pImp
->
m_pStringSorter
->
compare
(
aLeft
,
aRight
);
}
}
...
...
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