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
9909daaa
Kaydet (Commit)
9909daaa
authored
Eyl 17, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert sc/source/ui/inc/viewutil.hxx from String to OUString
Change-Id: Ic7bc275a80bcbb6dd6b25eaaec2b8cebac90e822
üst
0ddb8a1c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
7 deletions
+6
-7
drtxtob.cxx
sc/source/ui/drawfunc/drtxtob.cxx
+2
-2
viewutil.hxx
sc/source/ui/inc/viewutil.hxx
+1
-2
editsh.cxx
sc/source/ui/view/editsh.cxx
+2
-2
viewutil.cxx
sc/source/ui/view/viewutil.cxx
+1
-1
No files found.
sc/source/ui/drawfunc/drtxtob.cxx
Dosyayı görüntüle @
9909daaa
...
...
@@ -214,7 +214,7 @@ void ScDrawTextObjectBar::Execute( SfxRequest &rReq )
const
SvxFontItem
&
rItem
=
(
const
SvxFontItem
&
)
pOutView
->
GetAttribs
().
Get
(
EE_CHAR_FONTINFO
);
String
aString
;
OU
String
aString
;
SvxFontItem
aNewItem
(
EE_CHAR_FONTINFO
);
const
SfxItemSet
*
pArgs
=
rReq
.
GetArgs
();
...
...
@@ -242,7 +242,7 @@ void ScDrawTextObjectBar::Execute( SfxRequest &rReq )
else
ScViewUtil
::
ExecuteCharMap
(
rItem
,
*
pViewData
->
GetViewShell
()
->
GetViewFrame
(),
aNewItem
,
aString
);
if
(
aString
.
Len
()
)
if
(
!
aString
.
isEmpty
()
)
{
SfxItemSet
aSet
(
pOutliner
->
GetEmptyItemSet
()
);
aSet
.
Put
(
aNewItem
);
...
...
sc/source/ui/inc/viewutil.hxx
Dosyayı görüntüle @
9909daaa
...
...
@@ -23,7 +23,6 @@
#include <tools/solar.h>
#include <sal/types.h>
class
String
;
class
SfxItemSet
;
class
SfxBindings
;
class
SvxFontItem
;
...
...
@@ -47,7 +46,7 @@ public:
static
sal_Bool
ExecuteCharMap
(
const
SvxFontItem
&
rOldFont
,
SfxViewFrame
&
rFrame
,
SvxFontItem
&
rNewFont
,
String
&
rString
);
OUString
&
rString
);
static
sal_Bool
IsActionShown
(
const
ScChangeAction
&
rAction
,
const
ScChangeViewSettings
&
rSettings
,
...
...
sc/source/ui/view/editsh.cxx
Dosyayı görüntüle @
9909daaa
...
...
@@ -338,7 +338,7 @@ void ScEditShell::Execute( SfxRequest& rReq )
const
SvxFontItem
&
rItem
=
(
const
SvxFontItem
&
)
pTableView
->
GetAttribs
().
Get
(
nFontWhich
);
String
aString
;
OU
String
aString
;
SvxFontItem
aNewItem
(
EE_CHAR_FONTINFO
);
const
SfxItemSet
*
pArgs
=
rReq
.
GetArgs
();
...
...
@@ -372,7 +372,7 @@ void ScEditShell::Execute( SfxRequest& rReq )
return
;
}
if
(
aString
.
Len
()
)
if
(
!
aString
.
isEmpty
()
)
{
// if string contains WEAK characters, set all fonts
sal_uInt8
nSetScript
;
...
...
sc/source/ui/view/viewutil.cxx
Dosyayı görüntüle @
9909daaa
...
...
@@ -342,7 +342,7 @@ void ScViewUtil::HideDisabledSlot( SfxItemSet& rSet, SfxBindings& rBindings, sal
sal_Bool
ScViewUtil
::
ExecuteCharMap
(
const
SvxFontItem
&
rOldFont
,
SfxViewFrame
&
rFrame
,
SvxFontItem
&
rNewFont
,
String
&
rString
)
OUString
&
rString
)
{
sal_Bool
bRet
=
false
;
SvxAbstractDialogFactory
*
pFact
=
SvxAbstractDialogFactory
::
Create
();
...
...
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