summaryrefslogtreecommitdiff
path: root/scripting/source/storage/ScriptElement.hxx
diff options
context:
space:
mode:
authorNoel Power <npower@openoffice.org>2002-10-01 09:45:14 +0000
committerNoel Power <npower@openoffice.org>2002-10-01 09:45:14 +0000
commit19dc7dbb8038bad26c7daa8d7ad51b54cf313e0f (patch)
tree3edb1789c1cf82ce170bfa70011b9ac8014994d8 /scripting/source/storage/ScriptElement.hxx
parent8ac18c6b8055bfe94d376e396ac613eb8e743490 (diff)
*** empty log message ***
Diffstat (limited to 'scripting/source/storage/ScriptElement.hxx')
-rw-r--r--scripting/source/storage/ScriptElement.hxx18
1 files changed, 10 insertions, 8 deletions
diff --git a/scripting/source/storage/ScriptElement.hxx b/scripting/source/storage/ScriptElement.hxx
index 866dbe609648..d6dd7dce112c 100644
--- a/scripting/source/storage/ScriptElement.hxx
+++ b/scripting/source/storage/ScriptElement.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ScriptElement.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: lkovacs $ $Date: 2002-09-23 14:08:29 $
+ * last change: $Author: npower $ $Date: 2002-10-01 10:45:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -63,20 +63,18 @@
#include <osl/mutex.hxx>
-#ifndef _DRAFTS_COM_SUN_STAR_SCRIPT_FRAMEWORK_STORAGE_SCRIPTIMPLINFO_HPP_
#include <drafts/com/sun/star/script/framework/storage/ScriptImplInfo.hpp>
-#endif
#include "XMLElement.hxx"
namespace scripting_impl
{
+// for simplification
+#define css ::com::sun::star
+#define dcsssf ::drafts::com::sun::star::script::framework
class ScriptElement : public ::scripting_impl::XMLElement
{
-private:
- drafts::com::sun::star::script::framework::storage::ScriptImplInfo m_sII;
-
public:
/**
Construct a ScriptElement from a ScriptImplInfo object
@@ -84,8 +82,12 @@ public:
@param sII
the ScriptImplInfoObject
*/
- explicit ScriptElement(drafts::com::sun::star::script::framework::storage::ScriptImplInfo & sII);
+ explicit ScriptElement(dcsssf::storage::ScriptImplInfo & sII);
~ScriptElement() SAL_THROW (());
+
+private:
+ dcsssf::storage::ScriptImplInfo m_sII;
+
};
}