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
6964157b
Kaydet (Commit)
6964157b
authored
Ock 20, 2012
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Provide a version that takes rtl::OUString.
üst
d36dd33f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
4 deletions
+32
-4
linkmgr.hxx
sfx2/inc/sfx2/linkmgr.hxx
+6
-2
linkmgr2.cxx
sfx2/source/appl/linkmgr2.cxx
+26
-2
No files found.
sfx2/inc/sfx2/linkmgr.hxx
Dosyayı görüntüle @
6964157b
...
...
@@ -114,12 +114,16 @@ public:
sal_Bool
InsertDDELink
(
SvBaseLink
*
);
// Connect the links to a pseudo-object and add to the list
sal_B
ool
InsertFileLink
(
sfx2
::
SvBaseLink
&
,
b
ool
InsertFileLink
(
sfx2
::
SvBaseLink
&
,
sal_uInt16
nFileType
,
const
String
&
r
Txt
,
const
String
&
r
FileNm
,
const
String
*
pFilterNm
=
0
,
const
String
*
pRange
=
0
);
bool
InsertFileLink
(
sfx2
::
SvBaseLink
&
rLink
,
sal_uInt16
nFileType
,
const
rtl
::
OUString
&
rFileNm
,
const
rtl
::
OUString
*
pFilterNm
=
NULL
,
const
rtl
::
OUString
*
pRange
=
NULL
);
void
ReconnectDdeLink
(
SfxObjectShell
&
rServer
);
/**
...
...
sfx2/source/appl/linkmgr2.cxx
Dosyayı görüntüle @
6964157b
...
...
@@ -467,14 +467,14 @@ void LinkManager::LinkServerShell(const OUString& rPath, SfxObjectShell& rServer
}
}
sal_B
ool
LinkManager
::
InsertFileLink
(
sfx2
::
SvBaseLink
&
rLink
,
b
ool
LinkManager
::
InsertFileLink
(
sfx2
::
SvBaseLink
&
rLink
,
sal_uInt16
nFileType
,
const
String
&
rFileNm
,
const
String
*
pFilterNm
,
const
String
*
pRange
)
{
if
(
!
(
OBJECT_CLIENT_SO
&
rLink
.
GetObjType
()
))
return
sal_F
alse
;
return
f
alse
;
String
sCmd
(
rFileNm
);
sCmd
+=
::
sfx2
::
cTokenSeperator
;
...
...
@@ -486,6 +486,30 @@ sal_Bool LinkManager::InsertFileLink( sfx2::SvBaseLink& rLink,
return
InsertLink
(
&
rLink
,
nFileType
,
sfx2
::
LINKUPDATE_ONCALL
,
&
sCmd
);
}
bool
LinkManager
::
InsertFileLink
(
sfx2
::
SvBaseLink
&
rLink
,
sal_uInt16
nFileType
,
const
rtl
::
OUString
&
rFileNm
,
const
rtl
::
OUString
*
pFilterNm
,
const
rtl
::
OUString
*
pRange
)
{
if
(
!
(
OBJECT_CLIENT_SO
&
rLink
.
GetObjType
()))
return
false
;
rtl
::
OUStringBuffer
aBuf
;
aBuf
.
append
(
rFileNm
);
aBuf
.
append
(
sfx2
::
cTokenSeperator
);
if
(
pRange
)
aBuf
.
append
(
*
pRange
);
if
(
pFilterNm
)
{
aBuf
.
append
(
sfx2
::
cTokenSeperator
);
aBuf
.
append
(
*
pFilterNm
);
}
String
aCmd
=
aBuf
.
makeStringAndClear
();
return
InsertLink
(
&
rLink
,
nFileType
,
sfx2
::
LINKUPDATE_ONCALL
,
&
aCmd
);
}
// A transfer is aborted, so cancel all download media
// (for now this is only of interest for the file links!)
void
LinkManager
::
CancelTransfers
()
...
...
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