From 9d97a2af7cd4d51fbf4dc3027f82cb6c7fc8328d Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Thu, 25 Apr 2013 15:00:54 +0900 Subject: sal_Bool to bool Change-Id: I7dcb2dcef78c67d90ff2dea58c1374bd17ac58af --- include/svl/documentlockfile.hxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include/svl/documentlockfile.hxx') diff --git a/include/svl/documentlockfile.hxx b/include/svl/documentlockfile.hxx index 437b59fbf127..ec741da2f6bc 100644 --- a/include/svl/documentlockfile.hxx +++ b/include/svl/documentlockfile.hxx @@ -35,7 +35,7 @@ namespace svt { class SVL_DLLPUBLIC DocumentLockFile : public LockFileCommon { // the workaround for automated testing! - static sal_Bool m_bAllowInteraction; + static bool m_bAllowInteraction; ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > OpenStream(); @@ -45,15 +45,15 @@ public: DocumentLockFile( const OUString& aOrigURL ); ~DocumentLockFile(); - sal_Bool CreateOwnLockFile(); + bool CreateOwnLockFile(); ::com::sun::star::uno::Sequence< OUString > GetLockData(); - sal_Bool OverwriteOwnLockFile(); + bool OverwriteOwnLockFile(); void RemoveFile(); // the methods allow to control whether UI interaction regarding the locked document file is allowed // this is a workaround for automated tests - static void AllowInteraction( sal_Bool bAllow ) { m_bAllowInteraction = bAllow; } - static sal_Bool IsInteractionAllowed() { return m_bAllowInteraction; } + static void AllowInteraction( bool bAllow ) { m_bAllowInteraction = bAllow; } + static bool IsInteractionAllowed() { return m_bAllowInteraction; } }; } -- cgit