summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/scriptdocument.cxx8
-rw-r--r--basctl/source/inc/scriptdocument.hxx2
2 files changed, 5 insertions, 5 deletions
diff --git a/basctl/source/basicide/scriptdocument.cxx b/basctl/source/basicide/scriptdocument.cxx
index 721dee8330c8..e84824d23de6 100644
--- a/basctl/source/basicide/scriptdocument.cxx
+++ b/basctl/source/basicide/scriptdocument.cxx
@@ -192,14 +192,14 @@ namespace basctl
/** determines whether the instance refers to a valid "document" with script and
dialog libraries
*/
- inline bool isValid() const { return m_bValid; }
+ bool isValid() const { return m_bValid; }
/** determines whether the instance refers to a non-closed document
*/
- inline bool isAlive() const { return m_bValid && ( m_bIsApplication || !m_bDocumentClosed ); }
+ bool isAlive() const { return m_bValid && ( m_bIsApplication || !m_bDocumentClosed ); }
/// determines whether the "document" refers to the application in real
- inline bool isApplication() const { return m_bValid && m_bIsApplication; }
+ bool isApplication() const { return m_bValid && m_bIsApplication; }
/// determines whether the document refers to a real document (instead of the application)
- inline bool isDocument() const { return m_bValid && !m_bIsApplication; }
+ bool isDocument() const { return m_bValid && !m_bIsApplication; }
/** invalidates the instance
*/
diff --git a/basctl/source/inc/scriptdocument.hxx b/basctl/source/inc/scriptdocument.hxx
index 04db4f1363a9..f30719097deb 100644
--- a/basctl/source/inc/scriptdocument.hxx
+++ b/basctl/source/inc/scriptdocument.hxx
@@ -159,7 +159,7 @@ namespace basctl
// comparison
bool operator==( const ScriptDocument& _rhs ) const;
- inline bool operator!=( const ScriptDocument& _rhs ) const { return !( *this == _rhs ); }
+ bool operator!=( const ScriptDocument& _rhs ) const { return !( *this == _rhs ); }
/// retrieves a (pretty simple) hash code for the document
sal_Int32 hashCode() const;