diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-01 21:32:16 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-01 21:32:16 +0900 |
commit | bba3128085abe1a32cca43d9fb8ac02c2a29bf6b (patch) | |
tree | f831d0139ef6cd483a39cc1fb0cb39445f317185 /tdehtml/ecma/kjs_binding.cpp | |
parent | cfbeb5efe9335d9a47bd5beebd81304cabab9f61 (diff) | |
download | tdelibs-bba3128085abe1a32cca43d9fb8ac02c2a29bf6b.tar.gz tdelibs-bba3128085abe1a32cca43d9fb8ac02c2a29bf6b.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdehtml/ecma/kjs_binding.cpp')
-rw-r--r-- | tdehtml/ecma/kjs_binding.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tdehtml/ecma/kjs_binding.cpp b/tdehtml/ecma/kjs_binding.cpp index 0a0a2da47..c3dd39255 100644 --- a/tdehtml/ecma/kjs_binding.cpp +++ b/tdehtml/ecma/kjs_binding.cpp @@ -395,18 +395,18 @@ Value KJS::getLiveConnectValue(KParts::LiveConnectExtension *lc, const TQString } } -/* only with gcc > 3.4 KDE_NO_EXPORT */ +/* only with gcc > 3.4 TDE_NO_EXPORT */ EmbedLiveConnect::EmbedLiveConnect(KParts::LiveConnectExtension *lc, UString n, KParts::LiveConnectExtension::Type t, int id) : m_liveconnect (lc), name(n), objtype(t), objid(id) {} -/* only with gcc > 3.4 KDE_NO_EXPORT */ +/* only with gcc > 3.4 TDE_NO_EXPORT */ EmbedLiveConnect::~EmbedLiveConnect() { if (m_liveconnect) m_liveconnect->unregister(objid); } -KDE_NO_EXPORT +TDE_NO_EXPORT Value EmbedLiveConnect::get(ExecState *, const Identifier & prop) const { if (m_liveconnect) { @@ -419,19 +419,19 @@ Value EmbedLiveConnect::get(ExecState *, const Identifier & prop) const return Undefined(); } -KDE_NO_EXPORT +TDE_NO_EXPORT void EmbedLiveConnect::put(ExecState * exec, const Identifier &prop, const Value & value, int) { if (m_liveconnect) m_liveconnect->put(objid, prop.qstring(), value.toString(exec).qstring()); } -KDE_NO_EXPORT +TDE_NO_EXPORT bool EmbedLiveConnect::implementsCall() const { return objtype == KParts::LiveConnectExtension::TypeFunction; } -KDE_NO_EXPORT +TDE_NO_EXPORT Value EmbedLiveConnect::call(ExecState *exec, Object&, const List &args) { if (m_liveconnect) { @@ -447,17 +447,17 @@ Value EmbedLiveConnect::call(ExecState *exec, Object&, const List &args) return Undefined(); } -KDE_NO_EXPORT +TDE_NO_EXPORT bool EmbedLiveConnect::toBoolean(ExecState *) const { return true; } -KDE_NO_EXPORT +TDE_NO_EXPORT Value EmbedLiveConnect::toPrimitive(ExecState *exec, Type) const { return String(toString(exec)); } -KDE_NO_EXPORT +TDE_NO_EXPORT UString EmbedLiveConnect::toString(ExecState *) const { TQString str; const char *type = objtype == KParts::LiveConnectExtension::TypeFunction ? "Function" : "Object"; |