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
9d17e125
Kaydet (Commit)
9d17e125
authored
May 01, 2015
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Audit LoseFocus - basctl, cui, dbaccess.
Change-Id: If61b45f28f30e3ab00dbf071198233d59899d719
üst
c6f0b726
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
23 additions
and
6 deletions
+23
-6
hangulhanjadlg.cxx
cui/source/dialogs/hangulhanjadlg.cxx
+13
-2
hangulhanjadlg.hxx
cui/source/inc/hangulhanjadlg.hxx
+1
-0
FieldDescControl.cxx
dbaccess/source/ui/control/FieldDescControl.cxx
+0
-1
TableWindowTitle.cxx
dbaccess/source/ui/querydesign/TableWindowTitle.cxx
+6
-1
FieldDescGenWin.cxx
dbaccess/source/ui/tabledesign/FieldDescGenWin.cxx
+2
-1
treelistbox.cxx
svtools/source/contnr/treelistbox.cxx
+1
-1
No files found.
cui/source/dialogs/hangulhanjadlg.cxx
Dosyayı görüntüle @
9d17e125
...
...
@@ -420,6 +420,11 @@ namespace svx
implUpdateDisplay
();
}
bool
SuggestionDisplay
::
hasCurrentControl
()
{
return
m_bDisplayListBox
||
m_aValueSet
;
}
Control
&
SuggestionDisplay
::
implGetCurrentControl
()
{
if
(
m_bDisplayListBox
)
...
...
@@ -445,11 +450,17 @@ namespace svx
}
void
SuggestionDisplay
::
GetFocus
()
{
implGetCurrentControl
().
GetFocus
();
if
(
hasCurrentControl
())
implGetCurrentControl
().
GetFocus
();
else
Control
::
LoseFocus
();
}
void
SuggestionDisplay
::
LoseFocus
()
{
implGetCurrentControl
().
LoseFocus
();
if
(
hasCurrentControl
())
implGetCurrentControl
().
LoseFocus
();
else
Control
::
LoseFocus
();
}
void
SuggestionDisplay
::
Command
(
const
CommandEvent
&
rCEvt
)
{
...
...
cui/source/inc/hangulhanjadlg.hxx
Dosyayı görüntüle @
9d17e125
...
...
@@ -85,6 +85,7 @@ namespace svx
private
:
void
implUpdateDisplay
();
bool
hasCurrentControl
();
Control
&
implGetCurrentControl
();
private
:
...
...
dbaccess/source/ui/control/FieldDescControl.cxx
Dosyayı görüntüle @
9d17e125
...
...
@@ -1594,7 +1594,6 @@ void OFieldDescControl::implFocusLost(vcl::Window* _pWhich)
void
OFieldDescControl
::
LoseFocus
()
{
implFocusLost
(
NULL
);
TabPage
::
LoseFocus
();
...
...
dbaccess/source/ui/querydesign/TableWindowTitle.cxx
Dosyayı görüntüle @
9d17e125
...
...
@@ -68,11 +68,16 @@ void OTableWindowTitle::GetFocus()
{
if
(
m_pTabWin
)
m_pTabWin
->
GetFocus
();
else
FixedText
::
GetFocus
();
}
void
OTableWindowTitle
::
LoseFocus
()
{
m_pTabWin
->
LoseFocus
();
if
(
m_pTabWin
)
m_pTabWin
->
LoseFocus
();
else
FixedText
::
LoseFocus
();
}
void
OTableWindowTitle
::
RequestHelp
(
const
HelpEvent
&
rHEvt
)
...
...
dbaccess/source/ui/tabledesign/FieldDescGenWin.cxx
Dosyayı görüntüle @
9d17e125
...
...
@@ -106,7 +106,8 @@ void OFieldDescGenWin::GetFocus()
void
OFieldDescGenWin
::
LoseFocus
()
{
m_pFieldControl
->
LoseFocus
();
if
(
m_pFieldControl
)
m_pFieldControl
->
LoseFocus
();
TabPage
::
LoseFocus
();
}
...
...
svtools/source/contnr/treelistbox.cxx
Dosyayı görüntüle @
9d17e125
...
...
@@ -2832,7 +2832,7 @@ SvTreeListEntry* SvTreeListBox::GetEntry( const Point& rPos, bool bHit ) const
SvTreeListEntry
*
SvTreeListBox
::
GetCurEntry
()
const
{
return
pImp
->
GetCurEntry
()
;
return
pImp
?
pImp
->
GetCurEntry
()
:
NULL
;
}
void
SvTreeListBox
::
ImplInitStyle
()
...
...
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