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
8c349ca4
Kaydet (Commit)
8c349ca4
authored
Şub 07, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:deletedspecial
Change-Id: I2f0cbeebce5d3bb087128bae32816a89f1f1d222
üst
510f5250
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
20 deletions
+11
-20
filrec.hxx
ucb/source/ucp/file/filrec.hxx
+2
-2
ftploaderthread.hxx
ucb/source/ucp/ftp/ftploaderthread.hxx
+2
-7
tdoc_docmgr.cxx
ucb/source/ucp/tdoc/tdoc_docmgr.cxx
+4
-8
ContentProperties.hxx
ucb/source/ucp/webdav-neon/ContentProperties.hxx
+3
-3
No files found.
ucb/source/ucp/file/filrec.hxx
Dosyayı görüntüle @
8c349ca4
...
...
@@ -33,9 +33,9 @@ class ReconnectingFile
bool
m_bDisconnect
;
ReconnectingFile
(
ReconnectingFile
&
);
ReconnectingFile
(
ReconnectingFile
&
)
SAL_DELETED_FUNCTION
;
ReconnectingFile
&
operator
=
(
ReconnectingFile
&
);
ReconnectingFile
&
operator
=
(
ReconnectingFile
&
)
SAL_DELETED_FUNCTION
;
public
:
...
...
ucb/source/ucp/ftp/ftploaderthread.hxx
Dosyayı görüntüle @
8c349ca4
...
...
@@ -47,13 +47,8 @@ namespace ftp {
private
:
/** Don't enable assignment and copy construction.
* Not defined:
*/
FTPLoaderThread
(
const
FTPLoaderThread
&
);
FTPLoaderThread
&
operator
=
(
const
FTPLoaderThread
&
);
FTPLoaderThread
(
const
FTPLoaderThread
&
)
SAL_DELETED_FUNCTION
;
FTPLoaderThread
&
operator
=
(
const
FTPLoaderThread
&
)
SAL_DELETED_FUNCTION
;
oslThreadKey
m_threadKey
;
...
...
ucb/source/ucp/tdoc/tdoc_docmgr.cxx
Dosyayı görüntüle @
8c349ca4
...
...
@@ -45,10 +45,6 @@
using
namespace
com
::
sun
::
star
;
using
namespace
tdoc_ucp
;
using
::
comphelper
::
DocumentInfo
;
// OfficeDocumentsCloseListener Implementation.
...
...
@@ -227,7 +223,7 @@ void SAL_CALL OfficeDocumentsManager::documentEventOccured(
OSL_ENSURE
(
xStorage
.
is
(),
"Got no document storage!"
);
rtl
::
OUString
aDocId
=
getDocumentId
(
Event
.
Source
);
rtl
::
OUString
aTitle
=
DocumentInfo
::
getDocumentTitle
(
rtl
::
OUString
aTitle
=
comphelper
::
DocumentInfo
::
getDocumentTitle
(
uno
::
Reference
<
frame
::
XModel
>
(
Event
.
Source
,
uno
::
UNO_QUERY
)
);
m_aDocs
[
aDocId
]
=
StorageInfo
(
aTitle
,
xStorage
,
xModel
);
...
...
@@ -366,7 +362,7 @@ void SAL_CALL OfficeDocumentsManager::documentEventOccured(
(
*
it
).
second
.
xStorage
=
xStorage
;
// Adjust title.
(
*
it
).
second
.
aTitle
=
DocumentInfo
::
getDocumentTitle
(
xModel
);
(
*
it
).
second
.
aTitle
=
comphelper
::
DocumentInfo
::
getDocumentTitle
(
xModel
);
break
;
}
++
it
;
...
...
@@ -392,7 +388,7 @@ void SAL_CALL OfficeDocumentsManager::documentEventOccured(
if
(
(
*
it
).
second
.
xModel
==
xModel
)
{
// Adjust title.
rtl
::
OUString
aTitle
=
DocumentInfo
::
getDocumentTitle
(
xModel
);
rtl
::
OUString
aTitle
=
comphelper
::
DocumentInfo
::
getDocumentTitle
(
xModel
);
(
*
it
).
second
.
aTitle
=
aTitle
;
// Adjust storage.
...
...
@@ -484,7 +480,7 @@ void OfficeDocumentsManager::buildDocumentsList()
{
// new document
OUString
aDocId
=
getDocumentId
(
xModel
);
OUString
aTitle
=
DocumentInfo
::
getDocumentTitle
(
xModel
);
OUString
aTitle
=
comphelper
::
DocumentInfo
::
getDocumentTitle
(
xModel
);
uno
::
Reference
<
document
::
XStorageBasedDocument
>
xDoc
(
xModel
,
uno
::
UNO_QUERY
);
...
...
ucb/source/ucp/webdav-neon/ContentProperties.hxx
Dosyayı görüntüle @
8c349ca4
...
...
@@ -161,7 +161,7 @@ private:
static
com
::
sun
::
star
::
uno
::
Any
m_aEmptyAny
;
ContentProperties
&
operator
=
(
const
ContentProperties
&
)
;
// n.i.
ContentProperties
&
operator
=
(
const
ContentProperties
&
)
SAL_DELETED_FUNCTION
;
const
PropertyValue
*
get
(
const
OUString
&
rName
)
const
;
};
...
...
@@ -171,8 +171,8 @@ class CachableContentProperties
private
:
ContentProperties
m_aProps
;
CachableContentProperties
&
operator
=
(
const
CachableContentProperties
&
)
;
// n.i.
CachableContentProperties
(
const
CachableContentProperties
&
)
;
// n.i.
CachableContentProperties
&
operator
=
(
const
CachableContentProperties
&
)
SAL_DELETED_FUNCTION
;
CachableContentProperties
(
const
CachableContentProperties
&
)
SAL_DELETED_FUNCTION
;
public
:
CachableContentProperties
(
const
ContentProperties
&
rProps
);
...
...
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