Kaydet (Commit) 8c349ca4 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:deletedspecial

Change-Id: I2f0cbeebce5d3bb087128bae32816a89f1f1d222
üst 510f5250
......@@ -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:
......
......@@ -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;
......
......@@ -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 );
......
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment