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
02fd846d
Kaydet (Commit)
02fd846d
authored
Eyl 17, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert Link<> to typed
Change-Id: I6c0898db47b39648bb143ad040864c0279269f96
üst
b1263112
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
AppDetailPageHelper.cxx
dbaccess/source/ui/app/AppDetailPageHelper.cxx
+2
-2
AppDetailPageHelper.hxx
dbaccess/source/ui/app/AppDetailPageHelper.hxx
+1
-1
dbtreelistbox.hxx
dbaccess/source/ui/inc/dbtreelistbox.hxx
+2
-2
No files found.
dbaccess/source/ui/app/AppDetailPageHelper.cxx
Dosyayı görüntüle @
02fd846d
...
...
@@ -904,9 +904,9 @@ void OAppDetailPageHelper::elementRemoved( ElementType _eType,const OUString& _r
}
}
IMPL_LINK
(
OAppDetailPageHelper
,
OnEntryEnterKey
,
void
*
,
_pTree
)
IMPL_LINK
_TYPED
(
OAppDetailPageHelper
,
OnEntryEnterKey
,
DBTreeListBox
*
,
_pTree
,
void
)
{
return
OnEntryDoubleClick
(
static_cast
<
SvTreeListBox
*>
(
_pTree
))
?
0
:
1
;
OnEntryDoubleClick
(
_pTree
)
;
}
IMPL_LINK_TYPED
(
OAppDetailPageHelper
,
OnEntryDoubleClick
,
SvTreeListBox
*
,
_pTree
,
bool
)
{
...
...
dbaccess/source/ui/app/AppDetailPageHelper.hxx
Dosyayı görüntüle @
02fd846d
...
...
@@ -152,7 +152,7 @@ namespace dbaui
DBTreeListBox
*
createSimpleTree
(
const
OString
&
_sHelpId
,
const
Image
&
_rImage
);
DECL_LINK_TYPED
(
OnEntryDoubleClick
,
SvTreeListBox
*
,
bool
);
DECL_LINK
(
OnEntryEnterKey
,
void
*
);
DECL_LINK
_TYPED
(
OnEntryEnterKey
,
DBTreeListBox
*
,
void
);
DECL_LINK_TYPED
(
OnEntrySelChange
,
LinkParamNone
*
,
void
);
DECL_LINK_TYPED
(
OnCutEntry
,
LinkParamNone
*
,
void
);
...
...
dbaccess/source/ui/inc/dbtreelistbox.hxx
Dosyayı görüntüle @
02fd846d
...
...
@@ -66,7 +66,7 @@ namespace dbaui
Link
<
LinkParamNone
*
,
void
>
m_aCopyHandler
;
// called when someone press CTRL+C
Link
<
LinkParamNone
*
,
void
>
m_aPasteHandler
;
// called when someone press CTRL+V
Link
<
LinkParamNone
*
,
void
>
m_aDeleteHandler
;
// called when someone press DELETE Key
Link
<
>
m_aEnterKeyHdl
;
Link
<
DBTreeListBox
*
,
void
>
m_aEnterKeyHdl
;
bool
m_bHandleEnterKey
;
...
...
@@ -117,7 +117,7 @@ namespace dbaui
virtual
PopupMenu
*
CreateContextMenu
()
SAL_OVERRIDE
;
virtual
void
ExcecuteContextMenuAction
(
sal_uInt16
nSelectedPopupEntry
)
SAL_OVERRIDE
;
void
SetEnterKeyHdl
(
const
Link
<>&
rNewHdl
)
{
m_aEnterKeyHdl
=
rNewHdl
;}
void
SetEnterKeyHdl
(
const
Link
<
DBTreeListBox
*
,
void
>&
rNewHdl
)
{
m_aEnterKeyHdl
=
rNewHdl
;}
void
clearCurrentSelection
()
{
m_aSelectedEntries
.
clear
();
}
...
...
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