summaryrefslogtreecommitdiff
path: root/cli_ure/source/ure
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2003-07-02 13:17:31 +0000
committerDaniel Boelzle <dbo@openoffice.org>2003-07-02 13:17:31 +0000
commit49af9676c92f9ac3d4221deca0ba1fdd8529b5b6 (patch)
tree1ef78d3a36efa51f659aa95de436b229d9d2c7d9 /cli_ure/source/ure
parent2c9b65208c95b5d7550d54b8d372902d6114e17e (diff)
#107130# cleanup
Diffstat (limited to 'cli_ure/source/ure')
-rw-r--r--cli_ure/source/ure/assembly.cs66
-rw-r--r--cli_ure/source/ure/makefile.mk7
-rw-r--r--cli_ure/source/ure/uno/util/DisposeGuard.cs7
3 files changed, 72 insertions, 8 deletions
diff --git a/cli_ure/source/ure/assembly.cs b/cli_ure/source/ure/assembly.cs
new file mode 100644
index 000000000000..5c986e8a4b21
--- /dev/null
+++ b/cli_ure/source/ure/assembly.cs
@@ -0,0 +1,66 @@
+/*************************************************************************
+ *
+ * $RCSfile: assembly.cs,v $
+ *
+ * $Revision: 1.1 $
+ *
+ * last change: $Author: dbo $ $Date: 2003-07-02 14:17:25 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+[assembly:System.Reflection.AssemblyProduct( "CLI-UNO Language Binding" )]
+// xxx todo AssemblyCompany, AssemblyCopyright, AssemblyTrademark
+[assembly:System.Reflection.AssemblyDescription( "CLI-UNO Runtime Library" )]
+[assembly:System.Reflection.AssemblyVersion( "3.1.0.0" )]
+
diff --git a/cli_ure/source/ure/makefile.mk b/cli_ure/source/ure/makefile.mk
index 878a0b34098b..b8998f0e2914 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.4 $
+# $Revision: 1.5 $
#
-# last change: $Author: dbo $ $Date: 2003-06-05 13:18:00 $
+# last change: $Author: dbo $ $Date: 2003-07-02 14:17:26 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -78,8 +78,7 @@ ALLTAR : \
$(OUT)$/bin$/cli_ure.dll
CSFILES = \
- uno$/QueryInterface.cs \
- uno$/Runtime.cs \
+ assembly.cs \
uno$/ServiceImplementationAttribute.cs \
uno$/SingletonAttribute.cs \
uno$/util$/DisposeGuard.cs \
diff --git a/cli_ure/source/ure/uno/util/DisposeGuard.cs b/cli_ure/source/ure/uno/util/DisposeGuard.cs
index 6d37ea8ffcf9..57916ec45a3b 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.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: dbo $ $Date: 2003-04-25 14:04:56 $
+ * last change: $Author: dbo $ $Date: 2003-07-02 14:17:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -78,8 +78,7 @@ public struct DisposeGuard : IDisposable
*/
public DisposeGuard( Object obj )
{
- m_xComponent = (XComponent) uno.Runtime.queryInterface(
- typeof (XComponent), obj, uno.Runtime.QueryOption.Throw );
+ m_xComponent = (XComponent) obj;
}
/** ctor.