summaryrefslogtreecommitdiff
path: root/sw/source/uibase
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase')
-rw-r--r--sw/source/uibase/dbui/maildispatcher.cxx4
-rw-r--r--sw/source/uibase/inc/maildispatcher.hxx2
-rw-r--r--sw/source/uibase/inc/swcont.hxx2
-rw-r--r--sw/source/uibase/utlui/content.cxx4
4 files changed, 2 insertions, 10 deletions
diff --git a/sw/source/uibase/dbui/maildispatcher.cxx b/sw/source/uibase/dbui/maildispatcher.cxx
index a384fe855fa0..8b1a8771b3c0 100644
--- a/sw/source/uibase/dbui/maildispatcher.cxx
+++ b/sw/source/uibase/dbui/maildispatcher.cxx
@@ -184,10 +184,6 @@ void MailDispatcher::shutdown()
wakening_call_.set();
}
-bool MailDispatcher::isStarted() const
-{
- return run_;
-}
void MailDispatcher::addListener(::rtl::Reference<IMailDispatcherListener> listener)
{
diff --git a/sw/source/uibase/inc/maildispatcher.hxx b/sw/source/uibase/inc/maildispatcher.hxx
index 4cbe6cd9f3cd..8dc22fc3b978 100644
--- a/sw/source/uibase/inc/maildispatcher.hxx
+++ b/sw/source/uibase/inc/maildispatcher.hxx
@@ -116,7 +116,7 @@ public:
@return
<TRUE/> if the sending thread is running.
*/
- bool isStarted() const;
+ bool isStarted() const { return run_;}
/** returns if the thread is still running
*/
diff --git a/sw/source/uibase/inc/swcont.hxx b/sw/source/uibase/inc/swcont.hxx
index 463215eb2fa4..ef9b6871a3ff 100644
--- a/sw/source/uibase/inc/swcont.hxx
+++ b/sw/source/uibase/inc/swcont.hxx
@@ -60,7 +60,7 @@ class SwTypeNumber
SwTypeNumber(sal_uInt8 nId) :nTypeId(nId){}
virtual ~SwTypeNumber();
- sal_uInt8 GetTypeId() const;
+ sal_uInt8 GetTypeId() const { return nTypeId;}
};
class SwContent : public SwTypeNumber
diff --git a/sw/source/uibase/utlui/content.cxx b/sw/source/uibase/utlui/content.cxx
index 5791659c4a34..d55b4980a2be 100644
--- a/sw/source/uibase/utlui/content.cxx
+++ b/sw/source/uibase/utlui/content.cxx
@@ -154,10 +154,6 @@ SwContent::SwContent(const SwContentType* pCnt, const OUString& rName, long nYPo
{
}
-sal_uInt8 SwTypeNumber::GetTypeId() const
-{
- return nTypeId;
-}
SwTypeNumber::~SwTypeNumber()
{