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
c12b84bf
Kaydet (Commit)
c12b84bf
authored
Agu 27, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert include/sfx2/evntconfig.hxx from String to OUString
Change-Id: I86465e9c7fbf2e53c790862f11a9f40fd75b3e4a
üst
1d7eda00
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
evntconf.hxx
include/sfx2/evntconf.hxx
+5
-5
evntconf.cxx
sfx2/source/config/evntconf.cxx
+2
-2
No files found.
include/sfx2/evntconf.hxx
Dosyayı görüntüle @
c12b84bf
...
...
@@ -36,12 +36,12 @@ class SvxMacroTableDtor;
struct
SFX2_DLLPUBLIC
SfxEventName
{
sal_uInt16
mnId
;
String
maEventName
;
String
maUIName
;
OUString
maEventName
;
OUString
maUIName
;
SfxEventName
(
sal_uInt16
nId
,
const
String
&
rEventName
,
const
String
&
rUIName
)
const
OU
String
&
rEventName
,
const
OU
String
&
rUIName
)
:
mnId
(
nId
)
,
maEventName
(
rEventName
)
,
maUIName
(
rUIName
)
{}
...
...
@@ -91,7 +91,7 @@ public:
const
SfxEventNamesList
&
GetEvents
()
const
{
return
aEventsList
;}
void
SetEvents
(
const
SfxEventNamesList
&
rList
)
{
aEventsList
=
rList
;
}
void
AddEvent
(
const
String
&
,
const
String
&
,
sal_uInt16
);
void
AddEvent
(
const
OUString
&
,
const
OU
String
&
,
sal_uInt16
);
};
// -----------------------------------------------------------------------
...
...
sfx2/source/config/evntconf.cxx
Dosyayı görüntüle @
c12b84bf
...
...
@@ -131,9 +131,9 @@ sal_uInt16 SfxEventNamesItem::GetVersion( sal_uInt16 ) const
return
0
;
}
void
SfxEventNamesItem
::
AddEvent
(
const
String
&
rName
,
const
String
&
rUIName
,
sal_uInt16
nID
)
void
SfxEventNamesItem
::
AddEvent
(
const
OUString
&
rName
,
const
OU
String
&
rUIName
,
sal_uInt16
nID
)
{
aEventsList
.
push_back
(
new
SfxEventName
(
nID
,
rName
,
rUIName
.
Len
()
?
rUIName
:
rName
)
);
aEventsList
.
push_back
(
new
SfxEventName
(
nID
,
rName
,
!
rUIName
.
isEmpty
()
?
rUIName
:
rName
)
);
}
...
...
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