summaryrefslogtreecommitdiff
path: root/cli_ure
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2003-04-25 13:04:56 +0000
committerDaniel Boelzle <dbo@openoffice.org>2003-04-25 13:04:56 +0000
commitb426d4671eb65d5fcef9b0abc6f8eacfc819cae0 (patch)
treeea73e0c376f6080d54c00c3e3de44aa8d38d24d5 /cli_ure
parent174da4fb1311d46a2ead1940519b72b16657a941 (diff)
#107130# misc cleanup
Diffstat (limited to 'cli_ure')
-rw-r--r--cli_ure/source/ure/makefile.mk7
-rw-r--r--cli_ure/source/ure/uno/util/DisposeGuard.cs8
2 files changed, 8 insertions, 7 deletions
diff --git a/cli_ure/source/ure/makefile.mk b/cli_ure/source/ure/makefile.mk
index ae8c7fc7547f..1468547a612a 100644
--- a/cli_ure/source/ure/makefile.mk
+++ b/cli_ure/source/ure/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.1 $
+# $Revision: 1.2 $
#
-# last change: $Author: dbo $ $Date: 2003-03-28 10:17:42 $
+# last change: $Author: dbo $ $Date: 2003-04-25 14:04:53 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -82,7 +82,8 @@ ALLTAR : \
CSFILES = \
uno$/QueryInterface.cs \
uno$/Runtime.cs \
- uno$/util$/ServiceImplementationAttribute.cs \
+ uno$/ServiceImplementationAttribute.cs \
+ uno$/SingletonAttribute.cs \
uno$/util$/DisposeGuard.cs \
uno$/util$/WeakAdapter.cs \
uno$/util$/WeakBase.cs \
diff --git a/cli_ure/source/ure/uno/util/DisposeGuard.cs b/cli_ure/source/ure/uno/util/DisposeGuard.cs
index 080446aaa5c9..6d37ea8ffcf9 100644
--- a/cli_ure/source/ure/uno/util/DisposeGuard.cs
+++ b/cli_ure/source/ure/uno/util/DisposeGuard.cs
@@ -2,9 +2,9 @@
*
* $RCSfile: DisposeGuard.cs,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: dbo $ $Date: 2003-04-07 09:40:44 $
+ * last change: $Author: dbo $ $Date: 2003-04-25 14:04:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -78,8 +78,8 @@ public struct DisposeGuard : IDisposable
*/
public DisposeGuard( Object obj )
{
- m_xComponent = (XComponent) uno.Runtime.queryInterface_throw(
- typeof (XComponent), obj );
+ m_xComponent = (XComponent) uno.Runtime.queryInterface(
+ typeof (XComponent), obj, uno.Runtime.QueryOption.Throw );
}
/** ctor.