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
1a3a7877
Kaydet (Commit)
1a3a7877
authored
Eki 11, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
import password echo char setting
Change-Id: I36a82a8bb915e72a191787a2e44f9bd814271ea1
üst
f2734389
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
password.ui
sfx2/uiconfig/ui/password.ui
+4
-4
edit.cxx
vcl/source/control/edit.cxx
+8
-0
No files found.
sfx2/uiconfig/ui/password.ui
Dosyayı görüntüle @
1a3a7877
...
...
@@ -156,7 +156,7 @@
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"hexpand"
>
True
</property>
<property
name=
"
editable
"
>
False
</property>
<property
name=
"
visibility
"
>
False
</property>
<property
name=
"invisible_char"
>
●
</property>
<property
name=
"invisible_char_set"
>
True
</property>
</object>
...
...
@@ -172,7 +172,7 @@
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"hexpand"
>
True
</property>
<property
name=
"
editable
"
>
False
</property>
<property
name=
"
visibility
"
>
False
</property>
<property
name=
"invisible_char"
>
●
</property>
<property
name=
"invisible_char_set"
>
True
</property>
</object>
...
...
@@ -252,7 +252,7 @@
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"hexpand"
>
True
</property>
<property
name=
"
editable
"
>
False
</property>
<property
name=
"
visibility
"
>
False
</property>
<property
name=
"invisible_char"
>
●
</property>
<property
name=
"invisible_char_set"
>
True
</property>
</object>
...
...
@@ -268,7 +268,7 @@
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"hexpand"
>
True
</property>
<property
name=
"
editable
"
>
False
</property>
<property
name=
"
visibility
"
>
False
</property>
<property
name=
"invisible_char"
>
●
</property>
<property
name=
"invisible_char_set"
>
True
</property>
</object>
...
...
vcl/source/control/edit.cxx
Dosyayı görüntüle @
1a3a7877
...
...
@@ -234,6 +234,14 @@ bool Edit::set_property(const rtl::OString &rKey, const rtl::OString &rValue)
SetMaxWidthInChars
(
rValue
.
toInt32
());
else
if
(
rKey
==
"editable"
)
SetReadOnly
(
!
toBool
(
rValue
));
else
if
(
rKey
==
"visibility"
)
{
WinBits
nBits
=
GetStyle
();
nBits
&=
~
(
WB_PASSWORD
);
if
(
!
toBool
(
rValue
))
nBits
|=
WB_PASSWORD
;
SetStyle
(
nBits
);
}
else
return
Control
::
set_property
(
rKey
,
rValue
);
return
true
;
...
...
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