diff options
author | Michele Calgaro <[email protected]> | 2025-01-13 23:01:29 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 21:32:19 +0900 |
commit | 0b81a0c481a3a64d5449171a534bc8c91ae73181 (patch) | |
tree | 95cd236e86e934f492b4a4a1bd44bcf434a91ab2 /tdehtml/xml | |
parent | 180ceca8bb26bbe97f60c99e5d172eb8ccd66e6d (diff) | |
download | tdelibs-0b81a0c481a3a64d5449171a534bc8c91ae73181.tar.gz tdelibs-0b81a0c481a3a64d5449171a534bc8c91ae73181.zip |
Rename TDEApplication::kApplication() to TDEApplication::tdeApplication() and kapp to tdeApp.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdehtml/xml')
-rw-r--r-- | tdehtml/xml/dom_docimpl.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tdehtml/xml/dom_docimpl.cpp b/tdehtml/xml/dom_docimpl.cpp index 245585d74..e280d195c 100644 --- a/tdehtml/xml/dom_docimpl.cpp +++ b/tdehtml/xml/dom_docimpl.cpp @@ -2349,7 +2349,7 @@ bool DocumentImpl::isURLAllowed(const TQString& url) const return false; // do we allow this suburl ? - if ( !kapp || (newURL.protocol() != "javascript" && !kapp->authorizeURLAction("redirect", thisPart->url(), newURL)) ) + if ( !tdeApp || (newURL.protocol() != "javascript" && !tdeApp->authorizeURLAction("redirect", thisPart->url(), newURL)) ) return false; // We allow one level of self-reference because some sites depend on that. @@ -2409,7 +2409,7 @@ void DocumentImpl::abort() { if (m_inSyncLoad) { m_inSyncLoad = false; - kapp->exit_loop(); + tdeApp->exit_loop(); } if (m_loadingXMLDoc) @@ -2421,7 +2421,7 @@ void DocumentImpl::load(const DOMString &uri) { if (m_inSyncLoad) { m_inSyncLoad = false; - kapp->exit_loop(); + tdeApp->exit_loop(); } m_hadLoadError = false; @@ -2447,7 +2447,7 @@ void DocumentImpl::load(const DOMString &uri) if (!m_async && m_docLoading) { m_inSyncLoad = true; - kapp->enter_loop(); + tdeApp->enter_loop(); } } @@ -2470,7 +2470,7 @@ void DocumentImpl::setStyleSheet(const DOM::DOMString &url, const DOM::DOMString m_docLoading = false; if (m_inSyncLoad) { m_inSyncLoad = false; - kapp->exit_loop(); + tdeApp->exit_loop(); } assert(m_loadingXMLDoc != 0); @@ -2483,7 +2483,7 @@ void DocumentImpl::error(int err, const TQString &text) m_docLoading = false; if (m_inSyncLoad) { m_inSyncLoad = false; - kapp->exit_loop(); + tdeApp->exit_loop(); } m_hadLoadError = true; |