diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-25 14:00:35 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-30 08:44:42 +0200 |
commit | 6aa35db39311dcd7965c9c9c21fcf4143a1f9b43 (patch) | |
tree | 04320eaf8c7481c1b496460624ee20ec11360ac2 /sw/inc/swunohelper.hxx | |
parent | 1417061d1b2c110e7e690523a544b58e7ffd05c0 (diff) |
sw: sal_Bool->bool
Change-Id: I324a0ffde2ddcca105451c19e7aadcfad15211d8
Diffstat (limited to 'sw/inc/swunohelper.hxx')
-rw-r--r-- | sw/inc/swunohelper.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/inc/swunohelper.hxx b/sw/inc/swunohelper.hxx index 7549eefa6fe4..7856360130b8 100644 --- a/sw/inc/swunohelper.hxx +++ b/sw/inc/swunohelper.hxx @@ -43,17 +43,17 @@ sal_Int32 GetEnumAsInt32( const com::sun::star::uno::Any& rVal ); // methods for UCB actions: // delete the file under this URL -SW_DLLPUBLIC sal_Bool UCB_DeleteFile( const OUString& rURL ); +SW_DLLPUBLIC bool UCB_DeleteFile( const OUString& rURL ); // copy/move the file to a new location -sal_Bool UCB_CopyFile( const OUString& rURL, const OUString& rNewURL, - sal_Bool bCopyIsMove = sal_False ); +bool UCB_CopyFile( const OUString& rURL, const OUString& rNewURL, + bool bCopyIsMove = false ); // is the URL on the current system case sentive? -SW_DLLPUBLIC sal_Bool UCB_IsCaseSensitiveFileName( const OUString& rURL ); +SW_DLLPUBLIC bool UCB_IsCaseSensitiveFileName( const OUString& rURL ); // is the URL readonly? -SW_DLLPUBLIC sal_Bool UCB_IsReadOnlyFileName( const OUString& rURL ); +SW_DLLPUBLIC bool UCB_IsReadOnlyFileName( const OUString& rURL ); // get a list of files from the folder of the URL // options: pExtension = 0 -> all, else this specific extension @@ -66,10 +66,10 @@ bool UCB_GetFileListOfFolder( const OUString& rURL, std::vector<DateTime*>* pDateTimeList = 0 ); // is the URL an existing file? -SW_DLLPUBLIC sal_Bool UCB_IsFile( const OUString& rURL ); +SW_DLLPUBLIC bool UCB_IsFile( const OUString& rURL ); // is the URL a existing directory? -sal_Bool UCB_IsDirectory( const OUString& rURL ); +bool UCB_IsDirectory( const OUString& rURL ); } #endif |