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
d9c291e9
Kaydet (Commit)
d9c291e9
authored
Ock 15, 2001
tarafından
jp
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
use TempFile::GetURL instead of ::GetFileName
üst
b9264a4f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
13 deletions
+13
-13
docglbl.cxx
sw/source/core/doc/docglbl.cxx
+3
-6
docsh2.cxx
sw/source/ui/app/docsh2.cxx
+7
-4
srcview.cxx
sw/source/ui/uiview/srcview.cxx
+3
-3
No files found.
sw/source/core/doc/docglbl.cxx
Dosyayı görüntüle @
d9c291e9
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: docglbl.cxx,v $
*
* $Revision: 1.
3
$
* $Revision: 1.
4
$
*
* last change: $Author: jp $ $Date: 200
0-11-06 09:44:13
$
* last change: $Author: jp $ $Date: 200
1-01-15 18:47:21
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -364,11 +364,8 @@ BOOL SwDoc::SplitDoc( USHORT eDocType, const String& rPath,
// und noch alle Bookmarks
// ?????
INetURLObject
aEntry2
(
rPath
);
aEntry2
.
removeSegment
();
String
sPath
=
aEntry2
.
GetMainURL
();
utl
::
TempFile
aTempFile2
(
sLeading
,
&
sExt
,
&
sPath
);
sFileName
=
aTempFile2
.
Get
FileName
();
sFileName
=
aTempFile2
.
Get
URL
();
SfxMedium
*
pTmpMed
=
new
SfxMedium
(
sFileName
,
STREAM_STD_READWRITE
,
TRUE
);
pTmpMed
->
SetFilter
(
pFilter
);
...
...
sw/source/ui/app/docsh2.cxx
Dosyayı görüntüle @
d9c291e9
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: docsh2.cxx,v $
*
* $Revision: 1.
9
$
* $Revision: 1.
10
$
*
* last change: $Author: jp $ $Date: 200
0-11-06 09:21:17
$
* last change: $Author: jp $ $Date: 200
1-01-15 18:47:06
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -914,7 +914,7 @@ void SwDocShell::Execute(SfxRequest& rReq)
{
utl
::
TempFile
aTempFile
;
aTempFile
.
EnableKillingFile
();
pSrcView
->
SaveContent
(
aTempFile
.
Get
FileName
());
pSrcView
->
SaveContent
(
aTempFile
.
Get
URL
());
bDone
=
TRUE
;
SetActualSize
(
pSrcView
->
GetEditWin
().
GetSizePixel
());
SfxEventConfiguration
*
pEvent
=
SFX_APP
()
->
GetEventConfig
();
...
...
@@ -923,7 +923,7 @@ void SwDocShell::Execute(SfxRequest& rReq)
pEvent
->
ConfigureEvent
(
SFX_EVENT_CLOSEDOC
,
aMac
,
this
);
pEvent
->
ConfigureEvent
(
SFX_EVENT_ACTIVATEDOC
,
aMac
,
this
);
pEvent
->
ConfigureEvent
(
SFX_EVENT_DEACTIVATEDOC
,
aMac
,
this
);
ReloadFromHtml
(
aTempFile
.
Get
FileName
(),
pSrcView
);
ReloadFromHtml
(
aTempFile
.
Get
URL
(),
pSrcView
);
nSlot
=
0
;
}
else
...
...
@@ -1692,6 +1692,9 @@ ULONG SwDocShell::LoadStylesFromFile( const String& rURL,
/*------------------------------------------------------------------------
$Log: not supported by cvs2svn $
Revision 1.9 2000/11/06 09:21:17 jp
must changes: tempfile
Revision 1.8 2000/11/01 10:13:28 jp
new method LoadStyleFromFile for docshell and uno
...
...
sw/source/ui/uiview/srcview.cxx
Dosyayı görüntüle @
d9c291e9
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: srcview.cxx,v $
*
* $Revision: 1.
7
$
* $Revision: 1.
8
$
*
* last change: $Author: jp $ $Date: 200
0-11-20 09:26:31
$
* last change: $Author: jp $ $Date: 200
1-01-15 18:46:53
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -1081,7 +1081,7 @@ void SwSrcView::Load(SwDocShell* pDocShell)
{
utl
::
TempFile
aTempFile
;
aTempFile
.
EnableKillingFile
();
String
sFileURL
(
aTempFile
.
Get
FileName
()
),
String
sFileURL
(
aTempFile
.
Get
URL
()
),
sBaseURL
(
INetURLObject
::
GetBaseURL
()
);
BOOL
bIsRemote
=
pMedium
->
IsRemote
();
SvtSaveOptions
aOpt
;
...
...
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