summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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