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
1ed856c2
Kaydet (Commit)
1ed856c2
authored
Nis 10, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
UniString->rtl::OUString
üst
41e05511
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
optlingu.cxx
cui/source/options/optlingu.cxx
+1
-1
style.hxx
svl/inc/svl/style.hxx
+1
-1
style.cxx
svl/source/items/style.cxx
+2
-2
docstyle.hxx
sw/inc/docstyle.hxx
+1
-1
docstyle.cxx
sw/source/ui/app/docstyle.cxx
+3
-3
No files found.
cui/source/options/optlingu.cxx
Dosyayı görüntüle @
1ed856c2
...
@@ -491,7 +491,7 @@ void BrwString_Impl::Paint( const Point& rPos, SvLBox& rDev, sal_uInt16,
...
@@ -491,7 +491,7 @@ void BrwString_Impl::Paint( const Point& rPos, SvLBox& rDev, sal_uInt16,
if
(
aData
.
HasNumericValue
())
if
(
aData
.
HasNumericValue
())
{
{
rtl
::
OUStringBuffer
sTxt
;
rtl
::
OUStringBuffer
sTxt
;
a
Txt
.
append
(
' '
).
append
(
static_cast
<
sal_Int32
>
(
aData
.
GetNumericValue
()));
s
Txt
.
append
(
' '
).
append
(
static_cast
<
sal_Int32
>
(
aData
.
GetNumericValue
()));
rDev
.
SetFont
(
aFont
);
rDev
.
SetFont
(
aFont
);
rDev
.
DrawText
(
aNewPos
,
sTxt
.
makeStringAndClear
()
);
rDev
.
DrawText
(
aNewPos
,
sTxt
.
makeStringAndClear
()
);
}
}
...
...
svl/inc/svl/style.hxx
Dosyayı görüntüle @
1ed856c2
...
@@ -173,7 +173,7 @@ public:
...
@@ -173,7 +173,7 @@ public:
virtual
SfxStyleSheetBase
*
operator
[](
sal_uInt16
nIdx
);
virtual
SfxStyleSheetBase
*
operator
[](
sal_uInt16
nIdx
);
virtual
SfxStyleSheetBase
*
First
();
virtual
SfxStyleSheetBase
*
First
();
virtual
SfxStyleSheetBase
*
Next
();
virtual
SfxStyleSheetBase
*
Next
();
virtual
SfxStyleSheetBase
*
Find
(
const
Uni
String
&
rStr
);
virtual
SfxStyleSheetBase
*
Find
(
const
rtl
::
OU
String
&
rStr
);
virtual
~
SfxStyleSheetIterator
();
virtual
~
SfxStyleSheetIterator
();
protected
:
protected
:
...
...
svl/source/items/style.cxx
Dosyayı görüntüle @
1ed856c2
...
@@ -497,9 +497,9 @@ SfxStyleSheetBase* SfxStyleSheetIterator::Next()
...
@@ -497,9 +497,9 @@ SfxStyleSheetBase* SfxStyleSheetIterator::Next()
}
}
SfxStyleSheetBase
*
SfxStyleSheetIterator
::
Find
(
const
Xub
String
&
rStr
)
SfxStyleSheetBase
*
SfxStyleSheetIterator
::
Find
(
const
rtl
::
OU
String
&
rStr
)
{
{
for
(
sal_uInt16
n
=
0
;
n
<
pBasePool
->
aStyles
.
size
();
n
++
)
for
(
sal_uInt16
n
=
0
;
n
<
pBasePool
->
aStyles
.
size
();
++
n
)
{
{
SfxStyleSheetBase
*
pStyle
=
pBasePool
->
aStyles
[
n
].
get
();
SfxStyleSheetBase
*
pStyle
=
pBasePool
->
aStyles
[
n
].
get
();
...
...
sw/inc/docstyle.hxx
Dosyayı görüntüle @
1ed856c2
...
@@ -177,7 +177,7 @@ public:
...
@@ -177,7 +177,7 @@ public:
virtual
SfxStyleSheetBase
*
operator
[](
sal_uInt16
nIdx
);
virtual
SfxStyleSheetBase
*
operator
[](
sal_uInt16
nIdx
);
virtual
SfxStyleSheetBase
*
First
();
virtual
SfxStyleSheetBase
*
First
();
virtual
SfxStyleSheetBase
*
Next
();
virtual
SfxStyleSheetBase
*
Next
();
virtual
SfxStyleSheetBase
*
Find
(
const
Uni
String
&
rStr
);
virtual
SfxStyleSheetBase
*
Find
(
const
rtl
::
OU
String
&
rStr
);
virtual
void
Notify
(
SfxBroadcaster
&
,
const
SfxHint
&
);
virtual
void
Notify
(
SfxBroadcaster
&
,
const
SfxHint
&
);
};
};
...
...
sw/source/ui/app/docstyle.cxx
Dosyayı görüntüle @
1ed856c2
...
@@ -311,8 +311,8 @@ const SwNumRule* lcl_FindNumRule( SwDoc& rDoc,
...
@@ -311,8 +311,8 @@ const SwNumRule* lcl_FindNumRule( SwDoc& rDoc,
}
}
sal_uInt16
lcl_FindName
(
const
SwPoolFmtList
&
rLst
,
SfxStyleFamily
eFam
,
sal_uInt16
lcl_FindName
(
const
SwPoolFmtList
&
rLst
,
SfxStyleFamily
eFam
,
const
String
&
rName
)
const
rtl
::
OUString
&
rName
)
{
{
if
(
!
rLst
.
empty
())
if
(
!
rLst
.
empty
())
{
{
...
@@ -2762,7 +2762,7 @@ SfxStyleSheetBase* SwStyleSheetIterator::Next()
...
@@ -2762,7 +2762,7 @@ SfxStyleSheetBase* SwStyleSheetIterator::Next()
return
0
;
return
0
;
}
}
SfxStyleSheetBase
*
SwStyleSheetIterator
::
Find
(
const
UniString
&
rName
)
SfxStyleSheetBase
*
SwStyleSheetIterator
::
Find
(
const
rtl
::
OUString
&
rName
)
{
{
// searching
// searching
if
(
!
bFirstCalled
)
if
(
!
bFirstCalled
)
...
...
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