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
9cfa2872
Kaydet (Commit)
9cfa2872
authored
Eki 16, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert Link<> to typed
Change-Id: I04987cc8c3eab52a7191d75cf0a9cde9049bfbd4
üst
1ff75530
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
9 deletions
+8
-9
condformatdlg.cxx
sc/source/ui/condformat/condformatdlg.cxx
+5
-6
condformatdlgentry.cxx
sc/source/ui/condformat/condformatdlgentry.cxx
+1
-1
condformatdlg.hxx
sc/source/ui/inc/condformatdlg.hxx
+1
-1
condformatdlgentry.hxx
sc/source/ui/inc/condformatdlgentry.hxx
+1
-1
No files found.
sc/source/ui/condformat/condformatdlg.cxx
Dosyayı görüntüle @
9cfa2872
...
...
@@ -112,7 +112,7 @@ void ScCondFormatList::init(ScDocument* pDoc, ScCondFormatDlg* pDialogParent,
}
}
if
(
nCount
)
EntrySelectHdl
(
maEntries
[
0
].
get
());
EntrySelectHdl
(
*
maEntries
[
0
].
get
());
}
else
{
...
...
@@ -388,10 +388,10 @@ IMPL_LINK_NOARG_TYPED( ScCondFormatList, RemoveBtnHdl, Button*, void )
RecalcAll
();
}
IMPL_LINK
(
ScCondFormatList
,
EntrySelectHdl
,
ScCondFrmtEntry
*
,
pEntry
)
IMPL_LINK
_TYPED
(
ScCondFormatList
,
EntrySelectHdl
,
ScCondFrmtEntry
&
,
rEntry
,
void
)
{
if
(
pEntry
->
IsSelected
())
return
0
;
if
(
rEntry
.
IsSelected
())
return
;
//A child has focus, but we will hide that, so regrab to whatever new thing gets
//shown instead of leaving it stuck in the inaccessible hidden element
...
...
@@ -401,11 +401,10 @@ IMPL_LINK( ScCondFormatList, EntrySelectHdl, ScCondFrmtEntry*, pEntry )
(
*
itr
)
->
SetInactive
();
}
mpDialogParent
->
InvalidateRefData
();
pEntry
->
SetActive
();
rEntry
.
SetActive
();
RecalcAll
();
if
(
bReGrabFocus
)
GrabFocus
();
return
0
;
}
IMPL_LINK_NOARG_TYPED
(
ScCondFormatList
,
ScrollHdl
,
ScrollBar
*
,
void
)
...
...
sc/source/ui/condformat/condformatdlgentry.cxx
Dosyayı görüntüle @
9cfa2872
...
...
@@ -78,7 +78,7 @@ bool ScCondFrmtEntry::Notify( NotifyEvent& rNEvt )
{
if
(
rNEvt
.
GetType
()
==
MouseNotifyEvent
::
MOUSEBUTTONDOWN
)
{
ImplCallEventListenersAndHandler
(
VCLEVENT_WINDOW_MOUSEBUTTONDOWN
,
[
this
]
()
{
maClickHdl
.
Call
(
this
);
}
);
ImplCallEventListenersAndHandler
(
VCLEVENT_WINDOW_MOUSEBUTTONDOWN
,
[
this
]
()
{
maClickHdl
.
Call
(
*
this
);
}
);
}
return
Control
::
Notify
(
rNEvt
);
}
...
...
sc/source/ui/inc/condformatdlg.hxx
Dosyayı görüntüle @
9cfa2872
...
...
@@ -89,7 +89,7 @@ public:
DECL_LINK_TYPED
(
AddBtnHdl
,
Button
*
,
void
);
DECL_LINK_TYPED
(
RemoveBtnHdl
,
Button
*
,
void
);
DECL_LINK_TYPED
(
ScrollHdl
,
ScrollBar
*
,
void
);
DECL_LINK
(
EntrySelectHdl
,
ScCondFrmtEntry
*
);
DECL_LINK
_TYPED
(
EntrySelectHdl
,
ScCondFrmtEntry
&
,
void
);
DECL_LINK_TYPED
(
TypeListHdl
,
ListBox
&
,
void
);
DECL_LINK_TYPED
(
AfterTypeListHdl
,
void
*
,
void
);
...
...
sc/source/ui/inc/condformatdlgentry.hxx
Dosyayı görüntüle @
9cfa2872
...
...
@@ -43,7 +43,7 @@ class ScCondFrmtEntry : public Control
private
:
bool
mbActive
;
Link
<>
maClickHdl
;
Link
<
ScCondFrmtEntry
&
,
void
>
maClickHdl
;
//general ui elements
VclPtr
<
FixedText
>
maFtCondNr
;
...
...
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