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
7ff32983
Kaydet (Commit)
7ff32983
authored
Ara 18, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sot: Use appropriate OUString functions on string constants
Change-Id: Id787ebbfaa95c29b3f6337286fa78b089038258e
üst
b74e92d5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
stgole.cxx
sot/source/sdstor/stgole.cxx
+1
-1
ucbstorage.cxx
sot/source/sdstor/ucbstorage.cxx
+6
-6
No files found.
sot/source/sdstor/stgole.cxx
Dosyayı görüntüle @
7ff32983
...
...
@@ -104,7 +104,7 @@ bool StgCompObjStream::Load()
{
memset
(
&
aClsId
,
0
,
sizeof
(
ClsId
)
);
nCbFormat
=
0
;
aUserName
=
""
;
aUserName
.
clear
()
;
if
(
GetError
()
!=
SVSTREAM_OK
)
return
false
;
Seek
(
8L
);
// skip the first part
...
...
sot/source/sdstor/ucbstorage.cxx
Dosyayı görüntüle @
7ff32983
...
...
@@ -230,7 +230,7 @@ void SAL_CALL FileStreamWrapper_Impl::closeInput() throw( NotConnectedException,
--
nOpenFiles
;
#endif
::
utl
::
UCBContentHelper
::
Kill
(
m_aURL
);
m_aURL
=
""
;
m_aURL
.
clear
()
;
}
...
...
@@ -1120,7 +1120,7 @@ sal_Int16 UCBStorageStream_Impl::Commit()
m_pContent
->
executeCommand
(
OUString
(
"insert"
),
aAny
);
// wrapper now controls lifetime of temporary file
m_aTempURL
=
""
;
m_aTempURL
.
clear
()
;
INetURLObject
aObj
(
m_aURL
);
aObj
.
SetName
(
m_aName
);
...
...
@@ -1168,7 +1168,7 @@ bool UCBStorageStream_Impl::Revert()
if
(
!
m_aTempURL
.
isEmpty
()
)
{
::
utl
::
UCBContentHelper
::
Kill
(
m_aTempURL
);
m_aTempURL
=
""
;
m_aTempURL
.
clear
()
;
}
m_bSourceRead
=
false
;
...
...
@@ -1255,7 +1255,7 @@ void UCBStorageStream_Impl::PrepareCachedForReopen( StreamMode nMode )
if
(
!
m_aTempURL
.
isEmpty
()
)
{
::
utl
::
UCBContentHelper
::
Kill
(
m_aTempURL
);
m_aTempURL
=
""
;
m_aTempURL
.
clear
()
;
}
}
}
...
...
@@ -1975,7 +1975,7 @@ void UCBStorage_Impl::SetProps( const Sequence < Sequence < PropertyValue > >& r
if
(
m_bIsRoot
)
// the "FullPath" of a child always starts without '/'
aPath
=
""
;
aPath
.
clear
()
;
for
(
size_t
i
=
0
;
i
<
m_aChildrenList
.
size
();
++
i
)
{
...
...
@@ -2026,7 +2026,7 @@ void UCBStorage_Impl::GetProps( sal_Int32& nProps, Sequence < Sequence < Propert
if
(
m_bIsRoot
)
// the "FullPath" of a child always starts without '/'
aPath
=
""
;
aPath
.
clear
()
;
// now the properties of my elements
for
(
size_t
i
=
0
;
i
<
m_aChildrenList
.
size
();
++
i
)
...
...
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