summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-17 11:33:18 +0200
committerNoel Grandin <noel@peralex.com>2014-04-22 09:53:12 +0200
commit133b4d9729ad4d0ab6ad854ab799e5ab6f785ba1 (patch)
treeac62c1bee684d9a97f86b2ee12a15e646223a2dd /desktop/source/deployment/inc
parent9b0a75c7b15efe8942c88c5492db80f2b047d053 (diff)
desktop: sal_Bool->bool
Change-Id: Id2606a2024d62de1882da18a1e438fb626655ff4
Diffstat (limited to 'desktop/source/deployment/inc')
-rw-r--r--desktop/source/deployment/inc/dp_descriptioninfoset.hxx2
-rw-r--r--desktop/source/deployment/inc/lockfile.hxx8
2 files changed, 5 insertions, 5 deletions
diff --git a/desktop/source/deployment/inc/dp_descriptioninfoset.hxx b/desktop/source/deployment/inc/dp_descriptioninfoset.hxx
index 7a232fb7878e..f6718fee79df 100644
--- a/desktop/source/deployment/inc/dp_descriptioninfoset.hxx
+++ b/desktop/source/deployment/inc/dp_descriptioninfoset.hxx
@@ -205,7 +205,7 @@ public:
/**
Returns the URL for the icon image.
*/
- OUString getIconURL( sal_Bool bHighContrast ) const;
+ OUString getIconURL( bool bHighContrast ) const;
bool hasDescription() const;
diff --git a/desktop/source/deployment/inc/lockfile.hxx b/desktop/source/deployment/inc/lockfile.hxx
index 1e041244a281..281a04a23aa8 100644
--- a/desktop/source/deployment/inc/lockfile.hxx
+++ b/desktop/source/deployment/inc/lockfile.hxx
@@ -63,7 +63,7 @@ namespace desktop {
// checks the lockfile, asks user when lockfile is
// found (iff gui) and returns false when we may not continue
- sal_Bool check( fpExecWarning execWarning );
+ bool check( fpExecWarning execWarning );
// removes the lockfile
~Lockfile(void);
@@ -73,14 +73,14 @@ namespace desktop {
// full qualified name (file://-url) of the lockfile
OUString m_aLockname;
// flag whether the d'tor should delete the lock
- sal_Bool m_bRemove;
- sal_Bool m_bIsLocked;
+ bool m_bRemove;
+ bool m_bIsLocked;
// ID
OUString m_aId;
OUString m_aDate;
// access to data in file
void syncToFile(void) const;
- sal_Bool isStale(void) const;
+ bool isStale(void) const;
friend bool Lockfile_execWarning( Lockfile * that );
};