summaryrefslogtreecommitdiff
path: root/sw/qa/extras/uiwriter/uiwriter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/qa/extras/uiwriter/uiwriter.cxx')
-rw-r--r--sw/qa/extras/uiwriter/uiwriter.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/qa/extras/uiwriter/uiwriter.cxx b/sw/qa/extras/uiwriter/uiwriter.cxx
index 10e9ee644983..a859f152400e 100644
--- a/sw/qa/extras/uiwriter/uiwriter.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter.cxx
@@ -4057,7 +4057,7 @@ void SwUiWriterTest::testDde()
class IdleTask
{
public:
- bool GetFlag();
+ bool GetFlag() const;
IdleTask();
DECL_LINK( FlipFlag, Timer *, void );
private:
@@ -4077,7 +4077,7 @@ IdleTask::IdleTask() : flag( false )
}
//GetFlag() of IdleTask Class
-bool IdleTask::GetFlag()
+bool IdleTask::GetFlag() const
{
//returning the status of current flag
return flag;
@@ -4995,7 +4995,7 @@ void SwUiWriterTest::testTdf88453Table()
namespace
{
-int checkShells(SwDocShell* pSource, SwDocShell* pDestination)
+int checkShells(const SwDocShell* pSource, const SwDocShell* pDestination)
{
return int(SfxClassificationHelper::CheckPaste(pSource->getDocProperties(), pDestination->getDocProperties()));
}