summaryrefslogtreecommitdiff
path: root/include/svl/documentlockfile.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svl/documentlockfile.hxx')
-rw-r--r--include/svl/documentlockfile.hxx10
1 files changed, 5 insertions, 5 deletions
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; }
};
}