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
913d6fb1
Kaydet (Commit)
913d6fb1
authored
Haz 19, 2013
tarafından
Takeshi Abe
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Mark as const
Change-Id: Ib7f8aeeca64868fa2037145613023a6abfef7648
üst
c9744719
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
keycod.cxx
vcl/source/window/keycod.cxx
+1
-1
mnemonic.cxx
vcl/source/window/mnemonic.cxx
+2
-2
No files found.
vcl/source/window/keycod.cxx
Dosyayı görüntüle @
913d6fb1
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
// =======================================================================
// =======================================================================
static
sal_uInt16
aImplKeyFuncTab
[(
KEYFUNC_FRONT
+
1
)
*
4
]
=
static
const
sal_uInt16
aImplKeyFuncTab
[(
KEYFUNC_FRONT
+
1
)
*
4
]
=
{
{
0
,
0
,
0
,
0
,
// KEYFUNC_DONTKNOW
0
,
0
,
0
,
0
,
// KEYFUNC_DONTKNOW
KEY_N
|
KEY_MOD1
,
0
,
0
,
0
,
// KEYFUNC_NEW
KEY_N
|
KEY_MOD1
,
0
,
0
,
0
,
// KEYFUNC_NEW
...
...
vcl/source/window/mnemonic.cxx
Dosyayı görüntüle @
913d6fb1
...
@@ -279,14 +279,14 @@ sal_Bool MnemonicGenerator::CreateMnemonic( XubString& rKey )
...
@@ -279,14 +279,14 @@ sal_Bool MnemonicGenerator::CreateMnemonic( XubString& rKey )
nIndex
=
rKey
.
Len
();
nIndex
=
rKey
.
Len
();
if
(
nIndex
>=
2
)
if
(
nIndex
>=
2
)
{
{
static
sal_Unicode
cGreaterGreater
[]
=
{
0xFF1E
,
0xFF1E
};
static
const
sal_Unicode
cGreaterGreater
[]
=
{
0xFF1E
,
0xFF1E
};
if
(
rKey
.
EqualsAscii
(
">>"
,
nIndex
-
2
,
2
)
||
if
(
rKey
.
EqualsAscii
(
">>"
,
nIndex
-
2
,
2
)
||
rKey
.
Equals
(
cGreaterGreater
,
nIndex
-
2
,
2
)
)
rKey
.
Equals
(
cGreaterGreater
,
nIndex
-
2
,
2
)
)
nIndex
-=
2
;
nIndex
-=
2
;
}
}
if
(
nIndex
>=
3
)
if
(
nIndex
>=
3
)
{
{
static
sal_Unicode
cDotDotDot
[]
=
{
0xFF0E
,
0xFF0E
,
0xFF0E
};
static
const
sal_Unicode
cDotDotDot
[]
=
{
0xFF0E
,
0xFF0E
,
0xFF0E
};
if
(
rKey
.
EqualsAscii
(
"..."
,
nIndex
-
3
,
3
)
||
if
(
rKey
.
EqualsAscii
(
"..."
,
nIndex
-
3
,
3
)
||
rKey
.
Equals
(
cDotDotDot
,
nIndex
-
3
,
3
)
)
rKey
.
Equals
(
cDotDotDot
,
nIndex
-
3
,
3
)
)
nIndex
-=
3
;
nIndex
-=
3
;
...
...
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