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
b1263112
Kaydet (Commit)
b1263112
authored
Eyl 17, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove unused Link<> fields
Change-Id: I25bcec20f3a981ea681e29a0a1ef0726fa5e7e1c
üst
d048ba56
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
9 deletions
+2
-9
dbtreelistbox.cxx
dbaccess/source/ui/control/dbtreelistbox.cxx
+2
-7
dbtreelistbox.hxx
dbaccess/source/ui/inc/dbtreelistbox.hxx
+0
-2
No files found.
dbaccess/source/ui/control/dbtreelistbox.cxx
Dosyayı görüntüle @
b1263112
...
@@ -378,9 +378,9 @@ void DBTreeListBox::KeyInput( const KeyEvent& rKEvt )
...
@@ -378,9 +378,9 @@ void DBTreeListBox::KeyInput( const KeyEvent& rKEvt )
SvTreeListBox
::
KeyInput
(
rKEvt
);
SvTreeListBox
::
KeyInput
(
rKEvt
);
}
}
bool
DBTreeListBox
::
EditingEntry
(
SvTreeListEntry
*
pEntry
,
Selection
&
/*_aSelection*/
)
bool
DBTreeListBox
::
EditingEntry
(
SvTreeListEntry
*
/*pEntry*/
,
Selection
&
/*_aSelection*/
)
{
{
return
m_aEditingHandler
.
Call
(
pEntry
)
!=
0
;
return
false
;
}
}
bool
DBTreeListBox
::
EditedEntry
(
SvTreeListEntry
*
pEntry
,
const
OUString
&
rNewText
)
bool
DBTreeListBox
::
EditedEntry
(
SvTreeListEntry
*
pEntry
,
const
OUString
&
rNewText
)
...
@@ -388,11 +388,6 @@ bool DBTreeListBox::EditedEntry( SvTreeListEntry* pEntry, const OUString& rNewTe
...
@@ -388,11 +388,6 @@ bool DBTreeListBox::EditedEntry( SvTreeListEntry* pEntry, const OUString& rNewTe
DBTreeEditedEntry
aEntry
;
DBTreeEditedEntry
aEntry
;
aEntry
.
pEntry
=
pEntry
;
aEntry
.
pEntry
=
pEntry
;
aEntry
.
aNewText
=
rNewText
;
aEntry
.
aNewText
=
rNewText
;
if
(
m_aEditedHandler
.
Call
(
&
aEntry
)
!=
0
)
{
implStopSelectionTimer
();
m_aSelectedEntries
.
erase
(
pEntry
);
}
SetEntryText
(
pEntry
,
aEntry
.
aNewText
);
SetEntryText
(
pEntry
,
aEntry
.
aNewText
);
return
false
;
// we never want that the base change our text
return
false
;
// we never want that the base change our text
...
...
dbaccess/source/ui/inc/dbtreelistbox.hxx
Dosyayı görüntüle @
b1263112
...
@@ -66,8 +66,6 @@ namespace dbaui
...
@@ -66,8 +66,6 @@ namespace dbaui
Link
<
LinkParamNone
*
,
void
>
m_aCopyHandler
;
// called when someone press CTRL+C
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_aPasteHandler
;
// called when someone press CTRL+V
Link
<
LinkParamNone
*
,
void
>
m_aDeleteHandler
;
// called when someone press DELETE Key
Link
<
LinkParamNone
*
,
void
>
m_aDeleteHandler
;
// called when someone press DELETE Key
Link
<>
m_aEditingHandler
;
// called before someone will edit an entry
Link
<>
m_aEditedHandler
;
// called after someone edited an entry
Link
<>
m_aEnterKeyHdl
;
Link
<>
m_aEnterKeyHdl
;
bool
m_bHandleEnterKey
;
bool
m_bHandleEnterKey
;
...
...
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