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
e0c6780f
Kaydet (Commit)
e0c6780f
authored
Agu 28, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert sfx2/source/inc/workwin.hxx from String to OUString
Change-Id: I4c6cdbef4a24f389f7e74def94ced7ddb4a3c56e
üst
32876369
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
workwin.cxx
sfx2/source/appl/workwin.cxx
+2
-2
dispatch.cxx
sfx2/source/control/dispatch.cxx
+2
-2
workwin.hxx
sfx2/source/inc/workwin.hxx
+4
-4
No files found.
sfx2/source/appl/workwin.cxx
Dosyayı görüntüle @
e0c6780f
...
...
@@ -1143,7 +1143,7 @@ void SfxWorkWindow::ResetObjectBars_Impl()
//------------------------------------------------------------------------
void
SfxWorkWindow
::
SetObjectBar_Impl
(
sal_uInt16
nPos
,
sal_uInt32
nResId
,
SfxInterface
*
pIFace
,
const
String
*
pName
)
SfxInterface
*
pIFace
,
const
OU
String
*
pName
)
{
DBG_ASSERT
(
(
nPos
&
SFX_POSITION_MASK
)
<
SFX_OBJECTBAR_MAX
,
"object bar position overflow"
);
...
...
@@ -1163,7 +1163,7 @@ void SfxWorkWindow::SetObjectBar_Impl( sal_uInt16 nPos, sal_uInt32 nResId,
if
(
pName
)
aObjBar
.
aName
=
*
pName
;
else
aObjBar
.
aName
.
Erase
()
;
aObjBar
.
aName
=
""
;
for
(
sal_uInt16
n
=
0
;
n
<
aObjBarList
.
size
();
n
++
)
{
...
...
sfx2/source/control/dispatch.cxx
Dosyayı görüntüle @
e0c6780f
...
...
@@ -96,7 +96,7 @@ struct SfxObjectBars_Impl
{
sal_uInt32
nResId
;
// Resource - and ConfigId of the Toolbox
sal_uInt16
nMode
;
// special visibility flags
String
aName
;
OUString
aName
;
SfxInterface
*
pIFace
;
SfxObjectBars_Impl
()
:
nResId
(
0
),
nMode
(
0
),
pIFace
(
NULL
)
{}
...
...
@@ -1445,7 +1445,7 @@ void SfxDispatcher::_Update_Impl( sal_Bool bUIActive, sal_Bool bIsMDIApp, sal_Bo
if
(
pName
)
rBar
.
aName
=
*
pName
;
else
rBar
.
aName
.
Erase
()
;
rBar
.
aName
=
""
;
rBar
.
pIFace
=
pIFace
;
if
(
bUIActive
||
bIsActive
)
...
...
sfx2/source/inc/workwin.hxx
Dosyayı görüntüle @
e0c6780f
...
...
@@ -50,9 +50,9 @@ struct SfxObjectBar_Impl
sal_uInt16
nMode
;
// special visibility flags
sal_uInt16
nPos
;
sal_uInt16
nIndex
;
sal_Bool
bDestroy
;
String
aName
;
SfxInterface
*
pIFace
;
sal_Bool
bDestroy
;
OUString
aName
;
SfxInterface
*
pIFace
;
SfxObjectBar_Impl
()
:
nId
(
0
),
...
...
@@ -293,7 +293,7 @@ public:
virtual
void
UpdateObjectBars_Impl
();
void
ResetObjectBars_Impl
();
void
SetObjectBar_Impl
(
sal_uInt16
nPos
,
sal_uInt32
nResId
,
SfxInterface
*
pIFace
,
const
String
*
pName
=
0
);
SfxInterface
*
pIFace
,
const
OU
String
*
pName
=
0
);
bool
KnowsObjectBar_Impl
(
sal_uInt16
nPos
)
const
;
sal_Bool
IsVisible_Impl
();
void
MakeVisible_Impl
(
sal_Bool
);
...
...
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