summaryrefslogtreecommitdiff
path: root/odk/examples/java/ToDo
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-01-31 16:20:52 +0000
committerRüdiger Timm <rt@openoffice.org>2005-01-31 16:20:52 +0000
commit565bd4d3bbed4150af9c3605de7c19e418a22c8e (patch)
tree2fe6e3726d6742fe53dc9e0f00d0481a7560e9c5 /odk/examples/java/ToDo
parent0153640ce35003f4c9cc760cf30cd9118e80d730 (diff)
INTEGRATION: CWS sdksample (1.3.124); FILE MERGED
2004/06/25 15:48:06 jsc 1.3.124.4: #i29308# use of new UNO features 2004/06/04 15:16:17 jsc 1.3.124.3: #i29308# prevent double includes 2004/06/04 14:36:00 jsc 1.3.124.2: #i29308# added again 2004/06/04 10:45:27 jsc 1.3.124.1: #i29308# removed
Diffstat (limited to 'odk/examples/java/ToDo')
-rw-r--r--odk/examples/java/ToDo/XToDo.idl29
1 files changed, 11 insertions, 18 deletions
diff --git a/odk/examples/java/ToDo/XToDo.idl b/odk/examples/java/ToDo/XToDo.idl
index 5505b0072e9c..b83f03683aa9 100644
--- a/odk/examples/java/ToDo/XToDo.idl
+++ b/odk/examples/java/ToDo/XToDo.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XToDo.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hr $ $Date: 2003-06-30 16:01:53 $
+ * last change: $Author: rt $ $Date: 2005-01-31 17:20:52 $
*
* The Contents of this file are made available subject to the terms of
* the BSD license.
@@ -38,28 +38,21 @@
*
*************************************************************************/
-// Guard against multiple includes
-#ifndef _ORG_OPENOFFICE_IDL_
-#define _ORG_OPENOFFICE_IDL__
+#ifndef _org_openoffice_XToDo_idl_
+#define _org_openoffice_XToDo_idl_
-// Template for OpenOffice ToDo add-in component idl file.
-
-
-/* Provides lifetime control by reference counting and the possibility of
- querying for other interfaces of the same logical object.
- */
+// must be included always for compatibility reasons
#include <com/sun/star/uno/XInterface.idl>
/// org
module org {
- /// openoffice
- module openoffice {
- /// example interface
- interface XToDo : com::sun::star::uno::XInterface
- {
- void recalc( [in] any aInstance );
+ /// openoffice
+ module openoffice {
+ /// example interface
+ interface XToDo {
+ void recalc( [in] any aInstance );
+ };
};
- };
};
#endif