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
009799fd
Kaydet (Commit)
009799fd
authored
Mar 22, 2014
tarafından
Matteo Casalin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal_uInt16 to sal_Int32
Change-Id: I9d92d5866be5f579a2d645d9039f9fb939e6e61e
üst
c373dc5d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
glossary.cxx
sw/source/ui/misc/glossary.cxx
+5
-5
No files found.
sw/source/ui/misc/glossary.cxx
Dosyayı görüntüle @
009799fd
...
...
@@ -594,9 +594,9 @@ IMPL_LINK_NOARG(SwGlossaryDlg, BibHdl)
//check if at least one glossary path is write enabled
SvtPathOptions
aPathOpt
;
const
OUString
sGlosPath
(
aPathOpt
.
GetAutoTextPath
()
);
sal_uInt16
nPaths
=
comphelper
::
string
::
getTokenCount
(
sGlosPath
,
';'
);
const
sal_Int32
nPaths
=
comphelper
::
string
::
getTokenCount
(
sGlosPath
,
';'
);
bool
bIsWritable
=
false
;
for
(
sal_
uInt16
nPath
=
0
;
nPath
<
nPaths
;
nPath
++
)
for
(
sal_
Int32
nPath
=
0
;
nPath
<
nPaths
;
nPath
++
)
{
const
OUString
sPath
=
URIHelper
::
SmartRel2Abs
(
INetURLObject
(),
sGlosPath
.
getToken
(
nPath
,
';'
),
...
...
@@ -670,7 +670,7 @@ void SwGlossaryDlg::Init()
const
sal_uInt16
nCnt
=
pGlossaryHdl
->
GetGroupCnt
();
SvTreeListEntry
*
pSelEntry
=
0
;
const
OUString
sSelStr
(
::
GetCurrGlosGroup
().
getToken
(
0
,
GLOS_DELIM
));
const
sal_
uInt16
nSelPath
=
static_cast
<
sal_uInt16
>
(
::
GetCurrGlosGroup
().
getToken
(
1
,
GLOS_DELIM
).
toInt32
()
);
const
sal_
Int32
nSelPath
=
::
GetCurrGlosGroup
().
getToken
(
1
,
GLOS_DELIM
).
toInt32
(
);
// #i66304# - "My AutoText" comes from mytexts.bau, but should be translated
const
OUString
sMyAutoTextEnglish
(
"My AutoText"
);
const
OUString
sMyAutoTextTranslated
(
SW_RES
(
STR_MY_AUTOTEXT
));
...
...
@@ -685,11 +685,11 @@ void SwGlossaryDlg::Init()
if
(
sTitle
==
sMyAutoTextEnglish
)
sTitle
=
sMyAutoTextTranslated
;
SvTreeListEntry
*
pEntry
=
m_pCategoryBox
->
InsertEntry
(
sTitle
);
sal_uInt16
nPath
=
static_cast
<
sal_uInt16
>
(
sGroupName
.
getToken
(
1
,
GLOS_DELIM
).
toInt32
()
);
const
sal_Int32
nPath
=
sGroupName
.
getToken
(
1
,
GLOS_DELIM
).
toInt32
(
);
GroupUserData
*
pData
=
new
GroupUserData
;
pData
->
sGroupName
=
sGroupName
.
getToken
(
0
,
GLOS_DELIM
);
pData
->
nPathIdx
=
nPath
;
pData
->
nPathIdx
=
static_cast
<
sal_uInt16
>
(
nPath
)
;
pData
->
bReadonly
=
pGlossaryHdl
->
IsReadOnly
(
&
sGroupName
);
pEntry
->
SetUserData
(
pData
);
...
...
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