summaryrefslogtreecommitdiff
path: root/dtrans/source/generic
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 05:00:27 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 05:00:27 +0000
commite74d5e4cf74c377161c6ad2efe8cc55827b2e408 (patch)
tree72e2e3dd716a6c082e423b6c1d4f2c3b0114fcc6 /dtrans/source/generic
parent73d85972ed7d30222ebd58b2135f61b128cad55f (diff)
INTEGRATION: CWS warnings01 (1.4.4); FILE MERGED
2005/10/27 11:44:56 pl 1.4.4.2: #i55991# removed warnings for solaris platform 2005/10/21 14:14:54 pl 1.4.4.1: #i55991# removed warnings for linux platform
Diffstat (limited to 'dtrans/source/generic')
-rw-r--r--dtrans/source/generic/generic_clipboard.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/dtrans/source/generic/generic_clipboard.cxx b/dtrans/source/generic/generic_clipboard.cxx
index 2694edb0b44c..8778c58f3236 100644
--- a/dtrans/source/generic/generic_clipboard.cxx
+++ b/dtrans/source/generic/generic_clipboard.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: generic_clipboard.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 18:12:27 $
+ * last change: $Author: hr $ $Date: 2006-06-20 06:00:27 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -54,7 +54,6 @@ using ::dtrans::GenericClipboard;
using ::rtl::OUString;
GenericClipboard::GenericClipboard() :
- m_aMutex(),
WeakComponentImplHelper4< XClipboardEx, XClipboardNotifier, XServiceInfo, XInitialization > (m_aMutex),
m_bInitialized(sal_False)
{
@@ -63,7 +62,6 @@ GenericClipboard::GenericClipboard() :
// ------------------------------------------------------------------------
GenericClipboard::GenericClipboard(const ::rtl::OUString& rName) :
- m_aMutex(),
WeakComponentImplHelper4< XClipboardEx, XClipboardNotifier, XServiceInfo, XInitialization > (m_aMutex),
m_aName(rName),
m_bInitialized(sal_True)
@@ -221,7 +219,7 @@ Sequence< OUString > SAL_CALL GenericClipboard_getSupportedServiceNames()
// ------------------------------------------------------------------------
Reference< XInterface > SAL_CALL GenericClipboard_createInstance(
- const Reference< XMultiServiceFactory > & xMultiServiceFactory)
+ const Reference< XMultiServiceFactory > & /*xMultiServiceFactory*/)
{
return Reference < XInterface >( ( OWeakObject * ) new GenericClipboard());
}