summaryrefslogtreecommitdiffstats
path: root/framework/inc/jobs
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-04 15:53:21 +0200
committerNoel Grandin <noel@peralex.com>2014-04-07 13:53:49 +0200
commita6287e21f1dab6ae382c24ceeb4c0212b7cad2d7 (patch)
treef0bb68a88c56647fc9165ec69cc05cd5bc441ea6 /framework/inc/jobs
parentdrawinglayer: sal_Bool->bool (diff)
downloadcore-a6287e21f1dab6ae382c24ceeb4c0212b7cad2d7.tar.gz
core-a6287e21f1dab6ae382c24ceeb4c0212b7cad2d7.zip
framework: sal_Bool->bool
Change-Id: Ia6e87e2b382bd4005637e14088bde9e809996a25
Diffstat (limited to 'framework/inc/jobs')
-rw-r--r--framework/inc/jobs/helponstartup.hxx2
-rw-r--r--framework/inc/jobs/job.hxx10
-rw-r--r--framework/inc/jobs/jobdata.hxx4
-rw-r--r--framework/inc/jobs/jobresult.hxx4
-rw-r--r--framework/inc/jobs/joburl.hxx10
-rw-r--r--framework/inc/jobs/shelljob.hxx4
6 files changed, 17 insertions, 17 deletions
diff --git a/framework/inc/jobs/helponstartup.hxx b/framework/inc/jobs/helponstartup.hxx
index 7234a236b385..1df5e344c08a 100644
--- a/framework/inc/jobs/helponstartup.hxx
+++ b/framework/inc/jobs/helponstartup.hxx
@@ -144,7 +144,7 @@ class HelpOnStartup : public ::cppu::WeakImplHelper3< ::com::sun::star::lang::XS
sal_True if the given URL is any default one ...
sal_False otherwise.
*/
- sal_Bool its_isHelpUrlADefaultOne(const OUString& sHelpURL);
+ bool its_isHelpUrlADefaultOne(const OUString& sHelpURL);
/** @short checks, if the help module should be shown automaticly for the
currently opened office module.
diff --git a/framework/inc/jobs/job.hxx b/framework/inc/jobs/job.hxx
index 6cbc8bbc069e..32e6f4d72ce4 100644
--- a/framework/inc/jobs/job.hxx
+++ b/framework/inc/jobs/job.hxx
@@ -142,17 +142,17 @@ class Job : public ::cppu::WeakImplHelper3<
The used references are not really enough to detect a valid listener connection.
Thats why we use this additional information here too.
*/
- sal_Bool m_bListenOnDesktop;
- sal_Bool m_bListenOnFrame;
- sal_Bool m_bListenOnModel;
+ bool m_bListenOnDesktop;
+ bool m_bListenOnFrame;
+ bool m_bListenOnModel;
/**
In case we got a close request from our desktop/frame/model (on which we listen) ... and
the ownership was delivered there ... we have to close ourself and this object
in case the internal wrapped and running job finish his work.
*/
- sal_Bool m_bPendingCloseFrame;
- sal_Bool m_bPendingCloseModel;
+ bool m_bPendingCloseFrame;
+ bool m_bPendingCloseModel;
/**
indicates in which state the internal job currently exist.
diff --git a/framework/inc/jobs/jobdata.hxx b/framework/inc/jobs/jobdata.hxx
index 4bbf0fa7186b..9a575e5c4248 100644
--- a/framework/inc/jobs/jobdata.hxx
+++ b/framework/inc/jobs/jobdata.hxx
@@ -192,8 +192,8 @@ class JobData
css::uno::Sequence< css::beans::NamedValue > getConfig () const;
css::uno::Sequence< css::beans::NamedValue > getJobConfig () const;
- sal_Bool hasConfig () const;
- sal_Bool hasCorrectContext ( const OUString& rModuleIdent ) const;
+ bool hasConfig () const;
+ bool hasCorrectContext ( const OUString& rModuleIdent ) const;
void setEnvironment ( EEnvironment eEnvironment );
void setAlias ( const OUString& sAlias );
diff --git a/framework/inc/jobs/jobresult.hxx b/framework/inc/jobs/jobresult.hxx
index 064bf5c7b159..33b5049eb0da 100644
--- a/framework/inc/jobs/jobresult.hxx
+++ b/framework/inc/jobs/jobresult.hxx
@@ -90,7 +90,7 @@ class JobResult
But we provide this information here only.
Doing so is part of any user of us.
*/
- sal_Bool m_bDeactivate;
+ bool m_bDeactivate;
/**
represent the part "DispatchResult"
@@ -111,7 +111,7 @@ class JobResult
void operator=( const JobResult& rCopy );
- sal_Bool existPart ( sal_uInt32 eParts ) const;
+ bool existPart ( sal_uInt32 eParts ) const;
css::uno::Sequence< css::beans::NamedValue > getArguments ( ) const;
css::frame::DispatchResultEvent getDispatchResult( ) const;
};
diff --git a/framework/inc/jobs/joburl.hxx b/framework/inc/jobs/joburl.hxx
index 1312967ad109..afbd15e90856 100644
--- a/framework/inc/jobs/joburl.hxx
+++ b/framework/inc/jobs/joburl.hxx
@@ -103,16 +103,16 @@ class JobURL
public:
JobURL ( const OUString& sURL );
- sal_Bool isValid ( ) const;
- sal_Bool getEvent ( OUString& sEvent ) const;
- sal_Bool getAlias ( OUString& sAlias ) const;
- sal_Bool getService ( OUString& sService ) const;
+ bool isValid ( ) const;
+ bool getEvent ( OUString& sEvent ) const;
+ bool getAlias ( OUString& sAlias ) const;
+ bool getService ( OUString& sService ) const;
// private helper
private:
- static sal_Bool implst_split( const OUString& sPart ,
+ static bool implst_split( const OUString& sPart ,
const sal_Char* pPartIdentifier ,
sal_Int32 nPartLength ,
OUString& rPartValue ,
diff --git a/framework/inc/jobs/shelljob.hxx b/framework/inc/jobs/shelljob.hxx
index 328591d3a46e..7ec6c21b2bcc 100644
--- a/framework/inc/jobs/shelljob.hxx
+++ b/framework/inc/jobs/shelljob.hxx
@@ -125,9 +125,9 @@ class ShellJob : public ::cppu::WeakImplHelper2< ::com::sun::star::lang::XServic
@return sal_True if command was executed successfully; sal_False otherwise.
*/
- sal_Bool impl_execute(const OUString& sCommand ,
+ bool impl_execute(const OUString& sCommand ,
const css::uno::Sequence< OUString >& lArguments ,
- sal_Bool bCheckExitCode);
+ bool bCheckExitCode);
};
} // namespace framework