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
14c1ffe5
Kaydet (Commit)
14c1ffe5
authored
Ara 15, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
vbahelper: Use appropriate OUString functions on string constants
Change-Id: Iabe3deccf77a79db03909b8ae6ab70322cf0ffba
üst
514b5d69
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
vbacommandbar.cxx
vbahelper/source/vbahelper/vbacommandbar.cxx
+1
-1
vbacommandbarcontrols.cxx
vbahelper/source/vbahelper/vbacommandbarcontrols.cxx
+1
-1
No files found.
vbahelper/source/vbahelper/vbacommandbar.cxx
Dosyayı görüntüle @
14c1ffe5
...
...
@@ -50,7 +50,7 @@ ScVbaCommandBar::getName() throw ( uno::RuntimeException, std::exception )
{
if
(
m_bIsMenu
)
{
if
(
m_sResourceUrl
.
equalsAscii
(
ITEM_MENUBAR_URL
)
)
if
(
m_sResourceUrl
==
ITEM_MENUBAR_URL
)
{
if
(
pCBarHelper
->
getModuleId
()
==
"com.sun.star.sheet.SpreadsheetDocument"
)
sName
=
"Worksheet Menu Bar"
;
...
...
vbahelper/source/vbahelper/vbacommandbarcontrols.cxx
Dosyayı görüntüle @
14c1ffe5
...
...
@@ -49,7 +49,7 @@ public:
ScVbaCommandBarControls
::
ScVbaCommandBarControls
(
const
uno
::
Reference
<
XHelperInterface
>&
xParent
,
const
uno
::
Reference
<
uno
::
XComponentContext
>&
xContext
,
const
uno
::
Reference
<
container
::
XIndexAccess
>&
xIndexAccess
,
VbaCommandBarHelperRef
pHelper
,
const
uno
::
Reference
<
container
::
XIndexAccess
>&
xBarSettings
,
const
OUString
&
sResourceUrl
)
throw
(
uno
::
RuntimeException
)
:
CommandBarControls_BASE
(
xParent
,
xContext
,
xIndexAccess
),
pCBarHelper
(
pHelper
),
m_xBarSettings
(
xBarSettings
),
m_sResourceUrl
(
sResourceUrl
)
{
m_bIsMenu
=
sResourceUrl
.
equalsAscii
(
ITEM_MENUBAR_URL
)
?
sal_True
:
sal_False
;
m_bIsMenu
=
sResourceUrl
==
ITEM_MENUBAR_URL
;
}
uno
::
Sequence
<
beans
::
PropertyValue
>
ScVbaCommandBarControls
::
CreateMenuItemData
(
const
OUString
&
sCommandURL
,
...
...
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