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
e0f617aa
Kaydet (Commit)
e0f617aa
authored
Eyl 14, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert Link<> to typed
Change-Id: I8cd997f55f4c7206358cba9edd3d41dbedd4363f
üst
55cdab3b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
7 deletions
+5
-7
iodlg.cxx
fpicker/source/office/iodlg.cxx
+1
-3
iodlg.hxx
fpicker/source/office/iodlg.hxx
+1
-1
fileview.hxx
include/svtools/fileview.hxx
+1
-1
fileview.cxx
svtools/source/contnr/fileview.cxx
+2
-2
No files found.
fpicker/source/office/iodlg.cxx
Dosyayı görüntüle @
e0f617aa
...
...
@@ -1614,7 +1614,7 @@ IMPL_LINK_NOARG(SvtFileDialog, EntrySelectHdl_Impl)
IMPL_LINK
(
SvtFileDialog
,
OpenDoneHdl_Impl
,
SvtFileView
*
,
pView
)
IMPL_LINK
_TYPED
(
SvtFileDialog
,
OpenDoneHdl_Impl
,
SvtFileView
*
,
pView
,
void
)
{
OUString
sCurrentFolder
(
pView
->
GetViewURL
()
);
// check if we can create new folders
...
...
@@ -1632,8 +1632,6 @@ IMPL_LINK( SvtFileDialog, OpenDoneHdl_Impl, SvtFileView*, pView )
aCurrentFolder
.
removeSegment
();
}
EnableControl
(
_pImp
->
_pBtnUp
,
bCanTravelUp
);
return
0
;
}
...
...
fpicker/source/office/iodlg.hxx
Dosyayı görüntüle @
e0f617aa
...
...
@@ -123,7 +123,7 @@ private:
DECL_LINK_TYPED
(
SelectHdl_Impl
,
SvTreeListBox
*
,
void
);
DECL_LINK_TYPED
(
DblClickHdl_Impl
,
SvTreeListBox
*
,
bool
);
DECL_LINK
(
EntrySelectHdl_Impl
,
void
*
);
DECL_LINK
(
OpenDoneHdl_Impl
,
SvtFileView
*
);
DECL_LINK
_TYPED
(
OpenDoneHdl_Impl
,
SvtFileView
*
,
void
);
DECL_LINK_TYPED
(
AutoExtensionHdl_Impl
,
Button
*
,
void
);
DECL_LINK_TYPED
(
ClickHdl_Impl
,
Button
*
,
void
);
DECL_LINK_TYPED
(
PlayButtonHdl_Impl
,
Button
*
,
void
);
...
...
include/svtools/fileview.hxx
Dosyayı görüntüle @
e0f617aa
...
...
@@ -160,7 +160,7 @@ public:
void
SetSelectHdl
(
const
Link
<
SvTreeListBox
*
,
void
>&
rHdl
);
void
SetDoubleClickHdl
(
const
Link
<
SvTreeListBox
*
,
bool
>&
rHdl
);
void
SetOpenDoneHdl
(
const
Link
<>&
rHdl
);
void
SetOpenDoneHdl
(
const
Link
<
SvtFileView
*
,
void
>&
rHdl
);
sal_uLong
GetSelectionCount
()
const
;
SvTreeListEntry
*
FirstSelected
()
const
;
...
...
svtools/source/contnr/fileview.cxx
Dosyayı görüntüle @
e0f617aa
...
...
@@ -370,7 +370,7 @@ public:
OUString
maAllFilter
;
OUString
maCurrentFilter
;
Image
maFolderImage
;
Link
<
>
maOpenDoneLink
;
Link
<
SvtFileView
*
,
void
>
maOpenDoneLink
;
Reference
<
XCommandEnvironment
>
mxCmdEnv
;
SvtFileView_Impl
(
SvtFileView
*
pAntiImpl
,
Reference
<
XCommandEnvironment
>
xEnv
,
...
...
@@ -1286,7 +1286,7 @@ const OUString& SvtFileView::GetViewURL() const
return
mpImp
->
maViewURL
;
}
void
SvtFileView
::
SetOpenDoneHdl
(
const
Link
<>&
rHdl
)
void
SvtFileView
::
SetOpenDoneHdl
(
const
Link
<
SvtFileView
*
,
void
>&
rHdl
)
{
mpImp
->
maOpenDoneLink
=
rHdl
;
}
...
...
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